From 57c8cc8ac60b755056b969d05ca23f5f67622e49 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Mon, 27 Jul 2015 19:49:11 +0200 Subject: [PATCH 01/20] [ADD] new module 'pos_order_load'; --- pos_order_load/README.rst | 38 ++ pos_order_load/__init__.py | 2 + pos_order_load/__openerp__.py | 38 ++ pos_order_load/i18n/fr.po | 145 +++++++ pos_order_load/models/__init__.py | 2 + pos_order_load/models/pos_order.py | 97 +++++ .../static/src/css/pos_order_load.css | 54 +++ .../static/src/js/pos_order_load.js | 363 ++++++++++++++++++ .../static/src/xml/pos_order_load.xml | 76 ++++ pos_order_load/view/pos_order_load.xml | 18 + 10 files changed, 833 insertions(+) create mode 100644 pos_order_load/README.rst create mode 100644 pos_order_load/__init__.py create mode 100644 pos_order_load/__openerp__.py create mode 100644 pos_order_load/i18n/fr.po create mode 100644 pos_order_load/models/__init__.py create mode 100644 pos_order_load/models/pos_order.py create mode 100644 pos_order_load/static/src/css/pos_order_load.css create mode 100644 pos_order_load/static/src/js/pos_order_load.js create mode 100644 pos_order_load/static/src/xml/pos_order_load.xml create mode 100644 pos_order_load/view/pos_order_load.xml diff --git a/pos_order_load/README.rst b/pos_order_load/README.rst new file mode 100644 index 00000000..54d8bace --- /dev/null +++ b/pos_order_load/README.rst @@ -0,0 +1,38 @@ +POS Order Load and Save +======================= + +This module allows to load existing POS order. +In this version, when the loaded order +is validated in the POS, a new one is created. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback +`here `_. + +Credits +======= + +Contributors +------------ + +* Sylvain Calador +* Sylvain Le Gal (https://twitter.com/legalsylvain) + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. + diff --git a/pos_order_load/__init__.py b/pos_order_load/__init__.py new file mode 100644 index 00000000..89d26e2f --- /dev/null +++ b/pos_order_load/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +import models diff --git a/pos_order_load/__openerp__.py b/pos_order_load/__openerp__.py new file mode 100644 index 00000000..87a0a749 --- /dev/null +++ b/pos_order_load/__openerp__.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2014-TODAY Akretion (). +# Copyright (C) 2014 Sylvain Calador (sylvain.calador@akretion.com). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +{ + 'name': 'POS Order Load and Save', + 'version': '0.2', + 'author': 'Akretion,GRAP,Odoo Community Association (OCA)', + 'category': 'Point Of Sale', + 'depends': [ + 'point_of_sale', + ], + 'website': 'https://www.akretion.com', + 'data': [ + 'view/pos_order_load.xml', + ], + 'qweb': [ + 'static/src/xml/pos_order_load.xml', + ], +} diff --git a/pos_order_load/i18n/fr.po b/pos_order_load/i18n/fr.po new file mode 100644 index 00000000..4451beab --- /dev/null +++ b/pos_order_load/i18n/fr.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-07-27 17:43+0000\n" +"PO-Revision-Date: 2015-07-27 17:43+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_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:291 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:317 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "Impossible d'exécuter cette action car le Point de vente est actuellement hors ligne" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:182 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "Impossible de charger la vente sélectionnée car le Point de vente est actuellement hors ligne" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:290 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:316 +#, python-format +msgid "Connection error" +msgstr "Erreur de connection" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Client" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "Charger la vente en brouillon" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Vente" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Point de Vente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "Sauvegarder la vente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "Sauvegarder la vente en cours ?" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "Chercher des ventes" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "Choisir une vente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "This operation will save the current order in a draft state. You'll have to mark it as paid after." +msgstr "Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous devrez la marquer comme payée ultérieurement" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Montant Total" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:269 +#, python-format +msgid "Unable to load some order 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 de ventes parce que les produits ne sont pas disponibles dans le cache du point de vente.\n" +"\n" +"Veuillez vérifier ces lignes :\n" +"\n" +" * " + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:268 +#, python-format +msgid "Unknown Products" +msgstr "Produits Iconnu" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Valider" + diff --git a/pos_order_load/models/__init__.py b/pos_order_load/models/__init__.py new file mode 100644 index 00000000..4ab141fe --- /dev/null +++ b/pos_order_load/models/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +import pos_order diff --git a/pos_order_load/models/pos_order.py b/pos_order_load/models/pos_order.py new file mode 100644 index 00000000..c68ce4db --- /dev/null +++ b/pos_order_load/models/pos_order.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2014 Akretion (). +# @author Sylvain LE GAL (https://twitter.com/legalsylvain) +# @author Sylvain Calador (sylvain.calador@akretion.com). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, api + + +class PosOrder(models.Model): + _inherit = 'pos.order' + + # Overload Section + @api.model + def _order_fields(self, ui_order): + res = super(PosOrder, self)._order_fields(ui_order) + if 'order_id' in ui_order: + res['order_id'] = ui_order['order_id'] + return res + + @api.model + def create_from_ui(self, orders): + """ + Remove from the 'orders' list all orders where amount_return is < 0 + (because that means they are not paid, but just in draft state). + * call a specific function for the draft orders list + * call the parent create_from_ui() for the remaining orders""" + draft_orders = [] + for tmp_order in orders: + if tmp_order['data']['amount_return'] < 0\ + and abs(tmp_order['data']['amount_return']) > 0.000001: + draft_orders.append(tmp_order) + orders.remove(tmp_order) + + # Save Draft Orders + self._create_draft_order_from_ui(draft_orders) + + # Save Paid Orders + return super(PosOrder, self).create_from_ui(orders) + + + # Custom Section + @api.model + def search_read_orders(self, query): + condition = [ + ('state', '=', 'draft'), + ('statement_ids', '=', False), + '|', + ('name', 'ilike', query), + ('partner_id', 'ilike', query) + ] + fields = ['name', 'partner_id', 'amount_total'] + return self.search_read(condition, fields, limit=10) + + @api.one + def load_order(self): + condition = [('order_id', '=', self.id)] + fields = ['product_id', 'price_unit', 'qty', 'discount'] + orderlines = self.lines.search_read(condition, fields) + return { + 'id': self.id, + 'name': self.pos_reference, + 'partner_id': self.partner_id and self.partner_id.id or False, + 'orderlines': orderlines + } + + @api.model + def _create_draft_order_from_ui(self, orders): + for order_tmp in orders: + order_data = order_tmp['data'] + statements_data = order_data['statement_ids'] + order_data.pop('statement_ids') + + # create Order + order = self.create(self._order_fields(order_data)) + + # Create payment + for statement_data in statements_data: + self.add_payment( + order.id, self._payment_fields(statement_data[2])) diff --git a/pos_order_load/static/src/css/pos_order_load.css b/pos_order_load/static/src/css/pos_order_load.css new file mode 100644 index 00000000..62bf9b5a --- /dev/null +++ b/pos_order_load/static/src/css/pos_order_load.css @@ -0,0 +1,54 @@ +.screen .top-content .button.validate { + left: 0px; + margin-left: 150px; +} + +.pos .orderlist-screen .order-list{ + font-size: 16px; + width: 100%; + line-height: 40px; +} +.pos .orderlist-screen .order-list th, +.pos .orderlist-screen .order-list td { + padding: 0px 8px; +} +.pos .orderlist-screen .order-list tr{ + transition: all 150ms linear; + background: rgb(230,230,230); + cursor: pointer; +} +.pos .orderlist-screen .order-list thead > tr, +.pos .orderlist-screen .order-list tr:nth-child(even) { + background: rgb(247,247,247); +} +.pos .orderlist-screen .order-list tr.highlight{ + transition: all 150ms linear; + background: rgb(110,200,155) !important; + color: white; +} +.pos .orderlist-screen .order-list tr.lowlight{ + transition: all 150ms linear; + background: rgb(216, 238, 227); +} +.pos .orderlist-screen .order-list tr.lowlight:nth-child(even){ + transition: all 150ms linear; + background: rgb(227, 246, 237); +} +.pos .orderlist-screen .order-details{ + padding: 16px; + border-bottom: solid 5px rgb(110,200,155); +} + +.pos .orderlist-screen .searchbox{ + right: auto; + margin-left: -90px; + margin-top:8px; + left: 50%; +} +.pos .orderlist-screen .searchbox input{ + width: 120px; +} + +.pos .order-line .total { + text-align: right; +} diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js new file mode 100644 index 00000000..0a0fe604 --- /dev/null +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -0,0 +1,363 @@ +/****************************************************************************** + * Point Of Sale - Product Template module for Odoo + * Copyright (C) 2014-Today Akretion (http://www.akretion.com) + * @author Sylvain Calador (sylvain.calador@akretion.com) + * @author Sylvain Le Gal (https://twitter.com/legalsylvain) + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + *****************************************************************************/ + +openerp.pos_order_load = function(instance, local) { + module = instance.point_of_sale; + var QWeb = instance.web.qweb; + var _t = instance.web._t; + var round_pr = instance.web.round_precision; + + /************************************************************************* + Extend Model Order: + * Add getter and setter function for field 'order_id'; + */ + module.Order = module.Order.extend({ + + set_order_id: function(id) { + this.set({ + order_id: id, + }); + }, + + get_order_id: function() { + return this.get('order_id'); + }, + + }); + + /************************************************************************* + New Widget LoadButtonWidget: + * On click, display a new screen to select draft orders; + */ + module.LoadButtonWidget = module.PosBaseWidget.extend({ + template: 'LoadButtonWidget', + + renderElement: function() { + var self = this; + this._super(); + this.$el.click(function(){ + var ss = self.pos.pos_widget.screen_selector; + ss.set_current_screen('orderlist'); + }); + }, + }); + + /************************************************************************* + New Widget SaveButtonWidget: + * On click, backup the current draft order; + */ + module.SaveButtonWidget = module.PosBaseWidget.extend({ + template: 'SaveButtonWidget', + + renderElement: function() { + var self = this; + this._super(); + this.$el.click(function(){ + self.pos.pos_widget.screen_selector.show_popup('confirm',{ + message: _t('Save The current Order ?'), + comment: _t('This operation will save the current order in a draft state. You\'ll have to mark it as paid after.'), + confirm: function(){ + var currentOrder = this.pos.get('selectedOrder'); + this.pos.push_order(currentOrder); + self.pos.get('selectedOrder').destroy(); + }, + }); + }); + }, + }); + + + /************************************************************************* + Extend PosWidget: + * Create new screen; + * Add load and save button; + */ + module.PosWidget = module.PosWidget.extend({ + build_widgets: function() { + this._super(); + + // New Screen to select Draft Orders + this.orderlist_screen = new module.OrderListScreenWidget(this, {}); + this.orderlist_screen.appendTo(this.$('.screens')); + this.orderlist_screen.hide(); + + this.screen_selector.screen_set['orderlist'] = + this.orderlist_screen; + + // Add buttons + this.load_button = new module.LoadButtonWidget(this,{}); + this.load_button.appendTo(this.pos_widget.$('li.orderline.empty')); + + this.save_button = new module.SaveButtonWidget(this,{}); + + }, + }); + + + /************************************************************************* + Extend OrderWidget: + */ + module.OrderWidget = module.OrderWidget.extend({ + renderElement: function(scrollbottom){ + this._super(scrollbottom); + if (this.pos_widget.load_button) { + this.pos_widget.load_button.appendTo( + this.pos_widget.$('li.orderline.empty') + ); + } + if (this.pos_widget.save_button && (this.pos.get('selectedOrder').get('orderLines').length > 0)) { + this.pos_widget.save_button.appendTo( + this.pos_widget.$('div.summary') + ); + } + } + }); + + /************************************************************************* + New ScreenWidget OrderListScreenWidget: + * On show, display all draft orders; + * on click on an order, display the content; + * on click on 'validate', allow to use this POS Order; + * on click on 'cancel', display the preview screen; + */ + module.OrderListScreenWidget = module.ScreenWidget.extend({ + template: 'OrderListScreenWidget', + show_leftpane: true, + model: 'pos.order', + current_order_id: 0, + + init: function(parent, options){ + this._super(parent, options); + }, + + reset_order: function(order) { + order.set_client(undefined); + order.set_order_id(undefined); + order.get('orderLines').reset(); + return order; + }, + + start: function() { + var self = this; + this._super(); + this.$el.find('span.button.back').click(function(){ + order = self.pos.get('selectedOrder'); + self.reset_order(order); + self.pos_widget.order_widget.change_selected_order(); + var ss = self.pos.pos_widget.screen_selector; + ss.set_current_screen('products'); + }); + this.$el.find('span.button.validate').click(function(){ + var orderModel = new instance.web.Model('pos.order'); + return orderModel.call('unlink', [[self.current_order_id]]) + .then(function (result) { + var ss = self.pos.pos_widget.screen_selector; + ss.set_current_screen('products'); + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.pos_widget.screen_selector.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + }); + } + else{ + self.pos_widget.screen_selector.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not load the Selected Order because the POS is currently offline'), + }); + } + event.preventDefault(); + }); + }); + + var search_timeout = null; + + this.$('.searchbox input').on('keyup',function(event){ + 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(); + }); + + }, + + // to override if necessary + add_product_attribute: function(product, key, orderline){ + return product; + }, + + load_order_fields: function(order, fields) { + order.set_order_id(fields.id); + var partner = this.pos.db.get_partner_by_id( + fields.partner_id); + order.set_client(partner || undefined); + return order; + }, + + prepare_orderline_options: function(orderline) { + return { + quantity: orderline.qty, + price: orderline.price_unit, + discount: orderline.discount, + }; + }, + + load_order: function(order_id) { + var self = this; + var orderModel = new instance.web.Model(this.model); + return orderModel.call('load_order', [order_id]) + .then(function (result) { + var order = self.pos.get('selectedOrder'); + var result = result[0]; + order = self.load_order_fields(order, result); + order.get('orderLines').reset(); + var orderlines = result.orderlines || []; + var unknown_products = []; + for (var i=0, len=orderlines.length; i 0){ + self.pos_widget.screen_selector.show_popup( + 'error-traceback', { + message: _t('Unknown Products'), + comment: _t('Unable to load some order lines because the ' + + 'products are not available in the POS cache.\n\n' + + 'Please check that lines :\n\n * ') + unknown_products.join("; \n *") + }); + self.$el.find('span.button.validate').hide(); + } + else{ + self.$el.find('span.button.validate').show(); + } + + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.pos_widget.screen_selector.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + }); + } + else{ + self.pos_widget.screen_selector.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not execute this action because the POS is currently offline'), + }); + } + event.preventDefault(); + }); + }, + + load_orders: function(query) { + var self = this; + var orderModel = new instance.web.Model(this.model); + return orderModel.call('search_read_orders', [query || '']) + .then(function (result) { + self.render_list(result); + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.pos_widget.screen_selector.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + } + ); + } + else{ + self.pos_widget.screen_selector.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not execute this action because the POS is currently offline'), + }); + } + event.preventDefault(); + }); + }, + + show: function() { + this._super(); + var ss = this.pos.pos_widget.screen_selector; + if (ss.get_current_screen() == 'orderlist') { + this.load_orders(); + } + }, + + render_list: function(orders){ + var self = this; + var contents = this.$el[0].querySelector('.order-list-contents'); + contents.innerHTML = ""; + for (var i = 0, len = orders.length; i < len; i++){ + var order = orders[i]; + var orderline_html = QWeb.render('LoadOrderLine', + {widget: this, order:orders[i]}); + var orderline = document.createElement('tbody'); + orderline.innerHTML = orderline_html; + orderline = orderline.childNodes[1]; + orderline.addEventListener('click', function() { + self.current_order_id = parseInt(this.dataset['orderId']); + self.load_order(self.current_order_id); + }); + contents.appendChild(orderline); + } + }, + + perform_search: function(query){ + this.load_orders(query) + }, + + clear_search: function(){ + this.load_orders(); + this.$('.searchbox input')[0].value = ''; + this.$('.searchbox input').focus(); + }, + + }); + +} diff --git a/pos_order_load/static/src/xml/pos_order_load.xml b/pos_order_load/static/src/xml/pos_order_load.xml new file mode 100644 index 00000000..220e221e --- /dev/null +++ b/pos_order_load/static/src/xml/pos_order_load.xml @@ -0,0 +1,76 @@ + + diff --git a/pos_order_load/view/pos_order_load.xml b/pos_order_load/view/pos_order_load.xml new file mode 100644 index 00000000..f4d0c506 --- /dev/null +++ b/pos_order_load/view/pos_order_load.xml @@ -0,0 +1,18 @@ + + + + + + + + + From 52f1e6c67280457603ec45c3e346b9bf876abb11 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Tue, 28 Jul 2015 10:56:07 +0200 Subject: [PATCH 02/20] [FIX] pylint & flake8; --- pos_order_load/__init__.py | 2 +- pos_order_load/models/__init__.py | 2 +- pos_order_load/models/pos_order.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pos_order_load/__init__.py b/pos_order_load/__init__.py index 89d26e2f..a0fdc10f 100644 --- a/pos_order_load/__init__.py +++ b/pos_order_load/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -import models +from . import models diff --git a/pos_order_load/models/__init__.py b/pos_order_load/models/__init__.py index 4ab141fe..9e9e7ad7 100644 --- a/pos_order_load/models/__init__.py +++ b/pos_order_load/models/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -import pos_order +from . import pos_order diff --git a/pos_order_load/models/pos_order.py b/pos_order_load/models/pos_order.py index c68ce4db..6ae16184 100644 --- a/pos_order_load/models/pos_order.py +++ b/pos_order_load/models/pos_order.py @@ -55,7 +55,6 @@ class PosOrder(models.Model): # Save Paid Orders return super(PosOrder, self).create_from_ui(orders) - # Custom Section @api.model def search_read_orders(self, query): @@ -90,7 +89,7 @@ class PosOrder(models.Model): # create Order order = self.create(self._order_fields(order_data)) - + # Create payment for statement_data in statements_data: self.add_payment( From 168898c07400d1b278c14eeafbfa0d4f761c6f21 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Mon, 17 Aug 2015 13:43:45 +0200 Subject: [PATCH 03/20] [REF] improve description; --- pos_order_load/README.rst | 12 ++++++++---- pos_order_load/static/src/js/pos_order_load.js | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/pos_order_load/README.rst b/pos_order_load/README.rst index 54d8bace..4d46e76e 100644 --- a/pos_order_load/README.rst +++ b/pos_order_load/README.rst @@ -1,10 +1,14 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + POS Order Load and Save ======================= -This module allows to load existing POS order. -In this version, when the loaded order -is validated in the POS, a new one is created. - +This module allows to: +* save a PoS order from PoS front UI to PoS back UI (server); +* recover (load) a draft PoS Order from PoS back UI to PoS front UI; +In this version, when the order is loaded again, the draft order is unlinked +in the server (in database); Bug Tracker =========== diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js index 0a0fe604..c42d00be 100644 --- a/pos_order_load/static/src/js/pos_order_load.js +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -58,7 +58,7 @@ openerp.pos_order_load = function(instance, local) { /************************************************************************* New Widget SaveButtonWidget: - * On click, backup the current draft order; + * On click, save the current draft order; */ module.SaveButtonWidget = module.PosBaseWidget.extend({ template: 'SaveButtonWidget', From 89e3aa8b390640531bc65f1cb8e88177c0283a1c Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Sat, 30 Jan 2016 17:18:38 +0100 Subject: [PATCH 04/20] [REF] define a new function outside a loop; --- pos_order_load/static/src/js/pos_order_load.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js index c42d00be..04d59f31 100644 --- a/pos_order_load/static/src/js/pos_order_load.js +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -329,6 +329,11 @@ openerp.pos_order_load = function(instance, local) { } }, + on_click_draft_order: function(event){ + this.current_order_id = parseInt(event.target.parentNode.dataset['orderId']); + this.load_order(this.current_order_id); + }, + render_list: function(orders){ var self = this; var contents = this.$el[0].querySelector('.order-list-contents'); @@ -340,10 +345,7 @@ openerp.pos_order_load = function(instance, local) { var orderline = document.createElement('tbody'); orderline.innerHTML = orderline_html; orderline = orderline.childNodes[1]; - orderline.addEventListener('click', function() { - self.current_order_id = parseInt(this.dataset['orderId']); - self.load_order(self.current_order_id); - }); + orderline.addEventListener('click', this.on_click_draft_order); contents.appendChild(orderline); } }, From 81bad98ba3413f67b7e0c879ea5829127184225f Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Wed, 2 Nov 2016 09:17:15 +0100 Subject: [PATCH 05/20] [FIX] pylint / flake8 errors --- pos_order_load/__openerp__.py | 3 ++- pos_order_load/models/pos_order.py | 13 +++++++------ pos_order_load/static/src/js/pos_order_load.js | 14 ++++++-------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pos_order_load/__openerp__.py b/pos_order_load/__openerp__.py index 87a0a749..4309e777 100644 --- a/pos_order_load/__openerp__.py +++ b/pos_order_load/__openerp__.py @@ -22,9 +22,10 @@ { 'name': 'POS Order Load and Save', - 'version': '0.2', + 'version': '8.0.1.0.0', 'author': 'Akretion,GRAP,Odoo Community Association (OCA)', 'category': 'Point Of Sale', + 'license': 'AGPL-3', 'depends': [ 'point_of_sale', ], diff --git a/pos_order_load/models/pos_order.py b/pos_order_load/models/pos_order.py index 6ae16184..25f66ffe 100644 --- a/pos_order_load/models/pos_order.py +++ b/pos_order_load/models/pos_order.py @@ -68,15 +68,16 @@ class PosOrder(models.Model): fields = ['name', 'partner_id', 'amount_total'] return self.search_read(condition, fields, limit=10) - @api.one - def load_order(self): - condition = [('order_id', '=', self.id)] + @api.model + def load_order(self, order_id): + order = self.browse(order_id) + condition = [('order_id', '=', order_id)] fields = ['product_id', 'price_unit', 'qty', 'discount'] orderlines = self.lines.search_read(condition, fields) return { - 'id': self.id, - 'name': self.pos_reference, - 'partner_id': self.partner_id and self.partner_id.id or False, + 'id': order.id, + 'name': order.pos_reference, + 'partner_id': self.partner_id.id, 'orderlines': orderlines } diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js index 04d59f31..5cff51d9 100644 --- a/pos_order_load/static/src/js/pos_order_load.js +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -95,8 +95,7 @@ openerp.pos_order_load = function(instance, local) { this.orderlist_screen.appendTo(this.$('.screens')); this.orderlist_screen.hide(); - this.screen_selector.screen_set['orderlist'] = - this.orderlist_screen; + this.screen_selector.screen_set.orderlist = this.orderlist_screen; // Add buttons this.load_button = new module.LoadButtonWidget(this,{}); @@ -232,10 +231,9 @@ openerp.pos_order_load = function(instance, local) { return orderModel.call('load_order', [order_id]) .then(function (result) { var order = self.pos.get('selectedOrder'); - var result = result[0]; order = self.load_order_fields(order, result); order.get('orderLines').reset(); - var orderlines = result.orderlines || []; + var orderlines = result.orderlines || []; var unknown_products = []; for (var i=0, len=orderlines.length; i Date: Thu, 1 Dec 2016 16:26:51 +0100 Subject: [PATCH 06/20] [FIX] incorrect way to get partner_id --- pos_order_load/models/pos_order.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pos_order_load/models/pos_order.py b/pos_order_load/models/pos_order.py index 25f66ffe..2b0b777a 100644 --- a/pos_order_load/models/pos_order.py +++ b/pos_order_load/models/pos_order.py @@ -77,8 +77,8 @@ class PosOrder(models.Model): return { 'id': order.id, 'name': order.pos_reference, - 'partner_id': self.partner_id.id, - 'orderlines': orderlines + 'partner_id': order.partner_id.id, + 'orderlines': orderlines, } @api.model From d6c9981a8696941dca9af0534da02e2a8110e09d Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 2 Dec 2016 22:11:53 -0500 Subject: [PATCH 07/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/am.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ar.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/bg.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/bs.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ca.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ca_ES.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/cs.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/da.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/de.po | 148 ++++++++++++++++++++++++++++++++ pos_order_load/i18n/el_GR.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/en_AU.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/en_GB.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_AR.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_CL.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_CO.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_CR.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_DO.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_EC.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_ES.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_MX.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_PY.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/es_VE.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/et.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/eu.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/eu_ES.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/fa.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/fi.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/fr.po | 56 +++++++----- pos_order_load/i18n/fr_CA.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/fr_CH.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/fr_FR.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/gl.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/he.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/hi.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/hr.po | 148 ++++++++++++++++++++++++++++++++ pos_order_load/i18n/hr_HR.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/hu.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/id.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/it.po | 148 ++++++++++++++++++++++++++++++++ pos_order_load/i18n/ja.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ko.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/lo.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/lt.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/lt_LT.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/lv.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/mk.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/mn.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/nb.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/nb_NO.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/nl.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/nl_BE.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/nl_NL.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/pl.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/pt.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/pt_BR.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/pt_PT.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ro.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/ru.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/sk.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/sl.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/sr.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/sr@latin.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/sv.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/th.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/tr.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/uk.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/vi.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/vi_VN.po | 146 +++++++++++++++++++++++++++++++ pos_order_load/i18n/zh_CN.po | 147 +++++++++++++++++++++++++++++++ pos_order_load/i18n/zh_TW.po | 146 +++++++++++++++++++++++++++++++ 71 files changed, 10270 insertions(+), 22 deletions(-) create mode 100644 pos_order_load/i18n/am.po create mode 100644 pos_order_load/i18n/ar.po create mode 100644 pos_order_load/i18n/bg.po create mode 100644 pos_order_load/i18n/bs.po create mode 100644 pos_order_load/i18n/ca.po create mode 100644 pos_order_load/i18n/ca_ES.po create mode 100644 pos_order_load/i18n/cs.po create mode 100644 pos_order_load/i18n/da.po create mode 100644 pos_order_load/i18n/de.po create mode 100644 pos_order_load/i18n/el_GR.po create mode 100644 pos_order_load/i18n/en_AU.po create mode 100644 pos_order_load/i18n/en_GB.po create mode 100644 pos_order_load/i18n/es.po create mode 100644 pos_order_load/i18n/es_AR.po create mode 100644 pos_order_load/i18n/es_CL.po create mode 100644 pos_order_load/i18n/es_CO.po create mode 100644 pos_order_load/i18n/es_CR.po create mode 100644 pos_order_load/i18n/es_DO.po create mode 100644 pos_order_load/i18n/es_EC.po create mode 100644 pos_order_load/i18n/es_ES.po create mode 100644 pos_order_load/i18n/es_MX.po create mode 100644 pos_order_load/i18n/es_PY.po create mode 100644 pos_order_load/i18n/es_VE.po create mode 100644 pos_order_load/i18n/et.po create mode 100644 pos_order_load/i18n/eu.po create mode 100644 pos_order_load/i18n/eu_ES.po create mode 100644 pos_order_load/i18n/fa.po create mode 100644 pos_order_load/i18n/fi.po create mode 100644 pos_order_load/i18n/fr_CA.po create mode 100644 pos_order_load/i18n/fr_CH.po create mode 100644 pos_order_load/i18n/fr_FR.po create mode 100644 pos_order_load/i18n/gl.po create mode 100644 pos_order_load/i18n/he.po create mode 100644 pos_order_load/i18n/hi.po create mode 100644 pos_order_load/i18n/hr.po create mode 100644 pos_order_load/i18n/hr_HR.po create mode 100644 pos_order_load/i18n/hu.po create mode 100644 pos_order_load/i18n/id.po create mode 100644 pos_order_load/i18n/it.po create mode 100644 pos_order_load/i18n/ja.po create mode 100644 pos_order_load/i18n/ko.po create mode 100644 pos_order_load/i18n/lo.po create mode 100644 pos_order_load/i18n/lt.po create mode 100644 pos_order_load/i18n/lt_LT.po create mode 100644 pos_order_load/i18n/lv.po create mode 100644 pos_order_load/i18n/mk.po create mode 100644 pos_order_load/i18n/mn.po create mode 100644 pos_order_load/i18n/nb.po create mode 100644 pos_order_load/i18n/nb_NO.po create mode 100644 pos_order_load/i18n/nl.po create mode 100644 pos_order_load/i18n/nl_BE.po create mode 100644 pos_order_load/i18n/nl_NL.po create mode 100644 pos_order_load/i18n/pl.po create mode 100644 pos_order_load/i18n/pt.po create mode 100644 pos_order_load/i18n/pt_BR.po create mode 100644 pos_order_load/i18n/pt_PT.po create mode 100644 pos_order_load/i18n/ro.po create mode 100644 pos_order_load/i18n/ru.po create mode 100644 pos_order_load/i18n/sk.po create mode 100644 pos_order_load/i18n/sl.po create mode 100644 pos_order_load/i18n/sr.po create mode 100644 pos_order_load/i18n/sr@latin.po create mode 100644 pos_order_load/i18n/sv.po create mode 100644 pos_order_load/i18n/th.po create mode 100644 pos_order_load/i18n/tr.po create mode 100644 pos_order_load/i18n/uk.po create mode 100644 pos_order_load/i18n/vi.po create mode 100644 pos_order_load/i18n/vi_VN.po create mode 100644 pos_order_load/i18n/zh_CN.po create mode 100644 pos_order_load/i18n/zh_TW.po diff --git a/pos_order_load/i18n/am.po b/pos_order_load/i18n/am.po new file mode 100644 index 00000000..e5e52bdf --- /dev/null +++ b/pos_order_load/i18n/am.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/ar.po b/pos_order_load/i18n/ar.po new file mode 100644 index 00000000..e20701f5 --- /dev/null +++ b/pos_order_load/i18n/ar.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "إلغاء" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/bg.po b/pos_order_load/i18n/bg.po new file mode 100644 index 00000000..a66a2fc0 --- /dev/null +++ b/pos_order_load/i18n/bg.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Клиент" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Поръчка" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/bs.po b/pos_order_load/i18n/bs.po new file mode 100644 index 00000000..69f0996e --- /dev/null +++ b/pos_order_load/i18n/bs.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/ca.po b/pos_order_load/i18n/ca.po new file mode 100644 index 00000000..8f43509a --- /dev/null +++ b/pos_order_load/i18n/ca.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Eric Antones , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Eric Antones , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Comanda" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Punt de Venda" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/ca_ES.po b/pos_order_load/i18n/ca_ES.po new file mode 100644 index 00000000..2b982ae1 --- /dev/null +++ b/pos_order_load/i18n/ca_ES.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/cs.po b/pos_order_load/i18n/cs.po new file mode 100644 index 00000000..3cf089c4 --- /dev/null +++ b/pos_order_load/i18n/cs.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/da.po b/pos_order_load/i18n/da.po new file mode 100644 index 00000000..cf4627bf --- /dev/null +++ b/pos_order_load/i18n/da.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuller" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/de.po b/pos_order_load/i18n/de.po new file mode 100644 index 00000000..34716dee --- /dev/null +++ b/pos_order_load/i18n/de.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Tom Palan , 2016 +# Thomas A. Jaeger , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Thomas A. Jaeger , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Löschen" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Kunde" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Auftrag" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Gesamtbetrag" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Prüfen" diff --git a/pos_order_load/i18n/el_GR.po b/pos_order_load/i18n/el_GR.po new file mode 100644 index 00000000..a382ab04 --- /dev/null +++ b/pos_order_load/i18n/el_GR.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Kostas Goutoudis , 2016 +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Άκυρο" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Πελάτης" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Παραγγελία" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/en_AU.po b/pos_order_load/i18n/en_AU.po new file mode 100644 index 00000000..a4787bc2 --- /dev/null +++ b/pos_order_load/i18n/en_AU.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/en_GB.po b/pos_order_load/i18n/en_GB.po new file mode 100644 index 00000000..e4fd4ebb --- /dev/null +++ b/pos_order_load/i18n/en_GB.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es.po b/pos_order_load/i18n/es.po new file mode 100644 index 00000000..6d0842a0 --- /dev/null +++ b/pos_order_load/i18n/es.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Pedido" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Terminal Punto de Venta" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Importe total" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Validar" diff --git a/pos_order_load/i18n/es_AR.po b/pos_order_load/i18n/es_AR.po new file mode 100644 index 00000000..eb33e086 --- /dev/null +++ b/pos_order_load/i18n/es_AR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_CL.po b/pos_order_load/i18n/es_CL.po new file mode 100644 index 00000000..fb4847e8 --- /dev/null +++ b/pos_order_load/i18n/es_CL.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_CO.po b/pos_order_load/i18n/es_CO.po new file mode 100644 index 00000000..4e3327b6 --- /dev/null +++ b/pos_order_load/i18n/es_CO.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_CR.po b/pos_order_load/i18n/es_CR.po new file mode 100644 index 00000000..ed6aea1e --- /dev/null +++ b/pos_order_load/i18n/es_CR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_DO.po b/pos_order_load/i18n/es_DO.po new file mode 100644 index 00000000..f5221e9e --- /dev/null +++ b/pos_order_load/i18n/es_DO.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_EC.po b/pos_order_load/i18n/es_EC.po new file mode 100644 index 00000000..770a7af3 --- /dev/null +++ b/pos_order_load/i18n/es_EC.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_ES.po b/pos_order_load/i18n/es_ES.po new file mode 100644 index 00000000..222b3445 --- /dev/null +++ b/pos_order_load/i18n/es_ES.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_MX.po b/pos_order_load/i18n/es_MX.po new file mode 100644 index 00000000..b1116ad8 --- /dev/null +++ b/pos_order_load/i18n/es_MX.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_PY.po b/pos_order_load/i18n/es_PY.po new file mode 100644 index 00000000..fdd0fea5 --- /dev/null +++ b/pos_order_load/i18n/es_PY.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/es_VE.po b/pos_order_load/i18n/es_VE.po new file mode 100644 index 00000000..d8b63daa --- /dev/null +++ b/pos_order_load/i18n/es_VE.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/et.po b/pos_order_load/i18n/et.po new file mode 100644 index 00000000..e2698235 --- /dev/null +++ b/pos_order_load/i18n/et.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Loobu" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/eu.po b/pos_order_load/i18n/eu.po new file mode 100644 index 00000000..0615598e --- /dev/null +++ b/pos_order_load/i18n/eu.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/eu_ES.po b/pos_order_load/i18n/eu_ES.po new file mode 100644 index 00000000..2c5ee8ab --- /dev/null +++ b/pos_order_load/i18n/eu_ES.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# oihane , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: oihane , 2016\n" +"Language-Team: Basque (Spain) (https://www.transifex.com/oca/teams/23907/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Bezeroa" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/fa.po b/pos_order_load/i18n/fa.po new file mode 100644 index 00000000..e13b5349 --- /dev/null +++ b/pos_order_load/i18n/fa.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "لغو" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/fi.po b/pos_order_load/i18n/fi.po new file mode 100644 index 00000000..111d7095 --- /dev/null +++ b/pos_order_load/i18n/fi.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Peruuta" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Asiakas" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/fr.po b/pos_order_load/i18n/fr.po index 4451beab..38e4c6d3 100644 --- a/pos_order_load/i18n/fr.po +++ b/pos_order_load/i18n/fr.po @@ -1,34 +1,41 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * pos_order_load -# +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-27 17:43+0000\n" -"PO-Revision-Date: 2015-07-27 17:43+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load #. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:291 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:317 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 #, python-format msgid "Can not execute this action because the POS is currently offline" -msgstr "Impossible d'exécuter cette action car le Point de vente est actuellement hors ligne" +msgstr "" +"Impossible d'exécuter cette action car le Point de vente est actuellement " +"hors ligne" #. module: pos_order_load #. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:182 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 #, python-format msgid "Can not load the Selected Order because the POS is currently offline" -msgstr "Impossible de charger la vente sélectionnée car le Point de vente est actuellement hors ligne" +msgstr "" +"Impossible de charger la vente sélectionnée car le Point de vente est " +"actuellement hors ligne" #. module: pos_order_load #. openerp-web @@ -39,9 +46,9 @@ msgstr "Annuler" #. module: pos_order_load #. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:290 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:316 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 #, python-format msgid "Connection error" msgstr "Erreur de connection" @@ -104,8 +111,12 @@ msgstr "Choisir une vente" #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 #, python-format -msgid "This operation will save the current order in a draft state. You'll have to mark it as paid after." -msgstr "Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous devrez la marquer comme payée ultérieurement" +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" +"Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous" +" devrez la marquer comme payée ultérieurement" #. module: pos_order_load #. openerp-web @@ -116,14 +127,16 @@ msgstr "Montant Total" #. module: pos_order_load #. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:269 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format -msgid "Unable to load some order lines because the products are not available in the POS cache.\n" +msgid "" +"Unable to load some order 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 de ventes parce que les produits ne sont pas disponibles dans le cache du point de vente.\n" +msgstr "" +"Impossible de charger certaines lignes de ventes parce que les produits ne sont pas disponibles dans le cache du point de vente.\n" "\n" "Veuillez vérifier ces lignes :\n" "\n" @@ -131,7 +144,7 @@ msgstr "Impossible de charger certaines lignes de ventes parce que les produits #. module: pos_order_load #. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:268 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 #, python-format msgid "Unknown Products" msgstr "Produits Iconnu" @@ -142,4 +155,3 @@ msgstr "Produits Iconnu" #, python-format msgid "Validate" msgstr "Valider" - diff --git a/pos_order_load/i18n/fr_CA.po b/pos_order_load/i18n/fr_CA.po new file mode 100644 index 00000000..95c8f5f7 --- /dev/null +++ b/pos_order_load/i18n/fr_CA.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/fr_CH.po b/pos_order_load/i18n/fr_CH.po new file mode 100644 index 00000000..0e2ae462 --- /dev/null +++ b/pos_order_load/i18n/fr_CH.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Montant total" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Valider" diff --git a/pos_order_load/i18n/fr_FR.po b/pos_order_load/i18n/fr_FR.po new file mode 100644 index 00000000..bee80942 --- /dev/null +++ b/pos_order_load/i18n/fr_FR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Mohamed HABOU , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Mohamed HABOU , 2016\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/gl.po b/pos_order_load/i18n/gl.po new file mode 100644 index 00000000..b6c0d613 --- /dev/null +++ b/pos_order_load/i18n/gl.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# César Castro Cruz , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: César Castro Cruz , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Punto de venda" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/he.po b/pos_order_load/i18n/he.po new file mode 100644 index 00000000..b639da99 --- /dev/null +++ b/pos_order_load/i18n/he.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "בטל" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/hi.po b/pos_order_load/i18n/hi.po new file mode 100644 index 00000000..093cc4f6 --- /dev/null +++ b/pos_order_load/i18n/hi.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "रद्द" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/hr.po b/pos_order_load/i18n/hr.po new file mode 100644 index 00000000..30c7819c --- /dev/null +++ b/pos_order_load/i18n/hr.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Ana-Maria Olujić , 2016 +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Odustani" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Kupac" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Potvrdi" diff --git a/pos_order_load/i18n/hr_HR.po b/pos_order_load/i18n/hr_HR.po new file mode 100644 index 00000000..8eb31930 --- /dev/null +++ b/pos_order_load/i18n/hr_HR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/hu.po b/pos_order_load/i18n/hu.po new file mode 100644 index 00000000..d1f575db --- /dev/null +++ b/pos_order_load/i18n/hu.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Mégsem" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/id.po b/pos_order_load/i18n/id.po new file mode 100644 index 00000000..391888d8 --- /dev/null +++ b/pos_order_load/i18n/id.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Batalkan" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/it.po b/pos_order_load/i18n/it.po new file mode 100644 index 00000000..bfaf4324 --- /dev/null +++ b/pos_order_load/i18n/it.po @@ -0,0 +1,148 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Paolo Valier , 2016 +# Andrea Cometa , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Andrea Cometa , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Ordine" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Punto Vendita" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Importo Totale" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Valida" diff --git a/pos_order_load/i18n/ja.po b/pos_order_load/i18n/ja.po new file mode 100644 index 00000000..69bd4711 --- /dev/null +++ b/pos_order_load/i18n/ja.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/ko.po b/pos_order_load/i18n/ko.po new file mode 100644 index 00000000..96d47c63 --- /dev/null +++ b/pos_order_load/i18n/ko.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "취소" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/lo.po b/pos_order_load/i18n/lo.po new file mode 100644 index 00000000..eeb5a82a --- /dev/null +++ b/pos_order_load/i18n/lo.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/lt.po b/pos_order_load/i18n/lt.po new file mode 100644 index 00000000..8a7eaaf3 --- /dev/null +++ b/pos_order_load/i18n/lt.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/lt_LT.po b/pos_order_load/i18n/lt_LT.po new file mode 100644 index 00000000..ee915761 --- /dev/null +++ b/pos_order_load/i18n/lt_LT.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Arminas Grigonis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Arminas Grigonis , 2016\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/lv.po b/pos_order_load/i18n/lv.po new file mode 100644 index 00000000..74c980a2 --- /dev/null +++ b/pos_order_load/i18n/lv.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Atcelt" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/mk.po b/pos_order_load/i18n/mk.po new file mode 100644 index 00000000..37ed7132 --- /dev/null +++ b/pos_order_load/i18n/mk.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/mn.po b/pos_order_load/i18n/mn.po new file mode 100644 index 00000000..fffd01c3 --- /dev/null +++ b/pos_order_load/i18n/mn.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/nb.po b/pos_order_load/i18n/nb.po new file mode 100644 index 00000000..8558a50c --- /dev/null +++ b/pos_order_load/i18n/nb.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/nb_NO.po b/pos_order_load/i18n/nb_NO.po new file mode 100644 index 00000000..506ea005 --- /dev/null +++ b/pos_order_load/i18n/nb_NO.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Lukk" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Ordre" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Totalsum" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/nl.po b/pos_order_load/i18n/nl.po new file mode 100644 index 00000000..0ca4a88a --- /dev/null +++ b/pos_order_load/i18n/nl.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Erwin van der Ploeg , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Erwin van der Ploeg , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Klant" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Volgorde" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Totaalbedrag" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Bevestig" diff --git a/pos_order_load/i18n/nl_BE.po b/pos_order_load/i18n/nl_BE.po new file mode 100644 index 00000000..bbedd336 --- /dev/null +++ b/pos_order_load/i18n/nl_BE.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/nl_NL.po b/pos_order_load/i18n/nl_NL.po new file mode 100644 index 00000000..001bb220 --- /dev/null +++ b/pos_order_load/i18n/nl_NL.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Klant" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Order" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "Kassa" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/pl.po b/pos_order_load/i18n/pl.po new file mode 100644 index 00000000..3c6dadd6 --- /dev/null +++ b/pos_order_load/i18n/pl.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/pt.po b/pos_order_load/i18n/pt.po new file mode 100644 index 00000000..0b17ee0d --- /dev/null +++ b/pos_order_load/i18n/pt.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/pt_BR.po b/pos_order_load/i18n/pt_BR.po new file mode 100644 index 00000000..57434552 --- /dev/null +++ b/pos_order_load/i18n/pt_BR.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Claudio Araujo Santos , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Cliente" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Pedido" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Valor total" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Validar" diff --git a/pos_order_load/i18n/pt_PT.po b/pos_order_load/i18n/pt_PT.po new file mode 100644 index 00000000..6dbb732e --- /dev/null +++ b/pos_order_load/i18n/pt_PT.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Daniel Reis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Daniel Reis , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Validar" diff --git a/pos_order_load/i18n/ro.po b/pos_order_load/i18n/ro.po new file mode 100644 index 00000000..05be9597 --- /dev/null +++ b/pos_order_load/i18n/ro.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Anuleaza" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/ru.po b/pos_order_load/i18n/ru.po new file mode 100644 index 00000000..c112588b --- /dev/null +++ b/pos_order_load/i18n/ru.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Отменена" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/sk.po b/pos_order_load/i18n/sk.po new file mode 100644 index 00000000..5238ec4f --- /dev/null +++ b/pos_order_load/i18n/sk.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Zrušiť" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/sl.po b/pos_order_load/i18n/sl.po new file mode 100644 index 00000000..149b0288 --- /dev/null +++ b/pos_order_load/i18n/sl.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Preklic" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Kupec" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "Nalog" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "POS Prodajna točka" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "Skupni znesek" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "Overi" diff --git a/pos_order_load/i18n/sr.po b/pos_order_load/i18n/sr.po new file mode 100644 index 00000000..3c5f3581 --- /dev/null +++ b/pos_order_load/i18n/sr.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/sr@latin.po b/pos_order_load/i18n/sr@latin.po new file mode 100644 index 00000000..d48cbf3b --- /dev/null +++ b/pos_order_load/i18n/sr@latin.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/sv.po b/pos_order_load/i18n/sv.po new file mode 100644 index 00000000..a33705d4 --- /dev/null +++ b/pos_order_load/i18n/sv.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/th.po b/pos_order_load/i18n/th.po new file mode 100644 index 00000000..2a3eadd8 --- /dev/null +++ b/pos_order_load/i18n/th.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/tr.po b/pos_order_load/i18n/tr.po new file mode 100644 index 00000000..a03106d9 --- /dev/null +++ b/pos_order_load/i18n/tr.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Vazgeç" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "Müşteri" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/uk.po b/pos_order_load/i18n/uk.po new file mode 100644 index 00000000..4c0cbc0c --- /dev/null +++ b/pos_order_load/i18n/uk.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Скасувати" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/vi.po b/pos_order_load/i18n/vi.po new file mode 100644 index 00000000..e5136c60 --- /dev/null +++ b/pos_order_load/i18n/vi.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/vi_VN.po b/pos_order_load/i18n/vi_VN.po new file mode 100644 index 00000000..fe3bcc15 --- /dev/null +++ b/pos_order_load/i18n/vi_VN.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "Hủy" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/zh_CN.po b/pos_order_load/i18n/zh_CN.po new file mode 100644 index 00000000..7f4282c0 --- /dev/null +++ b/pos_order_load/i18n/zh_CN.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +# Jeffery Chen Fan , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: Jeffery Chen Fan , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "客户" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" diff --git a/pos_order_load/i18n/zh_TW.po b/pos_order_load/i18n/zh_TW.po new file mode 100644 index 00000000..aa3fb2b0 --- /dev/null +++ b/pos_order_load/i18n/zh_TW.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-02 03:44+0000\n" +"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "刪除" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" From 11f5beaa552fd71c46e3b6fa3321a167400601dc Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 9 Dec 2016 22:16:44 -0500 Subject: [PATCH 08/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/sl.po | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/pos_order_load/i18n/sl.po b/pos_order_load/i18n/sl.po index 149b0288..9be1e3f3 100644 --- a/pos_order_load/i18n/sl.po +++ b/pos_order_load/i18n/sl.po @@ -25,14 +25,14 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 #, python-format msgid "Can not execute this action because the POS is currently offline" -msgstr "" +msgstr "Dejanja ni mogoče izvesti, ker je POS trenutno nedosegljiv." #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 #, python-format msgid "Can not load the Selected Order because the POS is currently offline" -msgstr "" +msgstr "Izbranega naloga ni mogoče naložiti, ker je POS trenutno nedosegljiv." #. module: pos_order_load #. openerp-web @@ -48,7 +48,7 @@ msgstr "Preklic" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 #, python-format msgid "Connection error" -msgstr "" +msgstr "Napaka pri povezavi" #. module: pos_order_load #. openerp-web @@ -62,7 +62,7 @@ msgstr "Kupec" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 #, python-format msgid "Load Draft Order" -msgstr "" +msgstr "Naloži osnutek naloga" #. module: pos_order_load #. openerp-web @@ -81,28 +81,28 @@ msgstr "POS Prodajna točka" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 #, python-format msgid "Save Current Order" -msgstr "" +msgstr "Shrani trenutni nalog" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 #, python-format msgid "Save The current Order ?" -msgstr "" +msgstr "Shrani trenutni nalog?" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 #, python-format msgid "Search Orders" -msgstr "" +msgstr "Iskanje nalogov" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 #, python-format msgid "Select Order" -msgstr "" +msgstr "Izberi nalog" #. module: pos_order_load #. openerp-web @@ -112,6 +112,8 @@ msgid "" "This operation will save the current order in a draft state. You'll have to " "mark it as paid after." msgstr "" +"Ta postopek bo shranil trenutni nalog v stanju osnutka. Kasneje ga boste " +"morali označiti, da je plačan." #. module: pos_order_load #. openerp-web @@ -131,13 +133,18 @@ msgid "" "\n" " * " msgstr "" +"Nekaterih postavk naloga ni bilo mogoče naložiti, ker v predpomnilniku proizvodi niso na voljo.\n" +"\n" +"Preverite te postavke :\n" +"\n" +" * " #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 #, python-format msgid "Unknown Products" -msgstr "" +msgstr "Neznani proizvodi" #. module: pos_order_load #. openerp-web From 5c1a04516d26375e957109778363eda73225fd92 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 16 Dec 2016 22:18:38 -0500 Subject: [PATCH 09/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/pt_PT.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pos_order_load/i18n/pt_PT.po b/pos_order_load/i18n/pt_PT.po index 6dbb732e..08b7b79e 100644 --- a/pos_order_load/i18n/pt_PT.po +++ b/pos_order_load/i18n/pt_PT.po @@ -4,14 +4,14 @@ # # Translators: # OCA Transbot , 2016 -# Daniel Reis , 2016 +# Pedro Castro Silva , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Daniel Reis , 2016\n" +"POT-Creation-Date: 2016-12-15 03:43+0000\n" +"PO-Revision-Date: 2016-12-15 03:43+0000\n" +"Last-Translator: Pedro Castro Silva , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 #, python-format msgid "Customer" -msgstr "" +msgstr "Cliente" #. module: pos_order_load #. openerp-web From 4b1bf0a95e895e5e97a07f6527c7ab4941eb34eb Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 23 Dec 2016 22:26:41 -0500 Subject: [PATCH 10/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/es.po | 28 ++++++++++++++++++---------- pos_order_load/i18n/sk.po | 9 +++++---- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/pos_order_load/i18n/es.po b/pos_order_load/i18n/es.po index 6d0842a0..a39e2404 100644 --- a/pos_order_load/i18n/es.po +++ b/pos_order_load/i18n/es.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Janire Olagibel , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-12-15 03:43+0000\n" +"PO-Revision-Date: 2016-12-15 03:43+0000\n" +"Last-Translator: Janire Olagibel , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6 +26,7 @@ msgstr "" #, 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_order_load #. openerp-web @@ -32,6 +34,8 @@ msgstr "" #, python-format msgid "Can not load the Selected Order because the POS is currently offline" msgstr "" +"No se puede cargar la Orden seleccionada porque el TPV está actualmente sin " +"conexión" #. module: pos_order_load #. openerp-web @@ -47,7 +51,7 @@ msgstr "Cancelar" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 #, python-format msgid "Connection error" -msgstr "" +msgstr "Error de conexión" #. module: pos_order_load #. openerp-web @@ -61,7 +65,7 @@ msgstr "Cliente" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 #, python-format msgid "Load Draft Order" -msgstr "" +msgstr "Cargar Pedido en Borrador" #. module: pos_order_load #. openerp-web @@ -80,28 +84,28 @@ msgstr "Terminal Punto de Venta" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 #, python-format msgid "Save Current Order" -msgstr "" +msgstr "Guardar Pedido Actual" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 #, python-format msgid "Save The current Order ?" -msgstr "" +msgstr "¿Guardar Pedido Actual?" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 #, python-format msgid "Search Orders" -msgstr "" +msgstr "Buscar Pedidos" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 #, python-format msgid "Select Order" -msgstr "" +msgstr "Seleccionar Pedido" #. module: pos_order_load #. openerp-web @@ -111,6 +115,8 @@ msgid "" "This operation will save the current order in a draft state. You'll have to " "mark it as paid after." msgstr "" +"Esta operación guardará el pedido actual en estado borrador. Tendrá que " +"marcarlo como pagado después." #. module: pos_order_load #. openerp-web @@ -130,13 +136,15 @@ msgid "" "\n" " * " msgstr "" +"No es posible cargar algunas líneas de pedido porque los productos no están disponibles en la caché del TPV.\n" +"Por favor, compruebe las líneas :" #. module: pos_order_load #. openerp-web #: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 #, python-format msgid "Unknown Products" -msgstr "" +msgstr "Productos Desconocidos" #. module: pos_order_load #. openerp-web diff --git a/pos_order_load/i18n/sk.po b/pos_order_load/i18n/sk.po index 5238ec4f..cadc397a 100644 --- a/pos_order_load/i18n/sk.po +++ b/pos_order_load/i18n/sk.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# gebri , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-12-15 03:43+0000\n" +"PO-Revision-Date: 2016-12-15 03:43+0000\n" +"Last-Translator: gebri , 2016\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +55,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 #, python-format msgid "Customer" -msgstr "" +msgstr "Zákazník" #. module: pos_order_load #. openerp-web From 0156a0ad899a4991f73c38ad04319dfaa2232366 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 6 Jan 2017 23:28:02 -0500 Subject: [PATCH 11/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/tr_TR.po | 146 +++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 pos_order_load/i18n/tr_TR.po diff --git a/pos_order_load/i18n/tr_TR.po b/pos_order_load/i18n/tr_TR.po new file mode 100644 index 00000000..3827a142 --- /dev/null +++ b/pos_order_load/i18n/tr_TR.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 05:41+0000\n" +"PO-Revision-Date: 2016-12-31 05:41+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "İptal et" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "" +"This operation will save the current order in a draft state. You'll have to " +"mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "" +"Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" From f8d247950cead0a87657efc6385d097939985a95 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 14 Jan 2017 00:17:19 -0500 Subject: [PATCH 12/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/tr.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pos_order_load/i18n/tr.po b/pos_order_load/i18n/tr.po index a03106d9..5a7687b8 100644 --- a/pos_order_load/i18n/tr.po +++ b/pos_order_load/i18n/tr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Ivan BARAYEV , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-01-07 04:35+0000\n" +"PO-Revision-Date: 2017-01-07 04:35+0000\n" +"Last-Translator: Ivan BARAYEV , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -143,4 +144,4 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 #, python-format msgid "Validate" -msgstr "" +msgstr "Doğrula" From 318ac40a0e256393c0c7363f3cbf53d0015e6987 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 10 Feb 2017 23:25:25 -0500 Subject: [PATCH 13/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/de.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pos_order_load/i18n/de.po b/pos_order_load/i18n/de.po index 34716dee..6d27a19f 100644 --- a/pos_order_load/i18n/de.po +++ b/pos_order_load/i18n/de.po @@ -4,15 +4,14 @@ # # Translators: # OCA Transbot , 2016 -# Tom Palan , 2016 -# Thomas A. Jaeger , 2016 +# Rudolf Schnapka , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Thomas A. Jaeger , 2016\n" +"POT-Creation-Date: 2017-01-21 05:04+0000\n" +"PO-Revision-Date: 2017-01-21 05:04+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,7 +74,7 @@ msgstr "Auftrag" #. module: pos_order_load #: model:ir.model,name:pos_order_load.model_pos_order msgid "Point of Sale" -msgstr "" +msgstr "Verkaufsstelle" #. module: pos_order_load #. openerp-web From 810b53fe6faa760b1a35dc01cf749761185b40e4 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 17 Feb 2017 23:35:46 -0500 Subject: [PATCH 14/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/fi.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pos_order_load/i18n/fi.po b/pos_order_load/i18n/fi.po index 111d7095..5caff806 100644 --- a/pos_order_load/i18n/fi.po +++ b/pos_order_load/i18n/fi.po @@ -4,14 +4,14 @@ # # Translators: # OCA Transbot , 2016 -# Jarmo Kortetjärvi , 2016 +# Jarmo Kortetjärvi , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"POT-Creation-Date: 2017-02-11 04:29+0000\n" +"PO-Revision-Date: 2017-02-11 04:29+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,4 +144,4 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 #, python-format msgid "Validate" -msgstr "" +msgstr "Hyväksy" From b96f9614d9b63f209fc46f687acadaec72832194 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Mon, 1 May 2017 22:05:39 +0200 Subject: [PATCH 15/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/ca.po | 12 ++++++------ pos_order_load/i18n/zh_CN.po | 11 ++++++----- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/pos_order_load/i18n/ca.po b/pos_order_load/i18n/ca.po index 8f43509a..a87a0c92 100644 --- a/pos_order_load/i18n/ca.po +++ b/pos_order_load/i18n/ca.po @@ -4,14 +4,14 @@ # # Translators: # OCA Transbot , 2016 -# Eric Antones , 2016 +# Marc Tormo i Bochaca , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Eric Antones , 2016\n" +"POT-Creation-Date: 2017-04-29 00:49+0000\n" +"PO-Revision-Date: 2017-04-29 00:49+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 #, python-format msgid "Customer" -msgstr "" +msgstr "Client " #. module: pos_order_load #. openerp-web @@ -144,4 +144,4 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 #, python-format msgid "Validate" -msgstr "" +msgstr "Validar" diff --git a/pos_order_load/i18n/zh_CN.po b/pos_order_load/i18n/zh_CN.po index 7f4282c0..b1bd65e6 100644 --- a/pos_order_load/i18n/zh_CN.po +++ b/pos_order_load/i18n/zh_CN.po @@ -4,14 +4,15 @@ # # Translators: # OCA Transbot , 2016 -# Jeffery Chen Fan , 2016 +# Jeffery CHEN , 2016 +# liAnGjiA , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Jeffery Chen Fan , 2016\n" +"POT-Creation-Date: 2017-04-29 00:49+0000\n" +"PO-Revision-Date: 2017-04-29 00:49+0000\n" +"Last-Translator: liAnGjiA , 2017\n" "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +75,7 @@ msgstr "" #. module: pos_order_load #: model:ir.model,name:pos_order_load.model_pos_order msgid "Point of Sale" -msgstr "" +msgstr "POS" #. module: pos_order_load #. openerp-web From 1a85d709e19d625d9167c79786577c41ec048be1 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 13 May 2017 07:15:15 +0200 Subject: [PATCH 16/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/ru.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pos_order_load/i18n/ru.po b/pos_order_load/i18n/ru.po index c112588b..7b125d6f 100644 --- a/pos_order_load/i18n/ru.po +++ b/pos_order_load/i18n/ru.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Victor Safronovich , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-05-01 20:52+0000\n" +"PO-Revision-Date: 2017-05-01 20:52+0000\n" +"Last-Translator: Victor Safronovich , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +69,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 #, python-format msgid "Order" -msgstr "" +msgstr "Заказ" #. module: pos_order_load #: model:ir.model,name:pos_order_load.model_pos_order From 6c635de6da5542bd3be3b24cb6ac57e0ea6da94f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Sep 2017 07:34:15 +0200 Subject: [PATCH 17/20] OCA Transbot updated translations from Transifex --- pos_order_load/i18n/en_GB.po | 6 +++--- pos_order_load/i18n/nl_NL.po | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pos_order_load/i18n/en_GB.po b/pos_order_load/i18n/en_GB.po index e4fd4ebb..08ac8963 100644 --- a/pos_order_load/i18n/en_GB.po +++ b/pos_order_load/i18n/en_GB.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" +"POT-Creation-Date: 2017-08-29 01:16+0000\n" +"PO-Revision-Date: 2017-08-29 01:16+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" "MIME-Version: 1.0\n" @@ -117,7 +117,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 #, python-format msgid "Total Amount" -msgstr "" +msgstr "Total Amount" #. module: pos_order_load #. openerp-web diff --git a/pos_order_load/i18n/nl_NL.po b/pos_order_load/i18n/nl_NL.po index 001bb220..307b760b 100644 --- a/pos_order_load/i18n/nl_NL.po +++ b/pos_order_load/i18n/nl_NL.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Peter Hageman , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-02 03:44+0000\n" -"PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-08-29 01:16+0000\n" +"PO-Revision-Date: 2017-08-29 01:16+0000\n" +"Last-Translator: Peter Hageman , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +39,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 #, python-format msgid "Cancel" -msgstr "" +msgstr "Verwijderen" #. module: pos_order_load #. openerp-web From 47b78f34853f33e6c77c214ee61c1e89d0e0b278 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 22 Jun 2018 08:05:40 +0000 Subject: [PATCH 18/20] [UPD] Update pos_order_load.pot --- pos_order_load/i18n/am.po | 7 +- pos_order_load/i18n/ar.po | 10 +- pos_order_load/i18n/bg.po | 7 +- pos_order_load/i18n/bs.po | 10 +- pos_order_load/i18n/ca.po | 7 +- pos_order_load/i18n/ca_ES.po | 10 +- pos_order_load/i18n/cs.po | 7 +- pos_order_load/i18n/da.po | 7 +- pos_order_load/i18n/de.po | 7 +- pos_order_load/i18n/el_GR.po | 10 +- pos_order_load/i18n/en_AU.po | 10 +- pos_order_load/i18n/en_GB.po | 10 +- pos_order_load/i18n/es.po | 10 +- pos_order_load/i18n/es_AR.po | 10 +- pos_order_load/i18n/es_CL.po | 10 +- pos_order_load/i18n/es_CO.po | 10 +- pos_order_load/i18n/es_CR.po | 10 +- pos_order_load/i18n/es_DO.po | 10 +- pos_order_load/i18n/es_EC.po | 10 +- pos_order_load/i18n/es_ES.po | 10 +- pos_order_load/i18n/es_MX.po | 10 +- pos_order_load/i18n/es_PY.po | 10 +- pos_order_load/i18n/es_VE.po | 10 +- pos_order_load/i18n/et.po | 7 +- pos_order_load/i18n/eu.po | 7 +- pos_order_load/i18n/eu_ES.po | 10 +- pos_order_load/i18n/fa.po | 7 +- pos_order_load/i18n/fi.po | 7 +- pos_order_load/i18n/fr.po | 14 +-- pos_order_load/i18n/fr_CA.po | 10 +- pos_order_load/i18n/fr_CH.po | 10 +- pos_order_load/i18n/fr_FR.po | 10 +- pos_order_load/i18n/gl.po | 7 +- pos_order_load/i18n/he.po | 7 +- pos_order_load/i18n/hi.po | 7 +- pos_order_load/i18n/hr.po | 10 +- pos_order_load/i18n/hr_HR.po | 13 ++- pos_order_load/i18n/hu.po | 7 +- pos_order_load/i18n/id.po | 7 +- pos_order_load/i18n/it.po | 7 +- pos_order_load/i18n/ja.po | 7 +- pos_order_load/i18n/ko.po | 7 +- pos_order_load/i18n/lo.po | 7 +- pos_order_load/i18n/lt.po | 10 +- pos_order_load/i18n/lt_LT.po | 13 ++- pos_order_load/i18n/lv.po | 10 +- pos_order_load/i18n/mk.po | 7 +- pos_order_load/i18n/mn.po | 7 +- pos_order_load/i18n/nb.po | 10 +- pos_order_load/i18n/nb_NO.po | 10 +- pos_order_load/i18n/nl.po | 7 +- pos_order_load/i18n/nl_BE.po | 10 +- pos_order_load/i18n/nl_NL.po | 10 +- pos_order_load/i18n/pl.po | 10 +- pos_order_load/i18n/pos_order_load.pot | 139 +++++++++++++++++++++++++ pos_order_load/i18n/pt.po | 7 +- pos_order_load/i18n/pt_BR.po | 13 ++- pos_order_load/i18n/pt_PT.po | 10 +- pos_order_load/i18n/ro.po | 10 +- pos_order_load/i18n/ru.po | 11 +- pos_order_load/i18n/sk.po | 7 +- pos_order_load/i18n/sl.po | 13 ++- pos_order_load/i18n/sr.po | 10 +- pos_order_load/i18n/sr@latin.po | 13 ++- pos_order_load/i18n/sv.po | 7 +- pos_order_load/i18n/th.po | 7 +- pos_order_load/i18n/tr.po | 7 +- pos_order_load/i18n/tr_TR.po | 10 +- pos_order_load/i18n/uk.po | 10 +- pos_order_load/i18n/vi.po | 7 +- pos_order_load/i18n/vi_VN.po | 10 +- pos_order_load/i18n/zh_CN.po | 10 +- pos_order_load/i18n/zh_TW.po | 10 +- 73 files changed, 528 insertions(+), 267 deletions(-) create mode 100644 pos_order_load/i18n/pos_order_load.pot diff --git a/pos_order_load/i18n/am.po b/pos_order_load/i18n/am.po index e5e52bdf..2daf1442 100644 --- a/pos_order_load/i18n/am.po +++ b/pos_order_load/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ar.po b/pos_order_load/i18n/ar.po index e20701f5..92671e36 100644 --- a/pos_order_load/i18n/ar.po +++ b/pos_order_load/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/bg.po b/pos_order_load/i18n/bg.po index a66a2fc0..a949341e 100644 --- a/pos_order_load/i18n/bg.po +++ b/pos_order_load/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Kaloyan Naumov , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Kaloyan Naumov , 2016\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" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/bs.po b/pos_order_load/i18n/bs.po index 69f0996e..e394924e 100644 --- a/pos_order_load/i18n/bs.po +++ b/pos_order_load/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ca.po b/pos_order_load/i18n/ca.po index a87a0c92..7b62ad33 100644 --- a/pos_order_load/i18n/ca.po +++ b/pos_order_load/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-04-29 00:49+0000\n" "Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ca_ES.po b/pos_order_load/i18n/ca_ES.po index 2b982ae1..d06a214c 100644 --- a/pos_order_load/i18n/ca_ES.po +++ b/pos_order_load/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\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" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/cs.po b/pos_order_load/i18n/cs.po index 3cf089c4..b083271c 100644 --- a/pos_order_load/i18n/cs.po +++ b/pos_order_load/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/da.po b/pos_order_load/i18n/da.po index cf4627bf..1e620129 100644 --- a/pos_order_load/i18n/da.po +++ b/pos_order_load/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/de.po b/pos_order_load/i18n/de.po index 6d27a19f..d796cd05 100644 --- a/pos_order_load/i18n/de.po +++ b/pos_order_load/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-01-21 05:04+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "Gesamtbetrag" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/el_GR.po b/pos_order_load/i18n/el_GR.po index a382ab04..19a3ff99 100644 --- a/pos_order_load/i18n/el_GR.po +++ b/pos_order_load/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Kostas Goutoudis , 2016 # OCA Transbot , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\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" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/en_AU.po b/pos_order_load/i18n/en_AU.po index a4787bc2..366baa87 100644 --- a/pos_order_load/i18n/en_AU.po +++ b/pos_order_load/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\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" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/en_GB.po b/pos_order_load/i18n/en_GB.po index 08ac8963..fcc5c392 100644 --- a/pos_order_load/i18n/en_GB.po +++ b/pos_order_load/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-08-29 01:16+0000\n" "PO-Revision-Date: 2017-08-29 01:16+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "Total Amount" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es.po b/pos_order_load/i18n/es.po index a39e2404..94ade30a 100644 --- a/pos_order_load/i18n/es.po +++ b/pos_order_load/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Janire Olagibel , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: Janire Olagibel , 2016\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" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -130,13 +130,15 @@ msgstr "Importe total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" " * " msgstr "" -"No es posible cargar algunas líneas de pedido porque los productos no están disponibles en la caché del TPV.\n" +"No es posible cargar algunas líneas de pedido porque los productos no están " +"disponibles en la caché del TPV.\n" "Por favor, compruebe las líneas :" #. module: pos_order_load diff --git a/pos_order_load/i18n/es_AR.po b/pos_order_load/i18n/es_AR.po index eb33e086..8ad30eb1 100644 --- a/pos_order_load/i18n/es_AR.po +++ b/pos_order_load/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\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" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CL.po b/pos_order_load/i18n/es_CL.po index fb4847e8..7eaa0ae7 100644 --- a/pos_order_load/i18n/es_CL.po +++ b/pos_order_load/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\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" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CO.po b/pos_order_load/i18n/es_CO.po index 4e3327b6..a1f2b8ef 100644 --- a/pos_order_load/i18n/es_CO.po +++ b/pos_order_load/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\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" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CR.po b/pos_order_load/i18n/es_CR.po index ed6aea1e..0471c0a1 100644 --- a/pos_order_load/i18n/es_CR.po +++ b/pos_order_load/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_DO.po b/pos_order_load/i18n/es_DO.po index f5221e9e..788109dd 100644 --- a/pos_order_load/i18n/es_DO.po +++ b/pos_order_load/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\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" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_EC.po b/pos_order_load/i18n/es_EC.po index 770a7af3..b5799cc5 100644 --- a/pos_order_load/i18n/es_EC.po +++ b/pos_order_load/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_ES.po b/pos_order_load/i18n/es_ES.po index 222b3445..b80ee5e3 100644 --- a/pos_order_load/i18n/es_ES.po +++ b/pos_order_load/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\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" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_MX.po b/pos_order_load/i18n/es_MX.po index b1116ad8..41b3c5ce 100644 --- a/pos_order_load/i18n/es_MX.po +++ b/pos_order_load/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_PY.po b/pos_order_load/i18n/es_PY.po index fdd0fea5..ce43f527 100644 --- a/pos_order_load/i18n/es_PY.po +++ b/pos_order_load/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\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" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_VE.po b/pos_order_load/i18n/es_VE.po index d8b63daa..34e68adf 100644 --- a/pos_order_load/i18n/es_VE.po +++ b/pos_order_load/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\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" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/et.po b/pos_order_load/i18n/et.po index e2698235..a8b7a5bc 100644 --- a/pos_order_load/i18n/et.po +++ b/pos_order_load/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/eu.po b/pos_order_load/i18n/eu.po index 0615598e..99bcb316 100644 --- a/pos_order_load/i18n/eu.po +++ b/pos_order_load/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/eu_ES.po b/pos_order_load/i18n/eu_ES.po index 2c5ee8ab..ce52ebc3 100644 --- a/pos_order_load/i18n/eu_ES.po +++ b/pos_order_load/i18n/eu_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # oihane , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: oihane , 2016\n" -"Language-Team: Basque (Spain) (https://www.transifex.com/oca/teams/23907/eu_ES/)\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" -"Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fa.po b/pos_order_load/i18n/fa.po index e13b5349..718dd0b4 100644 --- a/pos_order_load/i18n/fa.po +++ b/pos_order_load/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fi.po b/pos_order_load/i18n/fi.po index 5caff806..ba00b030 100644 --- a/pos_order_load/i18n/fi.po +++ b/pos_order_load/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Jarmo Kortetjärvi , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-02-11 04:29+0000\n" "Last-Translator: Jarmo Kortetjärvi , 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" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr.po b/pos_order_load/i18n/fr.po index 38e4c6d3..82aa1743 100644 --- a/pos_order_load/i18n/fr.po +++ b/pos_order_load/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -115,8 +115,8 @@ msgid "" "This operation will save the current order in a draft state. You'll have to " "mark it as paid after." msgstr "" -"Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous" -" devrez la marquer comme payée ultérieurement" +"Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous " +"devrez la marquer comme payée ultérieurement" #. module: pos_order_load #. openerp-web @@ -130,13 +130,15 @@ msgstr "Montant Total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order 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 de ventes parce que les produits ne sont pas disponibles dans le cache du point de vente.\n" +"Impossible de charger certaines lignes de ventes parce que les produits ne " +"sont pas disponibles dans le cache du point de vente.\n" "\n" "Veuillez vérifier ces lignes :\n" "\n" diff --git a/pos_order_load/i18n/fr_CA.po b/pos_order_load/i18n/fr_CA.po index 95c8f5f7..2c800cb9 100644 --- a/pos_order_load/i18n/fr_CA.po +++ b/pos_order_load/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\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" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr_CH.po b/pos_order_load/i18n/fr_CH.po index 0e2ae462..431bb569 100644 --- a/pos_order_load/i18n/fr_CH.po +++ b/pos_order_load/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "Montant total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr_FR.po b/pos_order_load/i18n/fr_FR.po index bee80942..d08226fc 100644 --- a/pos_order_load/i18n/fr_FR.po +++ b/pos_order_load/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Mohamed HABOU , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Mohamed HABOU , 2016\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\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" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/gl.po b/pos_order_load/i18n/gl.po index b6c0d613..02639162 100644 --- a/pos_order_load/i18n/gl.po +++ b/pos_order_load/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # César Castro Cruz , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: César Castro Cruz , 2016\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" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/he.po b/pos_order_load/i18n/he.po index b639da99..70f9c1ee 100644 --- a/pos_order_load/i18n/he.po +++ b/pos_order_load/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hi.po b/pos_order_load/i18n/hi.po index 093cc4f6..b4878f48 100644 --- a/pos_order_load/i18n/hi.po +++ b/pos_order_load/i18n/hi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hr.po b/pos_order_load/i18n/hr.po index 30c7819c..69a40fce 100644 --- a/pos_order_load/i18n/hr.po +++ b/pos_order_load/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Ana-Maria Olujić , 2016 @@ -14,11 +14,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Bole , 2016\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: pos_order_load #. openerp-web @@ -126,7 +127,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hr_HR.po b/pos_order_load/i18n/hr_HR.po index 8eb31930..fcd3295e 100644 --- a/pos_order_load/i18n/hr_HR.po +++ b/pos_order_load/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Bole , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_HR\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: pos_order_load #. openerp-web @@ -124,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hu.po b/pos_order_load/i18n/hu.po index d1f575db..9fc0a494 100644 --- a/pos_order_load/i18n/hu.po +++ b/pos_order_load/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/id.po b/pos_order_load/i18n/id.po index 391888d8..75db7c69 100644 --- a/pos_order_load/i18n/id.po +++ b/pos_order_load/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/it.po b/pos_order_load/i18n/it.po index bfaf4324..985a4576 100644 --- a/pos_order_load/i18n/it.po +++ b/pos_order_load/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Paolo Valier , 2016 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Andrea Cometa , 2016\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -126,7 +126,8 @@ msgstr "Importo Totale" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ja.po b/pos_order_load/i18n/ja.po index 69bd4711..6bff8253 100644 --- a/pos_order_load/i18n/ja.po +++ b/pos_order_load/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ko.po b/pos_order_load/i18n/ko.po index 96d47c63..a2160aac 100644 --- a/pos_order_load/i18n/ko.po +++ b/pos_order_load/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lo.po b/pos_order_load/i18n/lo.po index eeb5a82a..803c5ca7 100644 --- a/pos_order_load/i18n/lo.po +++ b/pos_order_load/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lt.po b/pos_order_load/i18n/lt.po index 8a7eaaf3..4732fc07 100644 --- a/pos_order_load/i18n/lt.po +++ b/pos_order_load/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lt_LT.po b/pos_order_load/i18n/lt_LT.po index ee915761..ee36d268 100644 --- a/pos_order_load/i18n/lt_LT.po +++ b/pos_order_load/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Arminas Grigonis , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Arminas Grigonis , 2016\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\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" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lv.po b/pos_order_load/i18n/lv.po index 74c980a2..1da51632 100644 --- a/pos_order_load/i18n/lv.po +++ b/pos_order_load/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/mk.po b/pos_order_load/i18n/mk.po index 37ed7132..37788be9 100644 --- a/pos_order_load/i18n/mk.po +++ b/pos_order_load/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/mn.po b/pos_order_load/i18n/mn.po index fffd01c3..66004115 100644 --- a/pos_order_load/i18n/mn.po +++ b/pos_order_load/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nb.po b/pos_order_load/i18n/nb.po index 8558a50c..b10083a8 100644 --- a/pos_order_load/i18n/nb.po +++ b/pos_order_load/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nb_NO.po b/pos_order_load/i18n/nb_NO.po index 506ea005..226d25fb 100644 --- a/pos_order_load/i18n/nb_NO.po +++ b/pos_order_load/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Imre Kristoffer Eilertsen , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\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" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "Totalsum" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl.po b/pos_order_load/i18n/nl.po index 0ca4a88a..ef4192c7 100644 --- a/pos_order_load/i18n/nl.po +++ b/pos_order_load/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Erwin van der Ploeg , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Erwin van der Ploeg , 2016\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "Totaalbedrag" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl_BE.po b/pos_order_load/i18n/nl_BE.po index bbedd336..3e28ff57 100644 --- a/pos_order_load/i18n/nl_BE.po +++ b/pos_order_load/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl_NL.po b/pos_order_load/i18n/nl_NL.po index 307b760b..2f333831 100644 --- a/pos_order_load/i18n/nl_NL.po +++ b/pos_order_load/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-08-29 01:16+0000\n" "PO-Revision-Date: 2017-08-29 01:16+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pl.po b/pos_order_load/i18n/pl.po index 3c6dadd6..1e5dbde8 100644 --- a/pos_order_load/i18n/pl.po +++ b/pos_order_load/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pos_order_load.pot b/pos_order_load/i18n/pos_order_load.pot new file mode 100644 index 00000000..39f28c73 --- /dev/null +++ b/pos_order_load/i18n/pos_order_load.pot @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * pos_order_load +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 +#, python-format +msgid "Can not execute this action because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 +#, python-format +msgid "Can not load the Selected Order because the POS is currently offline" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 +#, python-format +msgid "Connection error" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 +#, python-format +msgid "Customer" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 +#, python-format +msgid "Load Draft Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 +#, python-format +msgid "Order" +msgstr "" + +#. module: pos_order_load +#: model:ir.model,name:pos_order_load.model_pos_order +msgid "Point of Sale" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 +#, python-format +msgid "Save Current Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 +#, python-format +msgid "Save The current Order ?" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 +#, python-format +msgid "Search Orders" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 +#, python-format +msgid "Select Order" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 +#, python-format +msgid "This operation will save the current order in a draft state. You'll have to mark it as paid after." +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 +#, python-format +msgid "Total Amount" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 +#, python-format +msgid "Unable to load some order lines because the products are not available in the POS cache.\n" +"\n" +"Please check that lines :\n" +"\n" +" * " +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 +#, python-format +msgid "Unknown Products" +msgstr "" + +#. module: pos_order_load +#. openerp-web +#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 +#, python-format +msgid "Validate" +msgstr "" + diff --git a/pos_order_load/i18n/pt.po b/pos_order_load/i18n/pt.po index 0b17ee0d..c34f759c 100644 --- a/pos_order_load/i18n/pt.po +++ b/pos_order_load/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pt_BR.po b/pos_order_load/i18n/pt_BR.po index 57434552..b2aafe03 100644 --- a/pos_order_load/i18n/pt_BR.po +++ b/pos_order_load/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Claudio Araujo Santos , 2016 @@ -11,12 +11,14 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Claudio Araujo Santos , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Last-Translator: Claudio Araujo Santos , " +"2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,7 +127,8 @@ msgstr "Valor total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pt_PT.po b/pos_order_load/i18n/pt_PT.po index 08b7b79e..02afd15b 100644 --- a/pos_order_load/i18n/pt_PT.po +++ b/pos_order_load/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Pedro Castro Silva , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-15 03:43+0000\n" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: Pedro Castro Silva , 2016\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ro.po b/pos_order_load/i18n/ro.po index 05be9597..d8a0516b 100644 --- a/pos_order_load/i18n/ro.po +++ b/pos_order_load/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ru.po b/pos_order_load/i18n/ru.po index 7b125d6f..6775d0b1 100644 --- a/pos_order_load/i18n/ru.po +++ b/pos_order_load/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Victor Safronovich , 2017 @@ -13,11 +13,13 @@ msgstr "" "PO-Revision-Date: 2017-05-01 20:52+0000\n" "Last-Translator: Victor Safronovich , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" #. module: pos_order_load #. openerp-web @@ -125,7 +127,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sk.po b/pos_order_load/i18n/sk.po index cadc397a..0e5ac3ef 100644 --- a/pos_order_load/i18n/sk.po +++ b/pos_order_load/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # gebri , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: gebri , 2016\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" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sl.po b/pos_order_load/i18n/sl.po index 9be1e3f3..92e09a2f 100644 --- a/pos_order_load/i18n/sl.po +++ b/pos_order_load/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Matjaž Mozetič , 2016 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Matjaž Mozetič , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: pos_order_load #. openerp-web @@ -127,13 +128,15 @@ msgstr "Skupni znesek" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order 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 v predpomnilniku proizvodi niso na voljo.\n" +"Nekaterih postavk naloga ni bilo mogoče naložiti, ker v predpomnilniku " +"proizvodi niso na voljo.\n" "\n" "Preverite te postavke :\n" "\n" diff --git a/pos_order_load/i18n/sr.po b/pos_order_load/i18n/sr.po index 3c5f3581..5edcb32a 100644 --- a/pos_order_load/i18n/sr.po +++ b/pos_order_load/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sr@latin.po b/pos_order_load/i18n/sr@latin.po index d48cbf3b..2c21c9a9 100644 --- a/pos_order_load/i18n/sr@latin.po +++ b/pos_order_load/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\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" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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_order_load #. openerp-web @@ -124,7 +126,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sv.po b/pos_order_load/i18n/sv.po index a33705d4..66459ef4 100644 --- a/pos_order_load/i18n/sv.po +++ b/pos_order_load/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/th.po b/pos_order_load/i18n/th.po index 2a3eadd8..0b5fe7ed 100644 --- a/pos_order_load/i18n/th.po +++ b/pos_order_load/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/tr.po b/pos_order_load/i18n/tr.po index 5a7687b8..67747e71 100644 --- a/pos_order_load/i18n/tr.po +++ b/pos_order_load/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Ivan BARAYEV , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-01-07 04:35+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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/tr_TR.po b/pos_order_load/i18n/tr_TR.po index 3827a142..195562d7 100644 --- a/pos_order_load/i18n/tr_TR.po +++ b/pos_order_load/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-31 05:41+0000\n" "PO-Revision-Date: 2016-12-31 05:41+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/uk.po b/pos_order_load/i18n/uk.po index 4c0cbc0c..b1d1208a 100644 --- a/pos_order_load/i18n/uk.po +++ b/pos_order_load/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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_order_load #. openerp-web @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/vi.po b/pos_order_load/i18n/vi.po index e5136c60..1a39d4a8 100644 --- a/pos_order_load/i18n/vi.po +++ b/pos_order_load/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +124,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/vi_VN.po b/pos_order_load/i18n/vi_VN.po index fe3bcc15..38547539 100644 --- a/pos_order_load/i18n/vi_VN.po +++ b/pos_order_load/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\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" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/zh_CN.po b/pos_order_load/i18n/zh_CN.po index b1bd65e6..78086125 100644 --- a/pos_order_load/i18n/zh_CN.po +++ b/pos_order_load/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Jeffery CHEN , 2016 @@ -13,11 +13,12 @@ msgstr "" "POT-Creation-Date: 2017-04-29 00:49+0000\n" "PO-Revision-Date: 2017-04-29 00:49+0000\n" "Last-Translator: liAnGjiA , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -126,7 +127,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/zh_TW.po b/pos_order_load/i18n/zh_TW.po index aa3fb2b0..2ad115ec 100644 --- a/pos_order_load/i18n/zh_TW.po +++ b/pos_order_load/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,7 +125,8 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in the POS cache.\n" +"Unable to load some order lines because the products are not available in " +"the POS cache.\n" "\n" "Please check that lines :\n" "\n" From 72f986750d5d48e60a50fa389beb05691a125ada Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 3 Apr 2019 03:12:13 +0000 Subject: [PATCH 19/20] [ADD] icon.png --- pos_order_load/static/description/icon.png | Bin 0 -> 9455 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pos_order_load/static/description/icon.png diff --git a/pos_order_load/static/description/icon.png b/pos_order_load/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 8eae59cdf3c76751f73777d829df42c83a86e31c Mon Sep 17 00:00:00 2001 From: Cyril VINH-TUNG Date: Fri, 24 Jul 2020 17:33:02 -1000 Subject: [PATCH 20/20] [MIG] pos_order_load: Migration to 12.0 --- .../{__openerp__.py => __manifest__.py} | 2 +- pos_order_load/i18n/am.po | 7 +- pos_order_load/i18n/ar.po | 10 +- pos_order_load/i18n/bg.po | 7 +- pos_order_load/i18n/bs.po | 10 +- pos_order_load/i18n/ca.po | 7 +- pos_order_load/i18n/ca_ES.po | 10 +- pos_order_load/i18n/cs.po | 7 +- pos_order_load/i18n/da.po | 7 +- pos_order_load/i18n/de.po | 7 +- pos_order_load/i18n/el_GR.po | 10 +- pos_order_load/i18n/en_AU.po | 10 +- pos_order_load/i18n/en_GB.po | 10 +- pos_order_load/i18n/es.po | 10 +- pos_order_load/i18n/es_AR.po | 10 +- pos_order_load/i18n/es_CL.po | 10 +- pos_order_load/i18n/es_CO.po | 10 +- pos_order_load/i18n/es_CR.po | 10 +- pos_order_load/i18n/es_DO.po | 10 +- pos_order_load/i18n/es_EC.po | 10 +- pos_order_load/i18n/es_ES.po | 10 +- pos_order_load/i18n/es_MX.po | 10 +- pos_order_load/i18n/es_PY.po | 10 +- pos_order_load/i18n/es_VE.po | 10 +- pos_order_load/i18n/et.po | 7 +- pos_order_load/i18n/eu.po | 7 +- pos_order_load/i18n/eu_ES.po | 10 +- pos_order_load/i18n/fa.po | 7 +- pos_order_load/i18n/fi.po | 7 +- pos_order_load/i18n/fr.po | 14 +- pos_order_load/i18n/fr_CA.po | 10 +- pos_order_load/i18n/fr_CH.po | 10 +- pos_order_load/i18n/fr_FR.po | 10 +- pos_order_load/i18n/gl.po | 7 +- pos_order_load/i18n/he.po | 7 +- pos_order_load/i18n/hi.po | 7 +- pos_order_load/i18n/hr.po | 10 +- pos_order_load/i18n/hr_HR.po | 13 +- pos_order_load/i18n/hu.po | 7 +- pos_order_load/i18n/id.po | 7 +- pos_order_load/i18n/it.po | 7 +- pos_order_load/i18n/ja.po | 7 +- pos_order_load/i18n/ko.po | 7 +- pos_order_load/i18n/lo.po | 7 +- pos_order_load/i18n/lt.po | 10 +- pos_order_load/i18n/lt_LT.po | 13 +- pos_order_load/i18n/lv.po | 10 +- pos_order_load/i18n/mk.po | 7 +- pos_order_load/i18n/mn.po | 7 +- pos_order_load/i18n/nb.po | 10 +- pos_order_load/i18n/nb_NO.po | 10 +- pos_order_load/i18n/nl.po | 7 +- pos_order_load/i18n/nl_BE.po | 10 +- pos_order_load/i18n/nl_NL.po | 10 +- pos_order_load/i18n/pl.po | 10 +- pos_order_load/i18n/pos_order_load.pot | 139 ------- pos_order_load/i18n/pt.po | 7 +- pos_order_load/i18n/pt_BR.po | 13 +- pos_order_load/i18n/pt_PT.po | 10 +- pos_order_load/i18n/ro.po | 10 +- pos_order_load/i18n/ru.po | 11 +- pos_order_load/i18n/sk.po | 7 +- pos_order_load/i18n/sl.po | 13 +- pos_order_load/i18n/sr.po | 10 +- pos_order_load/i18n/sr@latin.po | 13 +- pos_order_load/i18n/sv.po | 7 +- pos_order_load/i18n/th.po | 7 +- pos_order_load/i18n/tr.po | 7 +- pos_order_load/i18n/tr_TR.po | 10 +- pos_order_load/i18n/uk.po | 10 +- pos_order_load/i18n/vi.po | 7 +- pos_order_load/i18n/vi_VN.po | 10 +- pos_order_load/i18n/zh_CN.po | 10 +- pos_order_load/i18n/zh_TW.po | 10 +- pos_order_load/models/pos_order.py | 2 +- pos_order_load/static/description/icon.png | Bin 9455 -> 0 bytes .../static/src/js/pos_order_load.js | 338 ++++++++++-------- .../static/src/xml/pos_order_load.xml | 6 - pos_order_load/view/pos_order_load.xml | 28 +- 79 files changed, 461 insertions(+), 710 deletions(-) rename pos_order_load/{__openerp__.py => __manifest__.py} (98%) delete mode 100644 pos_order_load/i18n/pos_order_load.pot delete mode 100644 pos_order_load/static/description/icon.png diff --git a/pos_order_load/__openerp__.py b/pos_order_load/__manifest__.py similarity index 98% rename from pos_order_load/__openerp__.py rename to pos_order_load/__manifest__.py index 4309e777..eeb2440b 100644 --- a/pos_order_load/__openerp__.py +++ b/pos_order_load/__manifest__.py @@ -22,7 +22,7 @@ { 'name': 'POS Order Load and Save', - 'version': '8.0.1.0.0', + 'version': '12.0.1.0.0', 'author': 'Akretion,GRAP,Odoo Community Association (OCA)', 'category': 'Point Of Sale', 'license': 'AGPL-3', diff --git a/pos_order_load/i18n/am.po b/pos_order_load/i18n/am.po index 2daf1442..e5e52bdf 100644 --- a/pos_order_load/i18n/am.po +++ b/pos_order_load/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ar.po b/pos_order_load/i18n/ar.po index 92671e36..e20701f5 100644 --- a/pos_order_load/i18n/ar.po +++ b/pos_order_load/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/bg.po b/pos_order_load/i18n/bg.po index a949341e..a66a2fc0 100644 --- a/pos_order_load/i18n/bg.po +++ b/pos_order_load/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Kaloyan Naumov , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Kaloyan Naumov , 2016\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" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/bs.po b/pos_order_load/i18n/bs.po index e394924e..69f0996e 100644 --- a/pos_order_load/i18n/bs.po +++ b/pos_order_load/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ca.po b/pos_order_load/i18n/ca.po index 7b62ad33..a87a0c92 100644 --- a/pos_order_load/i18n/ca.po +++ b/pos_order_load/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-04-29 00:49+0000\n" "Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ca_ES.po b/pos_order_load/i18n/ca_ES.po index d06a214c..2b982ae1 100644 --- a/pos_order_load/i18n/ca_ES.po +++ b/pos_order_load/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" -"ca_ES/)\n" -"Language: ca_ES\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/ca_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/cs.po b/pos_order_load/i18n/cs.po index b083271c..3cf089c4 100644 --- a/pos_order_load/i18n/cs.po +++ b/pos_order_load/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/da.po b/pos_order_load/i18n/da.po index 1e620129..cf4627bf 100644 --- a/pos_order_load/i18n/da.po +++ b/pos_order_load/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/de.po b/pos_order_load/i18n/de.po index d796cd05..6d27a19f 100644 --- a/pos_order_load/i18n/de.po +++ b/pos_order_load/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-01-21 05:04+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "Gesamtbetrag" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/el_GR.po b/pos_order_load/i18n/el_GR.po index 19a3ff99..a382ab04 100644 --- a/pos_order_load/i18n/el_GR.po +++ b/pos_order_load/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Kostas Goutoudis , 2016 # OCA Transbot , 2016 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" -"el_GR/)\n" -"Language: el_GR\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -126,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/en_AU.po b/pos_order_load/i18n/en_AU.po index 366baa87..a4787bc2 100644 --- a/pos_order_load/i18n/en_AU.po +++ b/pos_order_load/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (Australia) (https://www.transifex.com/oca/" -"teams/23907/en_AU/)\n" -"Language: en_AU\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/en_GB.po b/pos_order_load/i18n/en_GB.po index fcc5c392..08ac8963 100644 --- a/pos_order_load/i18n/en_GB.po +++ b/pos_order_load/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2017-08-29 01:16+0000\n" "PO-Revision-Date: 2017-08-29 01:16+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" -"teams/23907/en_GB/)\n" -"Language: en_GB\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "Total Amount" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es.po b/pos_order_load/i18n/es.po index 94ade30a..a39e2404 100644 --- a/pos_order_load/i18n/es.po +++ b/pos_order_load/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Janire Olagibel , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: Janire Olagibel , 2016\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" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -130,15 +130,13 @@ msgstr "Importe total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" " * " msgstr "" -"No es posible cargar algunas líneas de pedido porque los productos no están " -"disponibles en la caché del TPV.\n" +"No es posible cargar algunas líneas de pedido porque los productos no están disponibles en la caché del TPV.\n" "Por favor, compruebe las líneas :" #. module: pos_order_load diff --git a/pos_order_load/i18n/es_AR.po b/pos_order_load/i18n/es_AR.po index 8ad30eb1..eb33e086 100644 --- a/pos_order_load/i18n/es_AR.po +++ b/pos_order_load/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" -"teams/23907/es_AR/)\n" -"Language: es_AR\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CL.po b/pos_order_load/i18n/es_CL.po index 7eaa0ae7..fb4847e8 100644 --- a/pos_order_load/i18n/es_CL.po +++ b/pos_order_load/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" -"es_CL/)\n" -"Language: es_CL\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CO.po b/pos_order_load/i18n/es_CO.po index a1f2b8ef..4e3327b6 100644 --- a/pos_order_load/i18n/es_CO.po +++ b/pos_order_load/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" -"es_CO/)\n" -"Language: es_CO\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_CR.po b/pos_order_load/i18n/es_CR.po index 0471c0a1..ed6aea1e 100644 --- a/pos_order_load/i18n/es_CR.po +++ b/pos_order_load/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" -"teams/23907/es_CR/)\n" -"Language: es_CR\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_DO.po b/pos_order_load/i18n/es_DO.po index 788109dd..f5221e9e 100644 --- a/pos_order_load/i18n/es_DO.po +++ b/pos_order_load/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" -"teams/23907/es_DO/)\n" -"Language: es_DO\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_EC.po b/pos_order_load/i18n/es_EC.po index b5799cc5..770a7af3 100644 --- a/pos_order_load/i18n/es_EC.po +++ b/pos_order_load/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" -"es_EC/)\n" -"Language: es_EC\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_ES.po b/pos_order_load/i18n/es_ES.po index b80ee5e3..222b3445 100644 --- a/pos_order_load/i18n/es_ES.po +++ b/pos_order_load/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" -"es_ES/)\n" -"Language: es_ES\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_MX.po b/pos_order_load/i18n/es_MX.po index 41b3c5ce..b1116ad8 100644 --- a/pos_order_load/i18n/es_MX.po +++ b/pos_order_load/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" -"es_MX/)\n" -"Language: es_MX\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_PY.po b/pos_order_load/i18n/es_PY.po index ce43f527..fdd0fea5 100644 --- a/pos_order_load/i18n/es_PY.po +++ b/pos_order_load/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" -"es_PY/)\n" -"Language: es_PY\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/es_VE.po b/pos_order_load/i18n/es_VE.po index 34e68adf..d8b63daa 100644 --- a/pos_order_load/i18n/es_VE.po +++ b/pos_order_load/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" -"teams/23907/es_VE/)\n" -"Language: es_VE\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/et.po b/pos_order_load/i18n/et.po index a8b7a5bc..e2698235 100644 --- a/pos_order_load/i18n/et.po +++ b/pos_order_load/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" -"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/eu.po b/pos_order_load/i18n/eu.po index 99bcb316..0615598e 100644 --- a/pos_order_load/i18n/eu.po +++ b/pos_order_load/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/eu_ES.po b/pos_order_load/i18n/eu_ES.po index ce52ebc3..2c5ee8ab 100644 --- a/pos_order_load/i18n/eu_ES.po +++ b/pos_order_load/i18n/eu_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # oihane , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: oihane , 2016\n" -"Language-Team: Basque (Spain) (https://www.transifex.com/oca/teams/23907/" -"eu_ES/)\n" -"Language: eu_ES\n" +"Language-Team: Basque (Spain) (https://www.transifex.com/oca/teams/23907/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fa.po b/pos_order_load/i18n/fa.po index 718dd0b4..e13b5349 100644 --- a/pos_order_load/i18n/fa.po +++ b/pos_order_load/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fi.po b/pos_order_load/i18n/fi.po index ba00b030..5caff806 100644 --- a/pos_order_load/i18n/fi.po +++ b/pos_order_load/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Jarmo Kortetjärvi , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-02-11 04:29+0000\n" "Last-Translator: Jarmo Kortetjärvi , 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" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr.po b/pos_order_load/i18n/fr.po index 82aa1743..38e4c6d3 100644 --- a/pos_order_load/i18n/fr.po +++ b/pos_order_load/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -115,8 +115,8 @@ msgid "" "This operation will save the current order in a draft state. You'll have to " "mark it as paid after." msgstr "" -"Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous " -"devrez la marquer comme payée ultérieurement" +"Cette opération va sauvegarder la vente en cours à l'état de brouillon. Vous" +" devrez la marquer comme payée ultérieurement" #. module: pos_order_load #. openerp-web @@ -130,15 +130,13 @@ msgstr "Montant Total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order 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 de ventes parce que les produits ne " -"sont pas disponibles dans le cache du point de vente.\n" +"Impossible de charger certaines lignes de ventes parce que les produits ne sont pas disponibles dans le cache du point de vente.\n" "\n" "Veuillez vérifier ces lignes :\n" "\n" diff --git a/pos_order_load/i18n/fr_CA.po b/pos_order_load/i18n/fr_CA.po index 2c800cb9..95c8f5f7 100644 --- a/pos_order_load/i18n/fr_CA.po +++ b/pos_order_load/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" -"fr_CA/)\n" -"Language: fr_CA\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr_CH.po b/pos_order_load/i18n/fr_CH.po index 431bb569..0e2ae462 100644 --- a/pos_order_load/i18n/fr_CH.po +++ b/pos_order_load/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" -"teams/23907/fr_CH/)\n" -"Language: fr_CH\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "Montant total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/fr_FR.po b/pos_order_load/i18n/fr_FR.po index d08226fc..bee80942 100644 --- a/pos_order_load/i18n/fr_FR.po +++ b/pos_order_load/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Mohamed HABOU , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Mohamed HABOU , 2016\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" -"fr_FR/)\n" -"Language: fr_FR\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/gl.po b/pos_order_load/i18n/gl.po index 02639162..b6c0d613 100644 --- a/pos_order_load/i18n/gl.po +++ b/pos_order_load/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # César Castro Cruz , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: César Castro Cruz , 2016\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" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/he.po b/pos_order_load/i18n/he.po index 70f9c1ee..b639da99 100644 --- a/pos_order_load/i18n/he.po +++ b/pos_order_load/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hi.po b/pos_order_load/i18n/hi.po index b4878f48..093cc4f6 100644 --- a/pos_order_load/i18n/hi.po +++ b/pos_order_load/i18n/hi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hr.po b/pos_order_load/i18n/hr.po index 69a40fce..30c7819c 100644 --- a/pos_order_load/i18n/hr.po +++ b/pos_order_load/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Ana-Maria Olujić , 2016 @@ -14,12 +14,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Bole , 2016\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" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: pos_order_load #. openerp-web @@ -127,8 +126,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hr_HR.po b/pos_order_load/i18n/hr_HR.po index fcd3295e..8eb31930 100644 --- a/pos_order_load/i18n/hr_HR.po +++ b/pos_order_load/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Bole , 2016 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" -"hr_HR/)\n" -"Language: hr_HR\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: pos_order_load #. openerp-web @@ -126,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/hu.po b/pos_order_load/i18n/hu.po index 9fc0a494..d1f575db 100644 --- a/pos_order_load/i18n/hu.po +++ b/pos_order_load/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/id.po b/pos_order_load/i18n/id.po index 75db7c69..391888d8 100644 --- a/pos_order_load/i18n/id.po +++ b/pos_order_load/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/it.po b/pos_order_load/i18n/it.po index 985a4576..bfaf4324 100644 --- a/pos_order_load/i18n/it.po +++ b/pos_order_load/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Paolo Valier , 2016 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Andrea Cometa , 2016\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -126,8 +126,7 @@ msgstr "Importo Totale" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ja.po b/pos_order_load/i18n/ja.po index 6bff8253..69bd4711 100644 --- a/pos_order_load/i18n/ja.po +++ b/pos_order_load/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ko.po b/pos_order_load/i18n/ko.po index a2160aac..96d47c63 100644 --- a/pos_order_load/i18n/ko.po +++ b/pos_order_load/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lo.po b/pos_order_load/i18n/lo.po index 803c5ca7..eeb5a82a 100644 --- a/pos_order_load/i18n/lo.po +++ b/pos_order_load/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lt.po b/pos_order_load/i18n/lt.po index 4732fc07..8a7eaaf3 100644 --- a/pos_order_load/i18n/lt.po +++ b/pos_order_load/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lt_LT.po b/pos_order_load/i18n/lt_LT.po index ee36d268..ee915761 100644 --- a/pos_order_load/i18n/lt_LT.po +++ b/pos_order_load/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Arminas Grigonis , 2016 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Arminas Grigonis , 2016\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" -"teams/23907/lt_LT/)\n" -"Language: lt_LT\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/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" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -126,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/lv.po b/pos_order_load/i18n/lv.po index 1da51632..74c980a2 100644 --- a/pos_order_load/i18n/lv.po +++ b/pos_order_load/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/mk.po b/pos_order_load/i18n/mk.po index 37788be9..37ed7132 100644 --- a/pos_order_load/i18n/mk.po +++ b/pos_order_load/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" -"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/mn.po b/pos_order_load/i18n/mn.po index 66004115..fffd01c3 100644 --- a/pos_order_load/i18n/mn.po +++ b/pos_order_load/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" -"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nb.po b/pos_order_load/i18n/nb.po index b10083a8..8558a50c 100644 --- a/pos_order_load/i18n/nb.po +++ b/pos_order_load/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" -"nb/)\n" -"Language: nb\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nb_NO.po b/pos_order_load/i18n/nb_NO.po index 226d25fb..506ea005 100644 --- a/pos_order_load/i18n/nb_NO.po +++ b/pos_order_load/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Imre Kristoffer Eilertsen , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" -"teams/23907/nb_NO/)\n" -"Language: nb_NO\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "Totalsum" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl.po b/pos_order_load/i18n/nl.po index ef4192c7..0ca4a88a 100644 --- a/pos_order_load/i18n/nl.po +++ b/pos_order_load/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Erwin van der Ploeg , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Erwin van der Ploeg , 2016\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "Totaalbedrag" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl_BE.po b/pos_order_load/i18n/nl_BE.po index 3e28ff57..bbedd336 100644 --- a/pos_order_load/i18n/nl_BE.po +++ b/pos_order_load/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" -"nl_BE/)\n" -"Language: nl_BE\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/nl_NL.po b/pos_order_load/i18n/nl_NL.po index 2f333831..307b760b 100644 --- a/pos_order_load/i18n/nl_NL.po +++ b/pos_order_load/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Peter Hageman , 2017 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2017-08-29 01:16+0000\n" "PO-Revision-Date: 2017-08-29 01:16+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" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -126,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pl.po b/pos_order_load/i18n/pl.po index 1e5dbde8..3c6dadd6 100644 --- a/pos_order_load/i18n/pl.po +++ b/pos_order_load/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pos_order_load.pot b/pos_order_load/i18n/pos_order_load.pot deleted file mode 100644 index 39f28c73..00000000 --- a/pos_order_load/i18n/pos_order_load.pot +++ /dev/null @@ -1,139 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * pos_order_load -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:289 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:315 -#, python-format -msgid "Can not execute this action because the POS is currently offline" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:181 -#, python-format -msgid "Can not load the Selected Order because the POS is currently offline" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:28 -#, python-format -msgid "Cancel" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:180 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:288 -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:314 -#, python-format -msgid "Connection error" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:60 -#, python-format -msgid "Customer" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:5 -#, python-format -msgid "Load Draft Order" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:59 -#, python-format -msgid "Order" -msgstr "" - -#. module: pos_order_load -#: model:ir.model,name:pos_order_load.model_pos_order -msgid "Point of Sale" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:10 -#, python-format -msgid "Save Current Order" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:71 -#, python-format -msgid "Save The current Order ?" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:36 -#, python-format -msgid "Search Orders" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:40 -#, python-format -msgid "Select Order" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:72 -#, python-format -msgid "This operation will save the current order in a draft state. You'll have to mark it as paid after." -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:61 -#, python-format -msgid "Total Amount" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 -#, python-format -msgid "Unable to load some order lines because the products are not available in the POS cache.\n" -"\n" -"Please check that lines :\n" -"\n" -" * " -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/js/pos_order_load.js:266 -#, python-format -msgid "Unknown Products" -msgstr "" - -#. module: pos_order_load -#. openerp-web -#: code:addons/pos_order_load/static/src/xml/pos_order_load.xml:32 -#, python-format -msgid "Validate" -msgstr "" - diff --git a/pos_order_load/i18n/pt.po b/pos_order_load/i18n/pt.po index c34f759c..0b17ee0d 100644 --- a/pos_order_load/i18n/pt.po +++ b/pos_order_load/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pt_BR.po b/pos_order_load/i18n/pt_BR.po index b2aafe03..57434552 100644 --- a/pos_order_load/i18n/pt_BR.po +++ b/pos_order_load/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Claudio Araujo Santos , 2016 @@ -11,14 +11,12 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" -"Last-Translator: Claudio Araujo Santos , " -"2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\n" -"Language: pt_BR\n" +"Last-Translator: Claudio Araujo Santos , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -127,8 +125,7 @@ msgstr "Valor total" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/pt_PT.po b/pos_order_load/i18n/pt_PT.po index 02afd15b..08b7b79e 100644 --- a/pos_order_load/i18n/pt_PT.po +++ b/pos_order_load/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Pedro Castro Silva , 2016 @@ -12,12 +12,11 @@ msgstr "" "POT-Creation-Date: 2016-12-15 03:43+0000\n" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: Pedro Castro Silva , 2016\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" -"teams/23907/pt_PT/)\n" -"Language: pt_PT\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -126,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ro.po b/pos_order_load/i18n/ro.po index d8a0516b..05be9597 100644 --- a/pos_order_load/i18n/ro.po +++ b/pos_order_load/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/ru.po b/pos_order_load/i18n/ru.po index 6775d0b1..7b125d6f 100644 --- a/pos_order_load/i18n/ru.po +++ b/pos_order_load/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Victor Safronovich , 2017 @@ -13,13 +13,11 @@ msgstr "" "PO-Revision-Date: 2017-05-01 20:52+0000\n" "Last-Translator: Victor Safronovich , 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" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #. module: pos_order_load #. openerp-web @@ -127,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sk.po b/pos_order_load/i18n/sk.po index 0e5ac3ef..cadc397a 100644 --- a/pos_order_load/i18n/sk.po +++ b/pos_order_load/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # gebri , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-15 03:43+0000\n" "Last-Translator: gebri , 2016\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" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sl.po b/pos_order_load/i18n/sl.po index 92e09a2f..9be1e3f3 100644 --- a/pos_order_load/i18n/sl.po +++ b/pos_order_load/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Matjaž Mozetič , 2016 @@ -13,12 +13,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: Matjaž Mozetič , 2016\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" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: pos_order_load #. openerp-web @@ -128,15 +127,13 @@ msgstr "Skupni znesek" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order 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 v predpomnilniku " -"proizvodi niso na voljo.\n" +"Nekaterih postavk naloga ni bilo mogoče naložiti, ker v predpomnilniku proizvodi niso na voljo.\n" "\n" "Preverite te postavke :\n" "\n" diff --git a/pos_order_load/i18n/sr.po b/pos_order_load/i18n/sr.po index 5edcb32a..3c5f3581 100644 --- a/pos_order_load/i18n/sr.po +++ b/pos_order_load/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: sr\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_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sr@latin.po b/pos_order_load/i18n/sr@latin.po index 2c21c9a9..d48cbf3b 100644 --- a/pos_order_load/i18n/sr@latin.po +++ b/pos_order_load/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,14 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" -"sr@latin/)\n" -"Language: sr@latin\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/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" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -126,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/sv.po b/pos_order_load/i18n/sv.po index 66459ef4..a33705d4 100644 --- a/pos_order_load/i18n/sv.po +++ b/pos_order_load/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/th.po b/pos_order_load/i18n/th.po index 0b5fe7ed..2a3eadd8 100644 --- a/pos_order_load/i18n/th.po +++ b/pos_order_load/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/tr.po b/pos_order_load/i18n/tr.po index 67747e71..5a7687b8 100644 --- a/pos_order_load/i18n/tr.po +++ b/pos_order_load/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Ivan BARAYEV , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-01-07 04:35+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" +"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: pos_order_load @@ -125,8 +125,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/tr_TR.po b/pos_order_load/i18n/tr_TR.po index 195562d7..3827a142 100644 --- a/pos_order_load/i18n/tr_TR.po +++ b/pos_order_load/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-31 05:41+0000\n" "PO-Revision-Date: 2016-12-31 05:41+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" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/uk.po b/pos_order_load/i18n/uk.po index b1d1208a..4c0cbc0c 100644 --- a/pos_order_load/i18n/uk.po +++ b/pos_order_load/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,12 +12,11 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. module: pos_order_load #. openerp-web @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/vi.po b/pos_order_load/i18n/vi.po index 1a39d4a8..e5136c60 100644 --- a/pos_order_load/i18n/vi.po +++ b/pos_order_load/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\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" +"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -124,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/vi_VN.po b/pos_order_load/i18n/vi_VN.po index 38547539..fe3bcc15 100644 --- a/pos_order_load/i18n/vi_VN.po +++ b/pos_order_load/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" -"teams/23907/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/zh_CN.po b/pos_order_load/i18n/zh_CN.po index 78086125..b1bd65e6 100644 --- a/pos_order_load/i18n/zh_CN.po +++ b/pos_order_load/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 # Jeffery CHEN , 2016 @@ -13,12 +13,11 @@ msgstr "" "POT-Creation-Date: 2017-04-29 00:49+0000\n" "PO-Revision-Date: 2017-04-29 00:49+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" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -127,8 +126,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/i18n/zh_TW.po b/pos_order_load/i18n/zh_TW.po index 2ad115ec..aa3fb2b0 100644 --- a/pos_order_load/i18n/zh_TW.po +++ b/pos_order_load/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * pos_order_load -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,11 @@ msgstr "" "POT-Creation-Date: 2016-12-02 03:44+0000\n" "PO-Revision-Date: 2016-12-02 03:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" -"zh_TW/)\n" -"Language: zh_TW\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: pos_order_load @@ -125,8 +124,7 @@ msgstr "" #: code:addons/pos_order_load/static/src/js/pos_order_load.js:267 #, python-format msgid "" -"Unable to load some order lines because the products are not available in " -"the POS cache.\n" +"Unable to load some order lines because the products are not available in the POS cache.\n" "\n" "Please check that lines :\n" "\n" diff --git a/pos_order_load/models/pos_order.py b/pos_order_load/models/pos_order.py index 2b0b777a..fa7a1455 100644 --- a/pos_order_load/models/pos_order.py +++ b/pos_order_load/models/pos_order.py @@ -21,7 +21,7 @@ # ############################################################################## -from openerp import models, api +from odoo import models, api class PosOrder(models.Model): diff --git a/pos_order_load/static/description/icon.png b/pos_order_load/static/description/icon.png deleted file mode 100644 index 3a0328b516c4980e8e44cdb63fd945757ddd132d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js index 5cff51d9..7b84587d 100644 --- a/pos_order_load/static/src/js/pos_order_load.js +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -15,17 +15,32 @@ * along with this program. If not, see . *****************************************************************************/ -openerp.pos_order_load = function(instance, local) { - module = instance.point_of_sale; - var QWeb = instance.web.qweb; - var _t = instance.web._t; - var round_pr = instance.web.round_precision; +odoo.define('pos_order_load', function (require) { +"use strict"; + + var PosBaseWidget = require('point_of_sale.BaseWidget'); + var chrome = require('point_of_sale.chrome'); + var gui = require('point_of_sale.gui'); + var models = require('point_of_sale.models'); + var screens = require('point_of_sale.screens'); + var rpc = require('web.rpc'); + + var utils = require('web.utils'); + var round_pr = utils.round_precision; + + var core = require('web.core'); + var QWeb = core.qweb; + var _t = core._t; + /************************************************************************* Extend Model Order: - * Add getter and setter function for field 'order_id'; - */ - module.Order = module.Order.extend({ + * Add getter and setter function for field 'order_id'; + */ + + var _super_order = models.Order.prototype; + models.Order = models.Order.extend({ + set_order_id: function(id) { this.set({ @@ -41,35 +56,34 @@ openerp.pos_order_load = function(instance, local) { /************************************************************************* New Widget LoadButtonWidget: - * On click, display a new screen to select draft orders; - */ - module.LoadButtonWidget = module.PosBaseWidget.extend({ + * On click, display a new screen to select draft orders; + */ + var LoadButtonWidget = PosBaseWidget.extend({ template: 'LoadButtonWidget', renderElement: function() { var self = this; this._super(); this.$el.click(function(){ - var ss = self.pos.pos_widget.screen_selector; - ss.set_current_screen('orderlist'); + self.gui.show_screen('orderlist'); }); }, }); /************************************************************************* New Widget SaveButtonWidget: - * On click, save the current draft order; - */ - module.SaveButtonWidget = module.PosBaseWidget.extend({ + * On click, save the current draft order; + */ + var SaveButtonWidget = PosBaseWidget.extend({ template: 'SaveButtonWidget', renderElement: function() { var self = this; this._super(); this.$el.click(function(){ - self.pos.pos_widget.screen_selector.show_popup('confirm',{ - message: _t('Save The current Order ?'), - comment: _t('This operation will save the current order in a draft state. You\'ll have to mark it as paid after.'), + self.gui.show_popup('confirm',{ + 'title': _t('Save The current Order ?'), + 'body': _t('This operation will save the current order in a draft state. You\'ll have to mark it as paid after.'), confirm: function(){ var currentOrder = this.pos.get('selectedOrder'); this.pos.push_order(currentOrder); @@ -83,57 +97,52 @@ openerp.pos_order_load = function(instance, local) { /************************************************************************* Extend PosWidget: - * Create new screen; - * Add load and save button; - */ - module.PosWidget = module.PosWidget.extend({ + * Create new screen; + * Add load and save button; + */ + chrome.Chrome.include({ build_widgets: function() { this._super(); - // New Screen to select Draft Orders - this.orderlist_screen = new module.OrderListScreenWidget(this, {}); - this.orderlist_screen.appendTo(this.$('.screens')); - this.orderlist_screen.hide(); + this.load_button = new LoadButtonWidget(this, {}); + this.load_button.appendTo(this.$('div.order-empty')); - this.screen_selector.screen_set.orderlist = this.orderlist_screen; - - // Add buttons - this.load_button = new module.LoadButtonWidget(this,{}); - this.load_button.appendTo(this.pos_widget.$('li.orderline.empty')); - - this.save_button = new module.SaveButtonWidget(this,{}); + this.save_button = new SaveButtonWidget(this, {}); }, }); /************************************************************************* - Extend OrderWidget: - */ - module.OrderWidget = module.OrderWidget.extend({ + * Extend OrderWidget: + */ + screens.OrderWidget.include({ renderElement: function(scrollbottom){ this._super(scrollbottom); - if (this.pos_widget.load_button) { - this.pos_widget.load_button.appendTo( - this.pos_widget.$('li.orderline.empty') + if (this.chrome.load_button) { + this.chrome.load_button.appendTo( + this.chrome.$('div.order-empty') ); } - if (this.pos_widget.save_button && (this.pos.get('selectedOrder').get('orderLines').length > 0)) { - this.pos_widget.save_button.appendTo( - this.pos_widget.$('div.summary') - ); + if (this.pos.get_order()) { + if (this.chrome.save_button && (this.pos.get_order().get_orderlines().length > 0)) { + this.chrome.save_button.appendTo( + this.chrome.$('div.summary') + ); + } } } }); /************************************************************************* - New ScreenWidget OrderListScreenWidget: - * On show, display all draft orders; - * on click on an order, display the content; - * on click on 'validate', allow to use this POS Order; - * on click on 'cancel', display the preview screen; - */ - module.OrderListScreenWidget = module.ScreenWidget.extend({ + * New ScreenWidget OrderListScreenWidget: + * On show, display all draft orders; + * on click on an order, display the content; + * on click on 'validate', allow to use this POS Order; + * on click on 'cancel', display the preview screen; + */ + // + var OrderListScreenWidget = screens.ScreenWidget.extend({ template: 'OrderListScreenWidget', show_leftpane: true, model: 'pos.order', @@ -146,7 +155,7 @@ openerp.pos_order_load = function(instance, local) { reset_order: function(order) { order.set_client(undefined); order.set_order_id(undefined); - order.get('orderLines').reset(); + order.orderlines.reset(); return order; }, @@ -154,35 +163,36 @@ openerp.pos_order_load = function(instance, local) { var self = this; this._super(); this.$el.find('span.button.back').click(function(){ - order = self.pos.get('selectedOrder'); + var order = self.pos.get('selectedOrder'); self.reset_order(order); - self.pos_widget.order_widget.change_selected_order(); - var ss = self.pos.pos_widget.screen_selector; - ss.set_current_screen('products'); + self.chrome.screens.products.order_widget.change_selected_order(); + self.gui.show_screen('products'); }); this.$el.find('span.button.validate').click(function(){ - var orderModel = new instance.web.Model('pos.order'); - return orderModel.call('unlink', [[self.current_order_id]]) - .then(function (result) { - var ss = self.pos.pos_widget.screen_selector; - ss.set_current_screen('products'); - }).fail(function (error, event){ - if (parseInt(error.code) === 200) { - // Business Logic Error, not a connection problem - self.pos_widget.screen_selector.show_popup( - 'error-traceback', { - message: error.data.message, - comment: error.data.debug - }); - } - else{ - self.pos_widget.screen_selector.show_popup('error',{ - message: _t('Connection error'), - comment: _t('Can not load the Selected Order because the POS is currently offline'), - }); - } - event.preventDefault(); + var orderModel = rpc.query({ + model: 'pos.order', + method: 'unlink', + args: [self.current_order_id], }); + return orderModel.then(function (result) { + self.gui.show_screen('products'); + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.gui.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + }); + } + else{ + self.gui.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not load the Selected Order because the POS is currently offline'), + }); + } + event.preventDefault(); + }); }); var search_timeout = null; @@ -227,109 +237,116 @@ openerp.pos_order_load = function(instance, local) { load_order: function(order_id) { var self = this; - var orderModel = new instance.web.Model(this.model); - return orderModel.call('load_order', [order_id]) - .then(function (result) { - var order = self.pos.get('selectedOrder'); - order = self.load_order_fields(order, result); - order.get('orderLines').reset(); - var orderlines = result.orderlines || []; - var unknown_products = []; - for (var i=0, len=orderlines.length; i 0){ - self.pos_widget.screen_selector.show_popup( - 'error-traceback', { - message: _t('Unknown Products'), - comment: _t('Unable to load some order lines because the ' + + order.add_product(product, + self.prepare_orderline_options(orderline) + ); + var last_orderline = order.get_last_orderline(); + last_orderline = jQuery.extend(last_orderline, orderline); + } + // Forbid POS Order loading if some products are unknown + if (unknown_products.length > 0){ + self.gui.show_popup( + 'error-traceback', { + message: _t('Unknown Products'), + comment: _t('Unable to load some order lines because the ' + 'products are not available in the POS cache.\n\n' + 'Please check that lines :\n\n * ') + unknown_products.join("; \n *") - }); - self.$el.find('span.button.validate').hide(); - } - else{ - self.$el.find('span.button.validate').show(); - } + }); + self.$el.find('span.button.validate').hide(); + } + else{ + self.$el.find('span.button.validate').show(); + } - }).fail(function (error, event){ - if (parseInt(error.code) === 200) { - // Business Logic Error, not a connection problem - self.pos_widget.screen_selector.show_popup( - 'error-traceback', { - message: error.data.message, - comment: error.data.debug + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.gui.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + }); + } + else{ + self.gui.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not execute this action because the POS is currently offline'), }); - } - else{ - self.pos_widget.screen_selector.show_popup('error',{ - message: _t('Connection error'), - comment: _t('Can not execute this action because the POS is currently offline'), - }); - } - event.preventDefault(); - }); + } + event.preventDefault(); + }); }, load_orders: function(query) { var self = this; - var orderModel = new instance.web.Model(this.model); - return orderModel.call('search_read_orders', [query || '']) - .then(function (result) { - self.render_list(result); - }).fail(function (error, event){ - if (parseInt(error.code) === 200) { - // Business Logic Error, not a connection problem - self.pos_widget.screen_selector.show_popup( - 'error-traceback', { - message: error.data.message, - comment: error.data.debug - } - ); - } - else{ - self.pos_widget.screen_selector.show_popup('error',{ - message: _t('Connection error'), - comment: _t('Can not execute this action because the POS is currently offline'), - }); - } - event.preventDefault(); - }); + var orderModel = rpc.query({ + model: this.model, + method: 'search_read_orders', + args: [query || ''], + }) + return orderModel.then(function (result) { + self.render_list(result); + }).fail(function (error, event){ + if (parseInt(error.code) === 200) { + // Business Logic Error, not a connection problem + self.gui.show_popup( + 'error-traceback', { + message: error.data.message, + comment: error.data.debug + } + ); + } + else{ + self.gui.show_popup('error',{ + message: _t('Connection error'), + comment: _t('Can not execute this action because the POS is currently offline'), + }); + } + event.preventDefault(); + }); }, show: function() { this._super(); - var ss = this.pos.pos_widget.screen_selector; - if (ss.get_current_screen() == 'orderlist') { + if (this.gui.get_current_screen() == 'orderlist') { this.load_orders(); } }, on_click_draft_order: function(event){ + this.$('.order-list .highlight').removeClass('highlight'); this.current_order_id = parseInt(event.target.parentNode.dataset.orderId); this.load_order(this.current_order_id); + $(event.target.parentNode).addClass('highlight'); }, render_list: function(orders){ @@ -359,5 +376,10 @@ openerp.pos_order_load = function(instance, local) { }, }); - +gui.define_screen({'name': 'orderlist', 'widget': OrderListScreenWidget}); +return { + LoadButtonButton: LoadButtonWidget, + SaveButtonButton: SaveButtonWidget, + OrderListScreenWidget: OrderListScreenWidget, }; +}); diff --git a/pos_order_load/static/src/xml/pos_order_load.xml b/pos_order_load/static/src/xml/pos_order_load.xml index 220e221e..87808478 100644 --- a/pos_order_load/static/src/xml/pos_order_load.xml +++ b/pos_order_load/static/src/xml/pos_order_load.xml @@ -44,12 +44,6 @@
-
diff --git a/pos_order_load/view/pos_order_load.xml b/pos_order_load/view/pos_order_load.xml index f4d0c506..e630bb60 100644 --- a/pos_order_load/view/pos_order_load.xml +++ b/pos_order_load/view/pos_order_load.xml @@ -1,18 +1,14 @@ - - - - - - - + + + +