mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
[PORT] Finalize move of printer_tray to base_report_to_printer,
fix tests as report param is not a string but recordset
This commit is contained in:
@@ -14,12 +14,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',
|
||||
|
||||
@@ -63,9 +63,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 +115,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
|
||||
|
||||
@@ -33,6 +33,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 """
|
||||
|
||||
@@ -31,19 +31,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 +58,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 +75,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,
|
||||
|
||||
@@ -26,6 +26,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 +53,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 +70,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 +92,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()
|
||||
)
|
||||
|
||||
@@ -47,12 +47,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(), {})
|
||||
|
||||
@@ -7,23 +7,22 @@
|
||||
<field name="arch" type="xml">
|
||||
<form string="Report Printing Actions">
|
||||
<group col="2">
|
||||
<field name="user_id"/>
|
||||
<field name="user_id" options="{'no_create': True}"/>
|
||||
<field name="action"/>
|
||||
<field name="printer_id" select="1"/>
|
||||
<field name="printer_id" options="{'no_create': True}"/>
|
||||
<field name="printer_tray_id"/>
|
||||
</group>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="printing_report_xml_action_view_tree">
|
||||
<field name="name">printing.report.xml.action.tree</field>
|
||||
<field name="model">printing.report.xml.action</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Report Printing Actions">
|
||||
<field name="user_id"/>
|
||||
<field name="action"/>
|
||||
<field name="printer_id"/>
|
||||
<tree string="Report Printing Actions" editable="bottom">
|
||||
<field name="user_id" options="{'no_create': True}"/>
|
||||
<field name="action" />
|
||||
<field name="printer_id" options="{'no_create': True}"/>
|
||||
<field name="printer_tray_id"/>
|
||||
</tree>
|
||||
</field>
|
||||
|
||||
@@ -9,7 +9,8 @@
|
||||
<xpath expr="//group[@name='preferences']/ancestor::page" position="inside">
|
||||
<group string="Printing" name="printing">
|
||||
<field name="printing_action"/>
|
||||
<field name="printing_printer_id"/>
|
||||
<field name="printing_printer_id" options="{'no_create': True}"/>
|
||||
<field name="printer_tray_id" options="{'no_create': True}"/>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
@@ -22,8 +23,9 @@
|
||||
<field name="arch" type="xml">
|
||||
<footer position="before">
|
||||
<group string="Printing" name="printing">
|
||||
<field name="printing_action"/>
|
||||
<field name="printing_printer_id"/>
|
||||
<field name="printing_action" readonly="0"/>
|
||||
<field name="printing_printer_id" readonly="0" options="{'no_create': True}"/>
|
||||
<field name="printer_tray_id" readonly="0" options="{'no_create': True}"/>
|
||||
</group>
|
||||
</footer>
|
||||
</field>
|
||||
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,112 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 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"
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 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 <hageman.p@gmail.com>, 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 ""
|
||||
@@ -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 <yannick.vaucher@camptocamp.com>\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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,111 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * printer_tray
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!-- res.users form view -->
|
||||
<record model="ir.ui.view" id="view_users_form">
|
||||
<field name="name">res.users.form.add.printer.tray</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base_report_to_printer.view_users_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="printing_printer_id" position="after">
|
||||
<field name="printer_tray_id"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- res.users form view (My preferences popup) -->
|
||||
<record model="ir.ui.view" id="view_users_prefs">
|
||||
<field name="name">res.users.form.printing.tray</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base_report_to_printer.view_users_form_simple_modif"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="printing_printer_id" position="after">
|
||||
<field name="printer_tray_id"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user