diff --git a/base_report_to_printer/__init__.py b/base_report_to_printer/__init__.py index 5c28b44..68217f5 100644 --- a/base_report_to_printer/__init__.py +++ b/base_report_to_printer/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () diff --git a/base_report_to_printer/__manifest__.py b/base_report_to_printer/__manifest__.py index a3775b5..8df3771 100644 --- a/base_report_to_printer/__manifest__.py +++ b/base_report_to_printer/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () @@ -14,7 +13,7 @@ " LasLabs, Camptocamp, Odoo Community Association (OCA)", 'website': 'http://www.agilebg.com', 'license': 'AGPL-3', - "depends": ['web'], + "depends": ['web', 'base'], 'data': [ 'data/printing_data.xml', 'security/security.xml', diff --git a/base_report_to_printer/data/printing_data.xml b/base_report_to_printer/data/printing_data.xml index 7c88ad4..5082db5 100644 --- a/base_report_to_printer/data/printing_data.xml +++ b/base_report_to_printer/data/printing_data.xml @@ -10,6 +10,10 @@ Send to Client client + + Use User Defaults + user_default + property_printing_action_id diff --git a/base_report_to_printer/migrations/9.0.2.0.0/post-10-create_server_record.py b/base_report_to_printer/migrations/9.0.2.0.0/post-10-create_server_record.py index 6ae342b..67cbee2 100644 --- a/base_report_to_printer/migrations/9.0.2.0.0/post-10-create_server_record.py +++ b/base_report_to_printer/migrations/9.0.2.0.0/post-10-create_server_record.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2016 SYLEAM () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_report_to_printer/models/__init__.py b/base_report_to_printer/models/__init__.py index ea1b173..6f03d65 100644 --- a/base_report_to_printer/models/__init__.py +++ b/base_report_to_printer/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import ir_actions_report from . import printing_action diff --git a/base_report_to_printer/models/ir_actions_report.py b/base_report_to_printer/models/ir_actions_report.py index 38df8be..8f0c203 100644 --- a/base_report_to_printer/models/ir_actions_report.py +++ b/base_report_to_printer/models/ir_actions_report.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () @@ -14,12 +13,12 @@ class IrActionsReport(models.Model): property_printing_action_id = fields.Many2one( comodel_name='printing.action', - string='Action', + string='Default Behaviour', company_dependent=True, ) printing_printer_id = fields.Many2one( comodel_name='printing.printer', - string='Printer' + string='Default Printer' ) printer_tray_id = fields.Many2one( comodel_name='printing.tray', @@ -48,7 +47,7 @@ class IrActionsReport(models.Model): report = self._get_report_from_name(report_name) if not report: return {} - result = report.behaviour()[report] + result = report.behaviour() serializable_result = { 'action': result['action'], 'printer_name': result['printer'].name, @@ -57,49 +56,34 @@ class IrActionsReport(models.Model): @api.multi def behaviour(self): - result = {} + self.ensure_one() printer_obj = self.env['printing.printer'] printing_act_obj = self.env['printing.report.xml.action'] - # Set hardcoded default action - default_action = 'client' - # Retrieve system wide printer - default_printer = printer_obj.get_default() - - # Retrieve user default values + # Retrieve user defaults or system defaults user = self.env.user - if user.printing_action: - default_action = user.printing_action - if user.printing_printer_id: - default_printer = user.printing_printer_id + action = user.printing_action or 'client' + printer = user.printing_printer_id or printer_obj.get_default() - for report in self: - action = default_action - printer = default_printer + # Retrieve report default values + report_action = self.property_printing_action_id + if report_action and report_action.action_type != 'user_default': + action = report_action.action_type + if self.printing_printer_id: + printer = self.printing_printer_id - # Retrieve report default values - report_action = report.property_printing_action_id - if report_action and report_action.action_type != 'user_default': - action = report_action.action_type - if report.printing_printer_id: - printer = report.printing_printer_id + # Retrieve report-user specific values + print_action = printing_act_obj.search([ + ('report_id', '=', self.id), + ('user_id', '=', self.env.uid), + ('action', '!=', 'user_default'), + ], limit=1) + if print_action: + user_action = print_action.behaviour() + action = user_action['action'] + if user_action['printer']: + printer = user_action['printer'] - # Retrieve report-user specific values - print_action = printing_act_obj.search([ - ('report_id', '=', report.id), - ('user_id', '=', self.env.uid), - ('action', '!=', 'user_default'), - ], limit=1) - if print_action: - user_action = print_action.behaviour() - action = user_action['action'] - if user_action['printer']: - printer = user_action['printer'] - - result[report] = { - 'action': action, - 'printer': printer, - } - return result + return {'action': action, 'printer': printer} @api.multi def print_document(self, record_ids, data=None): @@ -107,7 +91,7 @@ class IrActionsReport(models.Model): document = self.with_context( must_skip_send_to_printer=True).render_qweb_pdf( record_ids, data=data) - behaviour = self.behaviour()[self] + behaviour = self.behaviour() printer = behaviour['printer'] if not printer: raise exceptions.Warning( @@ -138,7 +122,7 @@ class IrActionsReport(models.Model): document, doc_format = super(IrActionsReport, self).render_qweb_pdf( docids, data=data) - behaviour = self.behaviour()[self] + behaviour = self.behaviour() printer = behaviour['printer'] can_print_report = self._can_print_report(behaviour, printer, document) diff --git a/base_report_to_printer/models/printing_action.py b/base_report_to_printer/models/printing_action.py index 39c2766..072ed24 100644 --- a/base_report_to_printer/models/printing_action.py +++ b/base_report_to_printer/models/printing_action.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () diff --git a/base_report_to_printer/models/printing_job.py b/base_report_to_printer/models/printing_job.py index 63fbde9..b082a2a 100644 --- a/base_report_to_printer/models/printing_job.py +++ b/base_report_to_printer/models/printing_job.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2016 SYLEAM () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_report_to_printer/models/printing_printer.py b/base_report_to_printer/models/printing_printer.py index 44a454f..83b7fc4 100644 --- a/base_report_to_printer/models/printing_printer.py +++ b/base_report_to_printer/models/printing_printer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () @@ -63,9 +62,20 @@ class PrintingPrinter(models.Model): @api.multi def _prepare_update_from_cups(self, cups_connection, cups_printer): - vals = super(PrintingPrinter, self)._prepare_update_from_cups( - cups_connection, cups_printer) - + mapping = { + 3: 'available', + 4: 'printing', + 5: 'error' + } + vals = { + 'name': cups_printer['printer-info'], + 'model': cups_printer.get('printer-make-and-model', False), + 'location': cups_printer.get('printer-location', False), + 'uri': cups_printer.get('device-uri', False), + 'status': mapping.get(cups_printer.get( + 'printer-state'), 'unknown'), + 'status_message': cups_printer.get('printer-state-message', ''), + } printer_uri = cups_printer['printer-uri-supported'] printer_system_name = printer_uri[printer_uri.rfind('/') + 1:] ppd_info = cups_connection.getPPD3(printer_system_name) @@ -104,25 +114,6 @@ class PrintingPrinter(models.Model): for tray in self.tray_ids.filtered( lambda record: record.system_name not in cups_trays.keys()) ]) - - return vals - - @api.multi - def _prepare_update_from_cups(self, cups_connection, cups_printer): - mapping = { - 3: 'available', - 4: 'printing', - 5: 'error' - } - vals = { - 'name': cups_printer['printer-info'], - 'model': cups_printer.get('printer-make-and-model', False), - 'location': cups_printer.get('printer-location', False), - 'uri': cups_printer.get('device-uri', False), - 'status': mapping.get(cups_printer.get( - 'printer-state'), 'unknown'), - 'status_message': cups_printer.get('printer-state-message', ''), - } return vals @api.multi diff --git a/base_report_to_printer/models/printing_report_xml_action.py b/base_report_to_printer/models/printing_report_xml_action.py index 018c079..6f61a6a 100644 --- a/base_report_to_printer/models/printing_report_xml_action.py +++ b/base_report_to_printer/models/printing_report_xml_action.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () diff --git a/base_report_to_printer/models/printing_server.py b/base_report_to_printer/models/printing_server.py index 3f30364..6c64f22 100644 --- a/base_report_to_printer/models/printing_server.py +++ b/base_report_to_printer/models/printing_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2016 SYLEAM () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_report_to_printer/models/printing_tray.py b/base_report_to_printer/models/printing_tray.py index da12e70..83910c4 100644 --- a/base_report_to_printer/models/printing_tray.py +++ b/base_report_to_printer/models/printing_tray.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2013-2014 Camptocamp () # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/base_report_to_printer/models/res_users.py b/base_report_to_printer/models/res_users.py index c308d88..d72f43b 100644 --- a/base_report_to_printer/models/res_users.py +++ b/base_report_to_printer/models/res_users.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2007 Ferran Pegueroles # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () @@ -33,6 +32,17 @@ class ResUsers(models.Model): domain="[('printer_id', '=', printing_printer_id)]", ) + @api.model + def _register_hook(self): + self.SELF_WRITEABLE_FIELDS.extend([ + 'printing_action', + 'printing_printer_id', + ]) + self.SELF_READABLE_FIELDS.extend([ + 'printing_action', + 'printing_printer_id', + ]) + @api.onchange('printing_printer_id') def onchange_printing_printer_id(self): """ Reset the tray when the printer is changed """ diff --git a/base_report_to_printer/security/security.xml b/base_report_to_printer/security/security.xml index 83eac3f..6c7a37b 100644 --- a/base_report_to_printer/security/security.xml +++ b/base_report_to_printer/security/security.xml @@ -1,6 +1,6 @@ - - + + Printing / Print Manager diff --git a/base_report_to_printer/static/src/js/qweb_action_manager.js b/base_report_to_printer/static/src/js/qweb_action_manager.js index d1f884f..420fcb1 100644 --- a/base_report_to_printer/static/src/js/qweb_action_manager.js +++ b/base_report_to_printer/static/src/js/qweb_action_manager.js @@ -1,41 +1,46 @@ -odoo.define('base_report_to_printer.print', function(require) { +odoo.define('base_report_to_printer.print', function (require) { 'use strict'; var ActionManager = require('web.ActionManager'); var core = require('web.core'); var framework = require('web.framework'); - var Model = require('web.Model'); + var rpc = require('web.rpc'); + ActionManager.include({ - ir_actions_report: function(action, options) { - action_val = _.clone(action); + ir_actions_report: function (action, options) { + var action_val = _.clone(action); var _t = core._t; var self = this; var _super = this._super; if ('report_type' in action_val && action_val.report_type === 'qweb-pdf') { framework.blockUI(); - new Model('ir.actions.report'). - call('print_action_for_report_name', [action_val.report_name]). - then(function(print_action){ - if (print_action && print_action.action_val === 'server') { - framework.unblockUI(); - new Model('report'). - call('print_document', - [action_val.context.active_ids, action_val.report_name], - {data: action_val.data || {}, context: action_val.context || {}}). - then(function(){ - self.do_notify(_t('Report'), - _t('Document sent to the printer ') + print_action.printer_name); - }).fail(function() { - self.do_notify(_t('Report'), - _t('Error when sending the document to the printer ') + print_action.printer_name); + rpc.query({ + model: 'ir.actions.report', + method: 'print_action_for_report_name', + args: [action_val.report_name] + }).then(function (print_action) { + if (print_action && print_action.action_val === 'server') { + framework.unblockUI(); + rpc.query({ + model: 'ir.actions.report', + method: 'print_document', + args: [action_val.context.active_ids, action_val.report_name], + kwargs: {data: action_val.data || {}}, + context: action_val.context || {} + }).then(function () { + self.do_notify(_t('Report'), + _t('Document sent to the printer ') + print_action.printer_name); + }).fail(function () { + self.do_notify(_t('Report'), + _t('Error when sending the document to the printer ') + print_action.printer_name); - }); - } else { - return _super.apply(self, [action_val, options]); - } - }); + }); + } else { + return _super.apply(self, [action_val, options]); + } + }); } else { return _super.apply(self, [action_val, options]); } diff --git a/base_report_to_printer/tests/__init__.py b/base_report_to_printer/tests/__init__.py index 0f52428..fb3073e 100644 --- a/base_report_to_printer/tests/__init__.py +++ b/base_report_to_printer/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_ir_actions_report.py b/base_report_to_printer/tests/test_ir_actions_report.py index 172b804..a85b750 100644 --- a/base_report_to_printer/tests/test_ir_actions_report.py +++ b/base_report_to_printer/tests/test_ir_actions_report.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # Copyright 2016 SYLEAM # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -67,7 +66,7 @@ class TestIrActionsReportXml(TransactionCase): """ It should return correct serializable result for behaviour """ with mock.patch.object(self.Model, '_get_report_from_name') as mk: res = self.Model.print_action_for_report_name('test') - behaviour = mk().behaviour()[mk()] + behaviour = mk().behaviour() expect = { 'action': behaviour['action'], 'printer_name': behaviour['printer'].name, @@ -85,10 +84,8 @@ class TestIrActionsReportXml(TransactionCase): report.property_printing_action_id = False report.printing_printer_id = False self.assertEqual(report.behaviour(), { - report: { - 'action': 'client', - 'printer': self.env['printing.printer'], - }, + 'action': 'client', + 'printer': self.env['printing.printer'], }) def test_behaviour_user_values(self): @@ -97,10 +94,8 @@ class TestIrActionsReportXml(TransactionCase): self.env.user.printing_action = 'client' self.env.user.printing_printer_id = self.new_printer() self.assertEqual(report.behaviour(), { - report: { - 'action': 'client', - 'printer': self.env.user.printing_printer_id, - }, + 'action': 'client', + 'printer': self.env.user.printing_printer_id, }) def test_behaviour_report_values(self): @@ -110,10 +105,8 @@ class TestIrActionsReportXml(TransactionCase): report.property_printing_action_id = self.new_action() report.printing_printer_id = self.new_printer() self.assertEqual(report.behaviour(), { - report: { 'action': report.property_printing_action_id.action_type, 'printer': report.printing_printer_id, - }, }) def test_behaviour_user_action(self): @@ -122,10 +115,8 @@ class TestIrActionsReportXml(TransactionCase): self.env.user.printing_action = 'client' report.property_printing_action_id.action_type = 'user_default' self.assertEqual(report.behaviour(), { - report: { 'action': 'client', 'printer': report.printing_printer_id, - }, }) def test_behaviour_printing_action_on_wrong_user(self): @@ -138,10 +129,8 @@ class TestIrActionsReportXml(TransactionCase): ('id', '!=', self.env.user.id), ], limit=1) self.assertEqual(report.behaviour(), { - report: { - 'action': 'client', - 'printer': report.printing_printer_id, - }, + 'action': 'client', + 'printer': report.printing_printer_id, }) def test_behaviour_printing_action_on_wrong_report(self): @@ -155,10 +144,8 @@ class TestIrActionsReportXml(TransactionCase): ('id', '!=', report.id), ], limit=1) self.assertEqual(report.behaviour(), { - report: { - 'action': 'client', - 'printer': report.printing_printer_id, - }, + 'action': 'client', + 'printer': report.printing_printer_id, }) def test_behaviour_printing_action_with_no_printer(self): @@ -170,10 +157,8 @@ class TestIrActionsReportXml(TransactionCase): printing_action.user_id = self.env.user printing_action.report_id = report self.assertEqual(report.behaviour(), { - report: { 'action': printing_action.action, 'printer': report.printing_printer_id, - }, }) def test_behaviour_printing_action_with_printer(self): @@ -184,10 +169,8 @@ class TestIrActionsReportXml(TransactionCase): printing_action.user_id = self.env.user printing_action.printer_id = self.new_printer() self.assertEqual(report.behaviour(), { - report: { - 'action': printing_action.action, - 'printer': printing_action.printer_id, - }, + 'action': printing_action.action, + 'printer': printing_action.printer_id, }) def test_behaviour_printing_action_user_defaults(self): @@ -199,10 +182,8 @@ class TestIrActionsReportXml(TransactionCase): printing_action.user_id = self.env.user printing_action.action = 'user_default' self.assertEqual(report.behaviour(), { - report: { 'action': 'client', 'printer': report.printing_printer_id, - }, }) def test_onchange_printer_tray_id_empty(self): diff --git a/base_report_to_printer/tests/test_printing_job.py b/base_report_to_printer/tests/test_printing_job.py index 612c038..438dfff 100644 --- a/base_report_to_printer/tests/test_printing_job.py +++ b/base_report_to_printer/tests/test_printing_job.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_printing_printer.py b/base_report_to_printer/tests/test_printing_printer.py index 26043c7..ec09929 100644 --- a/base_report_to_printer/tests/test_printing_printer.py +++ b/base_report_to_printer/tests/test_printing_printer.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -31,19 +30,22 @@ class TestPrintingPrinter(TransactionCase): 'location': 'Location', 'uri': 'URI', } + self.report = self.env['ir.actions.report'].search([], limit=1) def new_record(self): return self.Model.create(self.printer_vals) def test_printing_options(self): """ It should generate the right options dictionnary """ - self.assertEqual(self.Model.print_options('report', 'raw'), { + # TODO: None here used as report - tests here should be merged + # with tests in test_printing_printer_tray from when modules merged + self.assertEqual(self.Model.print_options(None, 'raw'), { 'raw': 'True', }) - self.assertEqual(self.Model.print_options('report', 'pdf', 2), { + self.assertEqual(self.Model.print_options(None, 'pdf', 2), { 'copies': '2', }) - self.assertEqual(self.Model.print_options('report', 'raw', 2), { + self.assertEqual(self.Model.print_options(None, 'raw', 2), { 'raw': 'True', 'copies': '2', }) @@ -55,7 +57,7 @@ class TestPrintingPrinter(TransactionCase): with mock.patch('%s.mkstemp' % model) as mkstemp: mkstemp.return_value = fd, file_name printer = self.new_record() - printer.print_document('report_name', b'content to print', 'pdf') + printer.print_document(self.report, b'content to print', 'pdf') cups.Connection().printFile.assert_called_once_with( printer.system_name, file_name, @@ -72,14 +74,14 @@ class TestPrintingPrinter(TransactionCase): printer = self.new_record() with self.assertRaises(UserError): printer.print_document( - 'report_name', b'content to print', 'pdf') + self.report, b'content to print', 'pdf') @mock.patch('%s.cups' % server_model) def test_print_file(self, cups): """ It should print a file through CUPS """ file_name = 'file_name' printer = self.new_record() - printer.print_file(file_name, 'pdf') + printer.print_file(file_name, report=self.report, format='pdf') cups.Connection().printFile.assert_called_once_with( printer.system_name, file_name, diff --git a/base_report_to_printer/tests/test_printing_printer_tray.py b/base_report_to_printer/tests/test_printing_printer_tray.py index 7fe7dcb..72ba781 100644 --- a/base_report_to_printer/tests/test_printing_printer_tray.py +++ b/base_report_to_printer/tests/test_printing_printer_tray.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_printing_printer_wizard.py b/base_report_to_printer/tests/test_printing_printer_wizard.py index 45c4054..34207d2 100644 --- a/base_report_to_printer/tests/test_printing_printer_wizard.py +++ b/base_report_to_printer/tests/test_printing_printer_wizard.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -26,6 +25,7 @@ class TestPrintingPrinterWizard(TransactionCase): 'printer-make-and-model': 'Make and Model', 'printer-location': "location", 'device-uri': 'URI', + 'printer-uri-supported': 'uri' } def _record_vals(self, sys_name='sys_name'): @@ -52,6 +52,7 @@ class TestPrintingPrinterWizard(TransactionCase): cups.Connection().getPrinters.return_value = { 'sys_name': self.printer_vals, } + cups.Connection().getPPD3.return_value = (200, 0, '') self.Model.action_ok() cups.Connection().getPrinters.assert_called_once_with() @@ -68,6 +69,7 @@ class TestPrintingPrinterWizard(TransactionCase): cups.Connection().getPrinters.return_value = { 'sys_name': self.printer_vals, } + cups.Connection().getPPD3.return_value = (200, 0, '') self.Model.action_ok() rec_id = self.env['printing.printer'].search([ ('system_name', '=', 'sys_name') @@ -89,6 +91,7 @@ class TestPrintingPrinterWizard(TransactionCase): cups.Connection().getPrinters.return_value = { 'sys_name': self.printer_vals, } + cups.Connection().getPPD3.return_value = (200, 0, '') self.env['printing.printer'].create( self._record_vals() ) diff --git a/base_report_to_printer/tests/test_printing_report_xml_action.py b/base_report_to_printer/tests/test_printing_report_xml_action.py index ce81f1f..79370ea 100644 --- a/base_report_to_printer/tests/test_printing_report_xml_action.py +++ b/base_report_to_printer/tests/test_printing_report_xml_action.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 SYLEAM # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -47,12 +46,14 @@ class TestPrintingReportXmlAction(TransactionCase): self.assertEqual(xml_action.behaviour(), { 'action': xml_action.action, 'printer': xml_action.printer_id, + 'tray': False, }) xml_action = self.new_record({'printer_id': self.new_printer().id}) self.assertEqual(xml_action.behaviour(), { 'action': xml_action.action, 'printer': xml_action.printer_id, + 'tray': False, }) self.assertEqual(self.Model.behaviour(), {}) diff --git a/base_report_to_printer/tests/test_printing_server.py b/base_report_to_printer/tests/test_printing_server.py index 1bb8489..ee812f5 100644 --- a/base_report_to_printer/tests/test_printing_server.py +++ b/base_report_to_printer/tests/test_printing_server.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_printing_tray.py b/base_report_to_printer/tests/test_printing_tray.py index ca82837..d9bc5be 100644 --- a/base_report_to_printer/tests/test_printing_tray.py +++ b/base_report_to_printer/tests/test_printing_tray.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_report.py b/base_report_to_printer/tests/test_report.py index 8a1f5fe..618311d 100644 --- a/base_report_to_printer/tests/test_report.py +++ b/base_report_to_printer/tests/test_report.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/tests/test_res_users.py b/base_report_to_printer/tests/test_res_users.py index a357c78..4e74505 100644 --- a/base_report_to_printer/tests/test_res_users.py +++ b/base_report_to_printer/tests/test_res_users.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 LasLabs Inc. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/base_report_to_printer/views/ir_actions_report.xml b/base_report_to_printer/views/ir_actions_report.xml index 91b4956..6066da8 100644 --- a/base_report_to_printer/views/ir_actions_report.xml +++ b/base_report_to_printer/views/ir_actions_report.xml @@ -1,24 +1,23 @@ - - ir.actions.report.printing - ir.actions.report - - - - - - - - - - - - - - - - + + ir.actions.report.printing + ir.actions.report + + + + + + + + + + + + + + + diff --git a/base_report_to_printer/views/printing_report.xml b/base_report_to_printer/views/printing_report.xml index 5d5f62f..68ba247 100644 --- a/base_report_to_printer/views/printing_report.xml +++ b/base_report_to_printer/views/printing_report.xml @@ -7,23 +7,22 @@
- + - +
- printing.report.xml.action.tree printing.report.xml.action - - + + - + diff --git a/base_report_to_printer/views/printing_server.xml b/base_report_to_printer/views/printing_server.xml index 96e09a8..fc6527b 100644 --- a/base_report_to_printer/views/printing_server.xml +++ b/base_report_to_printer/views/printing_server.xml @@ -62,9 +62,9 @@ + sequence="10" + id="printing_server_menu" + parent="printing_menu" + action="printing_server_action"/>
diff --git a/base_report_to_printer/views/res_users.xml b/base_report_to_printer/views/res_users.xml index 6d4a002..842e4e8 100644 --- a/base_report_to_printer/views/res_users.xml +++ b/base_report_to_printer/views/res_users.xml @@ -1,32 +1,34 @@ - - res.users.form.printing.preferences - res.users - - - - - - - - - - + + res.users.form.printing.preferences + res.users + + + + + + + + + + + - - res.users.form.printing - res.users - - -
- - - - -
-
-
+ + res.users.form.printing + res.users + + +
+ + + + + +
+
+
diff --git a/base_report_to_printer/wizards/__init__.py b/base_report_to_printer/wizards/__init__.py index 5a693f5..8958684 100644 --- a/base_report_to_printer/wizards/__init__.py +++ b/base_report_to_printer/wizards/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import printing_printer_update_wizard diff --git a/base_report_to_printer/wizards/printing_printer_update_wizard.py b/base_report_to_printer/wizards/printing_printer_update_wizard.py index f3c384d..8b0c141 100644 --- a/base_report_to_printer/wizards/printing_printer_update_wizard.py +++ b/base_report_to_printer/wizards/printing_printer_update_wizard.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (c) 2009 Albert Cervera i Areny # Copyright (C) 2011 Agile Business Group sagl () # Copyright (C) 2011 Domsense srl () diff --git a/printer_tray/i18n/am.po b/printer_tray/i18n/am.po deleted file mode 100644 index 0343227..0000000 --- a/printer_tray/i18n/am.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/bg.po b/printer_tray/i18n/bg.po deleted file mode 100644 index cd3f7d5..0000000 --- a/printer_tray/i18n/bg.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Създадено от" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Създадено на" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Последно обновено на" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Последно обновено от" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Последно обновено на" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Име" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/ca.po b/printer_tray/i18n/ca.po deleted file mode 100644 index 351e694..0000000 --- a/printer_tray/i18n/ca.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 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" -"Content-Transfer-Encoding: \n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creat per" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creat el" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Darrera Actualització per" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Darrera Actualització el" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/de.po b/printer_tray/i18n/de.po deleted file mode 100644 index 5a92ad2..0000000 --- a/printer_tray/i18n/de.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 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" -"Content-Transfer-Encoding: \n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Erstellt von" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Erstellt am:" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Anzeigename" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Zuletzt geändert am" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Zuletzt aktualisiert von" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Zuletzt aktualisiert am" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Bezeichnung" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/el_GR.po b/printer_tray/i18n/el_GR.po deleted file mode 100644 index 0259916..0000000 --- a/printer_tray/i18n/el_GR.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Δημιουργήθηκε από " - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "Κωδικός" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Τελευταία ενημέρωση από" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Τελευταία ενημέρωση στις" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/es.po b/printer_tray/i18n/es.po deleted file mode 100644 index 21c6bc4..0000000 --- a/printer_tray/i18n/es.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Nombre mostrado" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Última modificación el" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Última actualización el" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Nombre" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/es_ES.po b/printer_tray/i18n/es_ES.po deleted file mode 100644 index 7d3b822..0000000 --- a/printer_tray/i18n/es_ES.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/fi.po b/printer_tray/i18n/fi.po deleted file mode 100644 index 7ad1b10..0000000 --- a/printer_tray/i18n/fi.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 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" -"Content-Transfer-Encoding: \n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Luonut" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Luotu" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Nimi" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Viimeksi muokattu" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Viimeksi päivittänyt" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Viimeksi päivitetty" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/fr.po b/printer_tray/i18n/fr.po deleted file mode 100644 index f214196..0000000 --- a/printer_tray/i18n/fr.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Date" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "Source de papier par défaut" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Nom à afficher" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Dernière mise à jour par" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Dernière mise à jour le" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Nom" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "Source de papier" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "Sources de papier" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "Imprimante" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "Bac d'impression" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "Nom système" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "Bacs d'impression" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "Utilisateur" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/gl.po b/printer_tray/i18n/gl.po deleted file mode 100644 index 688072d..0000000 --- a/printer_tray/i18n/gl.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creado en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "ültima actualización por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/hr.po b/printer_tray/i18n/hr.po deleted file mode 100644 index 97af203..0000000 --- a/printer_tray/i18n/hr.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -# Bole , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-12 21:51+0000\n" -"PO-Revision-Date: 2017-07-12 21:51+0000\n" -"Last-Translator: Bole , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "Zadani izvor papria na printeru" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Naziv " - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Zadnje ažuriranje" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Naziv" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "Izvor papira" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "Izvori papira" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "Pisač" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "Ladica pisača" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "Akcije ispisa izvještaja na pisač" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "Sistemski naziv" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "Ladice" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "Korisnici" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "ir.actions.report.xml" diff --git a/printer_tray/i18n/hr_HR.po b/printer_tray/i18n/hr_HR.po deleted file mode 100644 index a0290b1..0000000 --- a/printer_tray/i18n/hr_HR.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Naziv" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Zadnje ažurirano" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/it.po b/printer_tray/i18n/it.po deleted file mode 100644 index 89e14e2..0000000 --- a/printer_tray/i18n/it.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Creato da" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Creato il" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Nome da visualizzare" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Ultima modifica il" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Ultimo aggiornamento di" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Ultimo aggiornamento il" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Nome" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "Stampante" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/nl.po b/printer_tray/i18n/nl.po deleted file mode 100644 index f649f51..0000000 --- a/printer_tray/i18n/nl.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Te tonen naam" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Laatst bijgewerkt op" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Naam" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/nl_NL.po b/printer_tray/i18n/nl_NL.po deleted file mode 100644 index 98c88ce..0000000 --- a/printer_tray/i18n/nl_NL.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# Peter Hageman , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-23 09:07+0000\n" -"PO-Revision-Date: 2017-05-23 09:07+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" -"Content-Transfer-Encoding: \n" -"Language: nl_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Aangemaakt door" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Weergavenaam" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Laatst gewijzigd op" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Laatst bijgewerkt door" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Naam" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "Printer" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "Gebruikers" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/printer_tray.po b/printer_tray/i18n/printer_tray.po deleted file mode 100644 index 4a71e59..0000000 --- a/printer_tray/i18n/printer_tray.po +++ /dev/null @@ -1,88 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * printer_tray -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 7.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-01-31 15:44+0000\n" -"PO-Revision-Date: 2014-11-18 08:58+0000\n" -"Last-Translator: Yannick Vaucher \n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" - -#. module: printer_tray -#: field:printing.tray,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,create_date:0 -msgid "Created on" -msgstr "" - -#. module: printer_tray -#: field:res.users,printer_tray_id:0 -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,id:0 -msgid "ID" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,write_date:0 -msgid "Last Updated on" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,name:0 -msgid "Name" -msgstr "" - -#. module: printer_tray -#: field:ir.actions.report.xml,printer_tray_id:0 -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: field:printing.printer,tray_ids:0 -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: field:printing.tray,printer_id:0 -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: field:printing.tray,system_name:0 -msgid "System name" -msgstr "" - -#. module: printer_tray -#: view:printing.printer:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" diff --git a/printer_tray/i18n/pt.po b/printer_tray/i18n/pt.po deleted file mode 100644 index 2df82ed..0000000 --- a/printer_tray/i18n/pt.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Atualizado pela última vez por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/pt_BR.po b/printer_tray/i18n/pt_BR.po deleted file mode 100644 index 713b9d8..0000000 --- a/printer_tray/i18n/pt_BR.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Nome para Mostrar" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "Identificação" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Última atualização em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Última atualização por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Última atualização em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/pt_PT.po b/printer_tray/i18n/pt_PT.po deleted file mode 100644 index 3f086eb..0000000 --- a/printer_tray/i18n/pt_PT.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Criado em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Atualizado pela última vez por" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/sl.po b/printer_tray/i18n/sl.po deleted file mode 100644 index 416768c..0000000 --- a/printer_tray/i18n/sl.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 2017\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: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Ustvaril" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Ustvarjeno" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "Privzeti vir tiskalnega papirja" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "Prikazni naziv" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "Zadnjič spremenjeno" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Zadnji posodobil" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Zadnjič posodobljeno" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "Naziv" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "Vir papirja" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "Viri papirja" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "Tiskalnik" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "Tiskalni pladenj" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "Naziv sistema" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "Pladnji" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "Uporabniki" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/tr.po b/printer_tray/i18n/tr.po deleted file mode 100644 index 77e5cd1..0000000 --- a/printer_tray/i18n/tr.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 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" -"Content-Transfer-Encoding: \n" -"Language: tr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "Oluşturan" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "Oluşturuldu" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "Son güncelleyen" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "Son güncelleme" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/i18n/zh_CN.po b/printer_tray/i18n/zh_CN.po deleted file mode 100644 index 8ad0643..0000000 --- a/printer_tray/i18n/zh_CN.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * printer_tray -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-24 02:40+0000\n" -"PO-Revision-Date: 2017-04-24 02:40+0000\n" -"Last-Translator: OCA Transbot , 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" -"Content-Transfer-Encoding: \n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_uid -msgid "Created by" -msgstr "创建者" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_create_date -msgid "Created on" -msgstr "创建时间" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_res_users_printer_tray_id -msgid "Default Printer Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_display_name -msgid "Display Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_id -msgid "ID" -msgstr "ID" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray___last_update -msgid "Last Modified on" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_uid -msgid "Last Updated by" -msgstr "最后更新者" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_write_date -msgid "Last Updated on" -msgstr "上次更新日期" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_name -msgid "Name" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_ir_act_report_xml_printer_tray_id -#: model:ir.model.fields,field_description:printer_tray.field_printing_report_xml_action_printer_tray_id -msgid "Paper Source" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_printer_tray_ids -msgid "Paper Sources" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_printer -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_printer_id -msgid "Printer" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_tray -msgid "Printer Tray" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_printing_report_xml_action -msgid "Printing Report Printing Actions" -msgstr "" - -#. module: printer_tray -#: model:ir.model.fields,field_description:printer_tray.field_printing_tray_system_name -msgid "System name" -msgstr "" - -#. module: printer_tray -#: model:ir.ui.view,arch_db:printer_tray.printing_printer_view_form -msgid "Trays" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_res_users -msgid "Users" -msgstr "" - -#. module: printer_tray -#: model:ir.model,name:printer_tray.model_ir_actions_report_xml -msgid "ir.actions.report.xml" -msgstr "" diff --git a/printer_tray/views/res_users.xml b/printer_tray/views/res_users.xml deleted file mode 100644 index 2cd0d70..0000000 --- a/printer_tray/views/res_users.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - res.users.form.add.printer.tray - res.users - - - - - - - - - - - res.users.form.printing.tray - res.users - - - - - - - - -