mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d19e1596c | ||
|
|
be40c65232 | ||
|
|
6359854e83 | ||
|
|
ea359350c6 | ||
|
|
d1a06d3179 | ||
|
|
2332401a5f | ||
|
|
043342401f | ||
|
|
769604681a | ||
|
|
f0721e5877 | ||
|
|
585f98b6f5 | ||
|
|
bb952fbbf1 | ||
|
|
4573a981cd |
15
.coveragerc
Normal file
15
.coveragerc
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[report]
|
||||||
|
include =
|
||||||
|
*/OCA/report-print-send/*
|
||||||
|
|
||||||
|
omit =
|
||||||
|
*/tests/*
|
||||||
|
*__init__.py
|
||||||
|
|
||||||
|
# Regexes for lines to exclude from consideration
|
||||||
|
exclude_lines =
|
||||||
|
# Have to re-enable the standard pragma
|
||||||
|
pragma: no cover
|
||||||
|
|
||||||
|
# Don't complain about null context checking
|
||||||
|
if context is None:
|
||||||
39
.travis.yml
39
.travis.yml
@@ -1,44 +1,33 @@
|
|||||||
language: python
|
|
||||||
sudo: false
|
sudo: false
|
||||||
cache: pip
|
cache: pip
|
||||||
|
|
||||||
python:
|
|
||||||
- "2.7"
|
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- expect-dev # provides unbuffer utility
|
- expect-dev # provides unbuffer utility
|
||||||
- python-lxml # because pip installation is slow
|
- python-lxml # because pip installation is slow
|
||||||
- cups
|
|
||||||
- libcups2-dev
|
- libcups2-dev
|
||||||
|
- cups
|
||||||
|
|
||||||
env:
|
language: python
|
||||||
global:
|
python:
|
||||||
- VERSION="7.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
|
- "2.7"
|
||||||
- TRANSIFEX_USER='transbot@odoo-community.org'
|
|
||||||
- secure: HwYn7vV4wIM4ocObmgkylZmaw6FQynkbMiJmoTTfgL3y3Gy6IAPVXgTNXFUiIuYXZZ4B2GOAfcECQejCCw2KP7OCcBo1oGNuSJ2aVwiQcRH1ENDLTsMq1jcB/4vQuAmTS8WEE5nRkPyutwgE4kBYvZC4tENatakafPRAS+iNqpQ=
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
- LINT_CHECK="1"
|
|
||||||
- TRANSIFEX="1"
|
|
||||||
- TESTS="1" ODOO_REPO="odoo/odoo"
|
|
||||||
- TESTS="1" ODOO_REPO="OCA/OCB"
|
|
||||||
|
|
||||||
virtualenv:
|
virtualenv:
|
||||||
system_site_packages: true
|
system_site_packages: true
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools
|
||||||
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
|
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
|
||||||
- travis_install_nightly
|
- travis_install_nightly
|
||||||
- pip install pycups==1.9.66
|
- pip install coveralls flake8
|
||||||
- pip install PyPDF2==1.18
|
- pip install pycups==1.9.66
|
||||||
- pip install requests
|
- pip install PyPDF2==1.18
|
||||||
- git clone https://github.com/OCA/reporting-engine -b ${VERSION} ${HOME}/reporting-engine
|
- pip install requests
|
||||||
|
- git clone https://github.com/OCA/reporting-engine -b ${VERSION} $HOME/reporting-engine
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- travis_run_tests
|
- travis_run_tests
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- travis_after_tests_success
|
coveralls
|
||||||
|
|||||||
19
README.md
19
README.md
@@ -1,8 +1,5 @@
|
|||||||
[](https://runbot.odoo-community.org/runbot/repo/github-com-oca-report-print-send-144)
|
[](https://travis-ci.org/OCA/report-print-send)
|
||||||
[](https://travis-ci.org/OCA/report-print-send)
|
[](https://coveralls.io/r/OCA/report-print-send?branch=6.1)
|
||||||
[](https://coveralls.io/r/OCA/report-print-send?branch=7.0)
|
|
||||||
[](https://codeclimate.com/github/OCA/report-pint-send)
|
|
||||||
|
|
||||||
|
|
||||||
Report - Printing and Sending
|
Report - Printing and Sending
|
||||||
=============================
|
=============================
|
||||||
@@ -13,15 +10,3 @@ This project aim to deal with modules related to manage document printing and se
|
|||||||
- Add an printing queue
|
- Add an printing queue
|
||||||
- Allow to choose printer
|
- Allow to choose printer
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
Translation Status
|
|
||||||
------------------
|
|
||||||
[](https://www.transifex.com/projects/p/OCA-report-print-send-7-0)
|
|
||||||
|
|
||||||
----
|
|
||||||
|
|
||||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
||||||
mission is to support the collaborative development of Odoo features and
|
|
||||||
promote its widespread use.
|
|
||||||
|
|
||||||
http://odoo-community.org/
|
|
||||||
|
|||||||
4
base_report_to_printer/AUTHORS.txt
Normal file
4
base_report_to_printer/AUTHORS.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Ferran Pegueroles <ferran@pegueroles.com>
|
||||||
|
Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
|
Davide Corio <davide.corio@agilebg.com>
|
||||||
|
Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
# All Rights Reserved
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
@@ -22,9 +21,5 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
from . import printing
|
import printing
|
||||||
from . import report_xml_action
|
import wizard
|
||||||
from . import report_service
|
|
||||||
from . import users
|
|
||||||
from . import ir_report
|
|
||||||
from . import wizard
|
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
# All Rights Reserved
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
@@ -24,77 +23,47 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
{
|
{
|
||||||
'name': "Report to printer",
|
'name': "Report to printer",
|
||||||
'version': '0.2',
|
'version': '0.1',
|
||||||
'category': 'Generic Modules/Base',
|
'category': 'Generic Modules/Base',
|
||||||
'description': """
|
'description': """
|
||||||
Report to printer
|
Extracted from printjob ( http://apps.openerp.com/addon/1727 ), this module allows to send reports to a printer attached to the server. Settings can be configured globaly, per user, per report and per user and report.
|
||||||
-----------------
|
|
||||||
This module allows users to send reports to a printer attached to the server.
|
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
=============
|
||||||
|
|
||||||
It adds an optional behaviour on reports to send it directly to a printer.
|
.. image:: http://planet.domsense.com/wp-content/uploads/2011/09/printing-menu.png
|
||||||
|
:width: 400 px
|
||||||
|
|
||||||
* `Send to Client` is the default behavious providing you a downloadable PDF
|
First of all, you have to load CUPS printers in OpenERP. You can use a wizard that retrieves them automatically. You just have to click on Update Printers from CUPS and printers will appear within the available printers list.
|
||||||
* `Send to Printer` prints the report on selected printer
|
|
||||||
|
|
||||||
Report behaviour is defined by settings.
|
In the next step you will configure the reports to send to the printers.
|
||||||
|
|
||||||
|
.. image:: http://planet.domsense.com/wp-content/uploads/2011/09/reports.png
|
||||||
|
:width: 400 px
|
||||||
|
|
||||||
Settings can be configured:
|
Through the report form you can define the system’s behaviour while producing the report.
|
||||||
|
|
||||||
* globaly
|
.. image:: http://planet.domsense.com/wp-content/uploads/2011/09/report-configuration.png
|
||||||
* per user
|
:width: 400 px
|
||||||
* per report
|
|
||||||
* per user and report
|
|
||||||
* per company and report
|
|
||||||
* per user/company and report
|
|
||||||
|
|
||||||
|
You can set a global behaviour, or differentiate it according to the user who’s printing. In the example, the global behaviour defines to send the report to client directly (Send to Client), therefore without sending it to the printer. But if user elbati is printing, the report will be sent to the selected printer (Send to Printer).
|
||||||
|
|
||||||
After installing enable the "Printing / Print Operator" option under access
|
You can also define a default behaviour associated to the user, in order to establish whether a certain user, when not differently set, wants to send the reports always to a specific printer or not.
|
||||||
rights to give users the ability to view the print menu.
|
|
||||||
|
|
||||||
|
After finishing the configuration, you will just have to click on printing button associated to the report (or launch the report by a wizard or whatever) and the system will automatically send the report to the previously set printer
|
||||||
To show all available printers for your server, uses
|
""",
|
||||||
`Settings/Configuration/Printing/Update Printers from CUPS` wizard.
|
'author': ['Agile Business Group', 'Pegueroles SCP', 'NaN'],
|
||||||
|
|
||||||
|
|
||||||
Then goto the user profile and set the users printing action and default
|
|
||||||
printer.
|
|
||||||
|
|
||||||
|
|
||||||
Dependencies
|
|
||||||
------------
|
|
||||||
|
|
||||||
This module requires pycups
|
|
||||||
https://pypi.python.org/pypi/pycups
|
|
||||||
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Ferran Pegueroles <ferran@pegueroles.com>
|
|
||||||
* Albert Cervera i Areny <albert@nan-tic.com>
|
|
||||||
* Davide Corio <davide.corio@agilebg.com>
|
|
||||||
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
|
||||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
|
||||||
* Lionel Sausin <ls@numerigraphe.com>
|
|
||||||
|
|
||||||
""",
|
|
||||||
'author': "Agile Business Group & Domsense, Pegueroles SCP, NaN,"
|
|
||||||
"Odoo Community Association (OCA)",
|
|
||||||
'website': 'http://www.agilebg.com',
|
'website': 'http://www.agilebg.com',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
"depends": ['base', 'base_calendar'],
|
"depends" : ['base', 'base_calendar'],
|
||||||
'data': [
|
"init_xml" : [],
|
||||||
'security/security.xml',
|
"update_xml" : [
|
||||||
'printing_data.xml',
|
'printing_data.xml',
|
||||||
'printing_view.xml',
|
'printing_view.xml',
|
||||||
'wizard/update_printers.xml',
|
'wizard/update_printers.xml',
|
||||||
],
|
'security/security.xml',
|
||||||
'installable': True,
|
],
|
||||||
'auto_install': False,
|
"demo_xml" : [],
|
||||||
'application': True,
|
"active": False,
|
||||||
'external_dependencies': {
|
"installable": True
|
||||||
'python': ['cups']
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/am/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: am\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ar/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ar\n"
|
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "النوع"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "النموذج"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "المستخدمون"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "المستخدم"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "الحالة"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "الاسم"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "الأمن"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "الإجراءات"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "إلغاء"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -4,10 +4,10 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OpenERP Server 7.0\n"
|
"Project-Id-Version: OpenERP Server 6.0.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: support@openerp.com\n"
|
||||||
"POT-Creation-Date: 2013-11-05 14:48+0000\n"
|
"POT-Creation-Date: 2011-09-26 09:06+0000\n"
|
||||||
"PO-Revision-Date: 2013-11-05 14:48+0000\n"
|
"PO-Revision-Date: 2011-09-26 09:06+0000\n"
|
||||||
"Last-Translator: <>\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -15,6 +15,11 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: \n"
|
||||||
"Plural-Forms: \n"
|
"Plural-Forms: \n"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: sql_constraint:res.users:0
|
||||||
|
msgid "You can not have two users with the same login !"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Unavailable"
|
msgid "Unavailable"
|
||||||
@@ -30,40 +35,46 @@ msgstr ""
|
|||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: field:printing.printer,status:0
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,system_name:0
|
#: field:printing.printer,system_name:0
|
||||||
msgid "System Name"
|
msgid "System Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: constraint:res.users:0
|
||||||
|
msgid "The chosen company is not in the allowed companies for this user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,location:0
|
#: field:printing.printer,location:0
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
||||||
#: view:printing.printer:0
|
#: view:printing.printer:0
|
||||||
msgid "Printers"
|
msgid "Printers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:res.users,printing_action:0
|
#: field:res.users,printing_action:0
|
||||||
msgid "Printing Action"
|
msgid "Printing Action"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.action,type:0
|
#: model:ir.module.module,description:base_report_to_printer.module_meta_information
|
||||||
msgid "Type"
|
msgid "Extracted from printjob ( http://apps.openerp.com/addon/1727 ), this module allows to send reports to a printer attached to the server. Settings can be configured globaly, per user, per report and per user and report."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,model:0
|
#: field:printing.action,type:0
|
||||||
msgid "Model"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
@@ -78,22 +89,12 @@ msgstr ""
|
|||||||
msgid "Printer"
|
msgid "Printer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
||||||
#: view:printing.report.xml.action:0
|
#: view:printing.report.xml.action:0
|
||||||
msgid "Report Printing Actions"
|
msgid "Report Printing Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
||||||
msgid "Print Job Action"
|
msgid "Print Job Action"
|
||||||
@@ -110,13 +111,18 @@ msgid "Report"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,status:0
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_config
|
||||||
msgid "Status"
|
msgid "Configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
#: model:ir.module.module,shortdesc:base_report_to_printer.module_meta_information
|
||||||
msgid "Show Printers"
|
msgid "Report to printer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.model,name:base_report_to_printer.model_printjob_printer_update_wizard
|
||||||
|
msgid "printjob.printer.update.wizard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
@@ -142,7 +148,7 @@ msgid "Default Printer"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:186
|
#: code:addons/base_report_to_printer/printing.py:189
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Client"
|
msgid "Send to Client"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -152,6 +158,11 @@ msgstr ""
|
|||||||
msgid "URI"
|
msgid "URI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
||||||
|
msgid "printing.printer.update.wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
||||||
@@ -160,7 +171,7 @@ msgid "Update Printers from CUPS"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:185
|
#: code:addons/base_report_to_printer/printing.py:188
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Printer"
|
msgid "Send to Printer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -183,8 +194,8 @@ msgid "Action"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:ir.actions.report.xml:0
|
#: field:printing.printer,model:0
|
||||||
msgid "Security"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
@@ -207,19 +218,29 @@ msgstr ""
|
|||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: view:printing.job:0
|
||||||
|
msgid "Print Jobs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
#: model:ir.model,name:base_report_to_printer.model_res_users
|
||||||
msgid "Printing / Print Operator"
|
msgid "res.users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:187
|
#: code:addons/base_report_to_printer/printing.py:190
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Use user's defaults"
|
msgid "Use user's defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
||||||
|
msgid "ir.actions.report.xml"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/bg/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: bg\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Вид"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Име"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Защита"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Действия"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Откажи"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/bs/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: bs\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Vrsta"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Korisnik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Sigurnost"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcije"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Otkaži"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ca/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ca\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Ubicació "
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipus"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Model"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Usuaris"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuari"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estat"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Error"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Acció"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguritat"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancel·la"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ca_ES/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ca_ES\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipus"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estat"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancel·la"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/cs/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: cs\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Druh"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Uživatel"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Název"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Zabezpečení"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akce"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Zrušit"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Danish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/da/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: da\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Brugere"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Navn"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Sikkerhed"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Aktioner"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuller"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Danish (Denmark) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/da_DK/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: da_DK\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Model"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,246 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2016-09-20 19:33+0000\n"
|
|
||||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\n"
|
|
||||||
"Language-Team: German (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/de/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: de\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr "Referenzen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr "Dieser Vorgang wird alle fehlenden Drucker vom CUPS-Server anlegen."
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr "Unbekannt"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr "Systembezeichnung"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Ort"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr "Drucker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Druck"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr "Druckaktion"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Art"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modell"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr "Nicht verfügbar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr "Verfügbar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr "Drucker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Benutzer"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr "Berichtsdruckaktionen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr "Benutzerspezifische Aktionen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr "Druckjob-Aktion"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Benutzer"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr "Bericht"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr "Zeige Drucker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr "Ok"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Bezeichnung"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr "Setze Vorgabe"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr "Sende an Client"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr "Vorgabedrucker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr "URI"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr "Berichte"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr "Drucker aus CUPS aktualisieren"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr "Sende an Drucker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr "Drucke"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Fehler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Aktion"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Sicherheit"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr "Statusmeldung"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr "Dieses Feld ermöglicht Aktion und Drucker pro Benutzer zu konfigurieren"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr "Server-Fehler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Aktionen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Stornieren"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr "Druckender / Druckanwender"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr "Verwende Benutzervorgaben"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/el_GR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: el_GR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Χρήστες"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr "Αναφορά"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Κατάσταση"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ονομασία"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Ασφάλεια"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Άκυρο"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/en_AU/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: en_AU\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancel"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/en_GB/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: en_GB\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "User"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Name"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Security"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Actions"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancel"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Imprimir"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modelo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Usuarios"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr "Aceptar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr "Reportes"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Error"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Acción"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_AR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_AR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_CL/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_CL\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_CO/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_CO\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_CR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_CR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_DO/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_DO\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_EC/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_EC\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_ES/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_ES\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Ubicación"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Usuarios"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_MX/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_MX\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modelo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_PE/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_PE\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_PY/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_PY\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/es_VE/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: es_VE\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Seguridad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acciones"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/et/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: et\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tüüp"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Kasutaja"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Olek"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nimi"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Turvalisus"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Tegevused"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Loobu"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Persian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fa/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fa\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "نوع"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "نام"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "امنیت"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "کنشها"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "لغو"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fi\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Sijainti"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Tulosta"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tyyppi"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Mall"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Käyttäjät"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Käyttäjä"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Tila"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nimi"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Virhe"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Toiminto"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Peruuta"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,81 +1,90 @@
|
|||||||
# Translation of OpenERP Server.
|
# French translation for report-print-send
|
||||||
# This file contains the translation of the following modules:
|
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
|
||||||
# * base_report_to_printer
|
# This file is distributed under the same license as the report-print-send package.
|
||||||
#
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
|
||||||
# Translators:
|
#
|
||||||
# Lionel Sausin <ls@numerigraphe.com>, 2015
|
|
||||||
# Yannick Vaucher <yannick.vaucher@camptocamp.com>, 2015
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
"Project-Id-Version: report-print-send\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
"POT-Creation-Date: 2011-09-26 09:06+0000\n"
|
||||||
"PO-Revision-Date: 2015-11-23 18:13+0000\n"
|
"PO-Revision-Date: 2014-02-25 15:10+0000\n"
|
||||||
"Last-Translator: Lionel Sausin <ls@numerigraphe.com>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: French (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fr/)\n"
|
"Language-Team: French <fr@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: fr\n"
|
"X-Launchpad-Export-Date: 2014-02-26 07:29+0000\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"X-Generator: Launchpad (build 16935)\n"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:res.users:0
|
#: sql_constraint:res.users:0
|
||||||
msgid "Preferences"
|
msgid "You can not have two users with the same login !"
|
||||||
msgstr "Préférences"
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: selection:printing.printer,status:0
|
||||||
|
msgid "Unavailable"
|
||||||
|
msgstr "Non disponible"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"This process will create all missing printers from the current CUPS server."
|
"This process will create all missing printers from the current CUPS server."
|
||||||
msgstr "Cette opération va créer les imprimantes manquantes à partir du server CUPS courant."
|
msgstr ""
|
||||||
|
"Cette opération va créer les imprimantes manquantes à partir du server CUPS "
|
||||||
|
"courant."
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Inconnu"
|
msgstr "Inconnu"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: field:printing.printer,status:0
|
||||||
|
msgid "Status"
|
||||||
|
msgstr "Statut"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,system_name:0
|
#: field:printing.printer,system_name:0
|
||||||
msgid "System Name"
|
msgid "System Name"
|
||||||
msgstr "Nom sytème"
|
msgstr "Nom sytème"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: constraint:res.users:0
|
||||||
|
msgid "The chosen company is not in the allowed companies for this user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,location:0
|
#: field:printing.printer,location:0
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr "Emplacement"
|
msgstr "Emplacement"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
||||||
#: view:printing.printer:0
|
#: view:printing.printer:0
|
||||||
msgid "Printers"
|
msgid "Printers"
|
||||||
msgstr "Imprimantes"
|
msgstr "Imprimantes"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Imprimer"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:res.users,printing_action:0
|
#: field:res.users,printing_action:0
|
||||||
msgid "Printing Action"
|
msgid "Printing Action"
|
||||||
msgstr "Action d'impression"
|
msgstr "Activité d'impression"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.module.module,description:base_report_to_printer.module_meta_information
|
||||||
|
msgid ""
|
||||||
|
"Extracted from printjob ( http://apps.openerp.com/addon/1727 ), this module "
|
||||||
|
"allows to send reports to a printer attached to the server. Settings can be "
|
||||||
|
"configured globaly, per user, per report and per user and report."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.action,type:0
|
#: field:printing.action,type:0
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Type"
|
msgstr "Type"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modèle"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr "Indisponible"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Available"
|
msgid "Available"
|
||||||
@@ -88,26 +97,16 @@ msgstr "Disponible"
|
|||||||
msgid "Printer"
|
msgid "Printer"
|
||||||
msgstr "Imprimante"
|
msgstr "Imprimante"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Utilisateurs"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
||||||
#: view:printing.report.xml.action:0
|
#: view:printing.report.xml.action:0
|
||||||
msgid "Report Printing Actions"
|
msgid "Report Printing Actions"
|
||||||
msgstr "Action d'impression de rapport"
|
msgstr "Rapport d'activité d'impression"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr "Action spécifique par utilisateur"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
||||||
msgid "Print Job Action"
|
msgid "Print Job Action"
|
||||||
msgstr "Action de tâche d'impression"
|
msgstr "Action de Job d'impression"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.report.xml.action,user_id:0
|
#: field:printing.report.xml.action,user_id:0
|
||||||
@@ -120,14 +119,19 @@ msgid "Report"
|
|||||||
msgstr "Rapport"
|
msgstr "Rapport"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,status:0
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_config
|
||||||
msgid "Status"
|
msgid "Configuration"
|
||||||
msgstr "État"
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
#: model:ir.module.module,shortdesc:base_report_to_printer.module_meta_information
|
||||||
msgid "Show Printers"
|
msgid "Report to printer"
|
||||||
msgstr "Afficher les imprimantes"
|
msgstr ""
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.model,name:base_report_to_printer.model_printjob_printer_update_wizard
|
||||||
|
msgid "printjob.printer.update.wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
@@ -135,40 +139,37 @@ msgid "Ok"
|
|||||||
msgstr "Ok"
|
msgstr "Ok"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
#: field:printing.action,name:0
|
||||||
|
#: field:printing.printer,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer:0
|
#: view:printing.printer:0
|
||||||
msgid "Set Default"
|
msgid "Set Default"
|
||||||
msgstr "Définir comme défaut"
|
msgstr "Définitir par défaut"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
#: field:printing.printer,default:0
|
||||||
|
#: field:res.users,printing_printer_id:0
|
||||||
|
msgid "Default Printer"
|
||||||
|
msgstr "Imprimante par défaut"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: code:addons/base_report_to_printer/printing.py:189
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Client"
|
msgid "Send to Client"
|
||||||
msgstr "Envoyer au client"
|
msgstr "Envoyer au client"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr "Imprimante par défaut"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,uri:0
|
#: field:printing.printer,uri:0
|
||||||
msgid "URI"
|
msgid "URI"
|
||||||
msgstr "URI"
|
msgstr "URI"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr "Rapports"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
||||||
msgid "printing.printer.update.wizard"
|
msgid "printing.printer.update.wizard"
|
||||||
msgstr "printing.printer.update.wizard"
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
||||||
@@ -178,16 +179,16 @@ msgid "Update Printers from CUPS"
|
|||||||
msgstr "Mettre à jour les imprimantes depuis CUPS"
|
msgstr "Mettre à jour les imprimantes depuis CUPS"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
#: code:addons/base_report_to_printer/printing.py:188
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Printer"
|
msgid "Send to Printer"
|
||||||
msgstr "Envoyer à l'imprimante"
|
msgstr "Envoyer à l'imprimante"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Printing"
|
msgid "Printing"
|
||||||
msgstr "Impression"
|
msgstr "Impression en cours"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
@@ -201,19 +202,20 @@ msgid "Action"
|
|||||||
msgstr "Action"
|
msgstr "Action"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:ir.actions.report.xml:0
|
#: field:printing.printer,model:0
|
||||||
msgid "Security"
|
msgid "Model"
|
||||||
msgstr "Sécurité"
|
msgstr "Modèle"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,status_message:0
|
#: field:printing.printer,status_message:0
|
||||||
msgid "Status Message"
|
msgid "Status Message"
|
||||||
msgstr "Message d'état"
|
msgstr "Message de Statut"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
#: help:ir.actions.report.xml,printing_action_ids:0
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
msgid "This field allows configuring action and printer on a per user basis"
|
||||||
msgstr "Ce champs permet de configurer les actions et les imprimantes par utilisateur"
|
msgstr ""
|
||||||
|
"Ce champs permet de configurer les action et les imprimante par utilisateur"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
@@ -225,18 +227,23 @@ msgstr "Erreur serveur"
|
|||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr "Actions"
|
msgstr "Actions"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: view:printing.job:0
|
||||||
|
msgid "Print Jobs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
#: model:ir.model,name:base_report_to_printer.model_res_users
|
||||||
msgid "Printing / Print Operator"
|
msgid "res.users"
|
||||||
msgstr "Impression / opérateur d'impression"
|
msgstr ""
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
#: code:addons/base_report_to_printer/printing.py:190
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Use user's defaults"
|
msgid "Use user's defaults"
|
||||||
msgstr "Utiliser la configuration par défaut de l'utilisateur"
|
msgstr "Utiliser la configuration par défaut de l'utilisateur"
|
||||||
@@ -244,4 +251,4 @@ msgstr "Utiliser la configuration par défaut de l'utilisateur"
|
|||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
||||||
msgid "ir.actions.report.xml"
|
msgid "ir.actions.report.xml"
|
||||||
msgstr "ir.actions.report.xml"
|
msgstr ""
|
||||||
|
|||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fr_CA/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fr_CA\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modèle"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fr_CH/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fr_CH\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Utilisateurs"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: French (France) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/fr_FR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: fr_FR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/gl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: gl\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuario"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/he/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: he\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "סוג"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "שם"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "אבטחה"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "פעולות"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "בטל"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Hindi (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/hi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: hi\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "रद्द"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/hr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: hr\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Model"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Korisnici"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Korisnik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Sigurnost"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcije"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Odustani"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/hr_HR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: hr_HR\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Korisnici"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Otkaži"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/hu/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: hu\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Típus"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modell, minta"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Felhasználó"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Állapot"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Név"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Biztonság"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Műveletek"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Mégsem"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/id/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: id\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Jenis"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Pengguna"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nama"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Keamanan"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Tindakan"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Batalkan"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,80 +1,95 @@
|
|||||||
# Translation of OpenERP Server.
|
# Translation of OpenERP Server.
|
||||||
# This file contains the translation of the following modules:
|
# This file contains the translation of the following modules:
|
||||||
# * base_report_to_printer
|
# * base_report_to_printer
|
||||||
#
|
#
|
||||||
# Translators:
|
|
||||||
# Paolo Valier, 2016
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
"Project-Id-Version: OpenERP Server 6.0.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: support@openerp.com\n"
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
"POT-Creation-Date: 2011-09-26 09:06+0000\n"
|
||||||
"PO-Revision-Date: 2017-01-14 17:51+0000\n"
|
"PO-Revision-Date: 2014-02-25 15:12+0000\n"
|
||||||
"Last-Translator: Paolo Valier\n"
|
"Last-Translator: Lorenzo Battistini - Agile BG "
|
||||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/it/)\n"
|
"<lorenzo.battistini@agilebg.com>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: \n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: it\n"
|
"X-Launchpad-Export-Date: 2014-02-26 07:29+0000\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"X-Generator: Launchpad (build 16935)\n"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:res.users:0
|
#: sql_constraint:res.users:0
|
||||||
msgid "Preferences"
|
msgid "You can not have two users with the same login !"
|
||||||
msgstr "Preferenze"
|
msgstr "Non è possibile inserire due utenti con lo stesso nome di login!"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: selection:printing.printer,status:0
|
||||||
|
msgid "Unavailable"
|
||||||
|
msgstr "Non disponibile"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
msgid ""
|
msgid ""
|
||||||
"This process will create all missing printers from the current CUPS server."
|
"This process will create all missing printers from the current CUPS server."
|
||||||
msgstr "Questo processo creerà tutte le stampante mancanti dal server CUPS corrente"
|
msgstr ""
|
||||||
|
"Questo processo creerà tutte le stampante mancanti dal server CUPS corrente"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Sconosciuto"
|
msgstr "Sconosciuto"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: field:printing.printer,status:0
|
||||||
|
msgid "Status"
|
||||||
|
msgstr "Stato"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,system_name:0
|
#: field:printing.printer,system_name:0
|
||||||
msgid "System Name"
|
msgid "System Name"
|
||||||
msgstr "Nome di sistema"
|
msgstr "Nome di sistema"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,location:0
|
#: constraint:res.users:0
|
||||||
msgid "Location"
|
msgid "The chosen company is not in the allowed companies for this user"
|
||||||
msgstr "Posizione"
|
msgstr ""
|
||||||
|
"L'azienda selezionata non è tra quelle a cui è permesso l'accesso a questo "
|
||||||
|
"utente"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
|
#: field:printing.printer,location:0
|
||||||
|
msgid "Location"
|
||||||
|
msgstr "Locazione"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
||||||
#: view:printing.printer:0
|
#: view:printing.printer:0
|
||||||
msgid "Printers"
|
msgid "Printers"
|
||||||
msgstr "Stampanti"
|
msgstr "Stampanti"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Stampa"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:res.users,printing_action:0
|
#: field:res.users,printing_action:0
|
||||||
msgid "Printing Action"
|
msgid "Printing Action"
|
||||||
msgstr "Azione di stampa"
|
msgstr "Azione di stampa"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.module.module,description:base_report_to_printer.module_meta_information
|
||||||
|
msgid ""
|
||||||
|
"Extracted from printjob ( http://apps.openerp.com/addon/1727 ), this module "
|
||||||
|
"allows to send reports to a printer attached to the server. Settings can be "
|
||||||
|
"configured globaly, per user, per report and per user and report."
|
||||||
|
msgstr ""
|
||||||
|
"Estratto da printjob ( http://apps.openerp.com/addon/1727 ), questo modulo "
|
||||||
|
"permetto di inviare i report alle stampanti collegate al server. Le "
|
||||||
|
"impostazioni possono essere configurate globalmente, per utente, per report "
|
||||||
|
"e per utente e report."
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.action,type:0
|
#: field:printing.action,type:0
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modello"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr "Non disponibile"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Available"
|
msgid "Available"
|
||||||
@@ -87,22 +102,12 @@ msgstr "Disponibile"
|
|||||||
msgid "Printer"
|
msgid "Printer"
|
||||||
msgstr "Stampante"
|
msgstr "Stampante"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Utenti"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
||||||
#: view:printing.report.xml.action:0
|
#: view:printing.report.xml.action:0
|
||||||
msgid "Report Printing Actions"
|
msgid "Report Printing Actions"
|
||||||
msgstr "Azioni di stampa report"
|
msgstr "Azioni di stampa report"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr "Azioni specifiche per utente"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
||||||
msgid "Print Job Action"
|
msgid "Print Job Action"
|
||||||
@@ -119,14 +124,19 @@ msgid "Report"
|
|||||||
msgstr "Report"
|
msgstr "Report"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,status:0
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_config
|
||||||
msgid "Status"
|
msgid "Configuration"
|
||||||
msgstr "Stato"
|
msgstr "Configurazione"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
#: model:ir.module.module,shortdesc:base_report_to_printer.module_meta_information
|
||||||
msgid "Show Printers"
|
msgid "Report to printer"
|
||||||
msgstr "Mostra Stampanti"
|
msgstr "Report alla stampante"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: model:ir.model,name:base_report_to_printer.model_printjob_printer_update_wizard
|
||||||
|
msgid "printjob.printer.update.wizard"
|
||||||
|
msgstr "printjob.printer.update.wizard"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
@@ -134,7 +144,8 @@ msgid "Ok"
|
|||||||
msgstr "Ok"
|
msgstr "Ok"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
#: field:printing.action,name:0
|
||||||
|
#: field:printing.printer,name:0
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nome"
|
msgstr "Nome"
|
||||||
|
|
||||||
@@ -144,26 +155,22 @@ msgid "Set Default"
|
|||||||
msgstr "Imposta default"
|
msgstr "Imposta default"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
#: field:printing.printer,default:0
|
||||||
|
#: field:res.users,printing_printer_id:0
|
||||||
|
msgid "Default Printer"
|
||||||
|
msgstr "Stampante di default"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: code:addons/base_report_to_printer/printing.py:189
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Client"
|
msgid "Send to Client"
|
||||||
msgstr "Invia al client"
|
msgstr "Invia al client"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr "Stampante di default"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,uri:0
|
#: field:printing.printer,uri:0
|
||||||
msgid "URI"
|
msgid "URI"
|
||||||
msgstr "URI"
|
msgstr "URI"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr "Report"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
||||||
msgid "printing.printer.update.wizard"
|
msgid "printing.printer.update.wizard"
|
||||||
@@ -177,16 +184,16 @@ msgid "Update Printers from CUPS"
|
|||||||
msgstr "Aggiorna stampanti da CUPS"
|
msgstr "Aggiorna stampanti da CUPS"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
#: code:addons/base_report_to_printer/printing.py:188
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Send to Printer"
|
msgid "Send to Printer"
|
||||||
msgstr "Invia alla stampante"
|
msgstr "Invia alla stampante"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
#: selection:printing.printer,status:0
|
||||||
msgid "Printing"
|
msgid "Printing"
|
||||||
msgstr "In stampa"
|
msgstr "Stampa"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
@@ -200,9 +207,9 @@ msgid "Action"
|
|||||||
msgstr "Azione"
|
msgstr "Azione"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:ir.actions.report.xml:0
|
#: field:printing.printer,model:0
|
||||||
msgid "Security"
|
msgid "Model"
|
||||||
msgstr "Sicurezza"
|
msgstr "Model"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: field:printing.printer,status_message:0
|
#: field:printing.printer,status_message:0
|
||||||
@@ -212,7 +219,9 @@ msgstr "Messaggio di stato"
|
|||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
#: help:ir.actions.report.xml,printing_action_ids:0
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
msgid "This field allows configuring action and printer on a per user basis"
|
||||||
msgstr "Questo campo permette di configurare azioni e stampanti sulla base degli utenti"
|
msgstr ""
|
||||||
|
"Questo campo permette di configurare azioni e stampanti sulla base degli "
|
||||||
|
"utenti"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: selection:printing.printer,status:0
|
#: selection:printing.printer,status:0
|
||||||
@@ -224,18 +233,23 @@ msgstr "Errore server"
|
|||||||
msgid "Actions"
|
msgid "Actions"
|
||||||
msgstr "Azioni"
|
msgstr "Azioni"
|
||||||
|
|
||||||
|
#. module: base_report_to_printer
|
||||||
|
#: view:printing.job:0
|
||||||
|
msgid "Print Jobs"
|
||||||
|
msgstr "Stampe"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: view:printing.printer.update.wizard:0
|
#: view:printing.printer.update.wizard:0
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annulla"
|
msgstr "Annulla"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
#: model:ir.model,name:base_report_to_printer.model_res_users
|
||||||
msgid "Printing / Print Operator"
|
msgid "res.users"
|
||||||
msgstr "In stampa / Operatore di stampa"
|
msgstr "res.users"
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
#. module: base_report_to_printer
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
#: code:addons/base_report_to_printer/printing.py:190
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Use user's defaults"
|
msgid "Use user's defaults"
|
||||||
msgstr "Utilizza i default dell'utente"
|
msgstr "Utilizza i default dell'utente"
|
||||||
|
|||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ja/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ja\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "タイプ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "ユーザ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名称"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "セキュリティ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "アクション"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "キャンセル"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Korean (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ko/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ko\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "유형"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "이름"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "보안"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "동작"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "취소"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Lao (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/lo/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: lo\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "ຍົກເລີອກ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/lt/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: lt\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipas"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Naudotojas"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Būsena"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Pavadinimas"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Saugumas"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Veiksmai"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Atšaukti"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/lt_LT/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: lt_LT\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Atšaukti"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/lv/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: lv\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tips"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Lietotājs"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Statuss"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nosaukums"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Drošība"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Darbības"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Atcelt"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/mk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: mk\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Тип"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Корисник"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Статус"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Име"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Безбедност"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Акции"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Откажи"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/mn/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: mn\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Төрөл"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Хэрэглэгч"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Төлөв"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Нэр"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Хамгаалалт"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Үйлдлүүд"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Цуцлах"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/nb/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nb\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Bruker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Navn"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Sikkerhet"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Handlinger"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Avbryt"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/nb_NO/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nb_NO\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Lukk"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/nl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nl\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Model"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Gebruikers"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Gebruiker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuleren"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/nl_BE/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nl_BE\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Gebruiker"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam:"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Acties"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Annuleren"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/nl_NL/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: nl_NL\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Locatie"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Verwijderen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Polish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/pl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: pl\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Typ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Użytkownik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nazwa"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Uprawnienia"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcje"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Anuluj"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/pt/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: pt\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modelo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Utilizador"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/pt_BR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: pt_BR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Location"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modelo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Usuários"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Usuário"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Ação"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Segurança"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Ações"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/pt_PT/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: pt_PT\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Modelo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Utilizador"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr "Relatório"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Estado"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Erro"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Cancelar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ro/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ro\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Utilizator"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Stare"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nume"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Anuleaza"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/ru/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: ru\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Печать"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Модель"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Пользователь"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Статус"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Название"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Отменена"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/sk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: sk\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Typ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Meno"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Bezpečnosť"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcie"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Zrušiť"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/sl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: sl\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Lokacija"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Natisni"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Model"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Uporabniki"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Uporabnik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr "Poročilo"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Status"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Napaka"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Ukrep"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Varnost"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Ukrepi"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Preklic"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/sr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: sr\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Bezbednost"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcije"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Otkaži"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/sr@latin/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: sr@latin\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Korisnik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime:"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Bezbednost"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Akcije"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Otkaži"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/sv/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: sv\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Typ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Användare"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Namn"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Säkerhet"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Åtgärder"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Avbryt"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/th/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: th\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "ชนิด"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "ผู้ใช้"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "สถานะ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "ชื่อ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "ความปลอดภัย"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "การดำเนินการ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "ยกเลิก"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/tr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: tr\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Yazdır"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipi"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Alan"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr "Uygun"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Kullanıcılar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Kullanıcı"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Durum"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Adı"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Eylem"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Güvenlik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Eylemler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Vazgeç"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr "ir.actions.report.xml"
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/tr_TR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: tr_TR\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr "Tercihler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr "Bilinmeyen"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr "Konum"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr "Yazıcılar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr "Yazdır"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "Tip"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr "Uygun değil"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr "Uygun"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr "Yazıcı"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "Kullanıcılar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr "Yazıcı eylemlerini raporla"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr "İş eylemini yazdır"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Kullanıcı"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr "Rapor"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "Durum"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr "Yazıcıları göster"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ad"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr "Öntanımları ayarla"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr "Öntanımlı yazıcı"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr "Raporlar"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr "CUPS 'tan yazıcıları güncelle"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr "Yazdırıyor"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr "Hata"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr "Eylem"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Güvenlik"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr "Sunucu hatası"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Eylemler"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "İptal et"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/uk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: uk\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Тип"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Name"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Безпека"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Дії"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Скасувати"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/vi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: vi\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Loại"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "Người sử dụng"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Tên"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "Bảo mật"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "Hành động"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Hủy bỏ"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/vi_VN/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: vi_VN\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Tên"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "Hủy"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/zh_CN/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: zh_CN\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "类型"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr "模型"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr "用户"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "用户"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr "状态"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名称"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "安全"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "动作"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "取消"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
# Translation of OpenERP Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * base_report_to_printer
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: report-print-send (7.0)\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-10-12 21:04+0000\n"
|
|
||||||
"PO-Revision-Date: 2015-09-28 11:33+0000\n"
|
|
||||||
"Last-Translator: <>\n"
|
|
||||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-report-print-send-7-0/language/zh_TW/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Language: zh_TW\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:res.users:0
|
|
||||||
msgid "Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid ""
|
|
||||||
"This process will create all missing printers from the current CUPS server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unknown"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,system_name:0
|
|
||||||
msgid "System Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,location:0
|
|
||||||
msgid "Location"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_printer_form
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Print"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:res.users,printing_action:0
|
|
||||||
msgid "Printing Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,type:0
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "類型"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,model:0
|
|
||||||
msgid "Model"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Unavailable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Available"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_printer_id:0
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer
|
|
||||||
#: field:printing.report.xml.action,printer_id:0
|
|
||||||
msgid "Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_res_users
|
|
||||||
msgid "Users"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_report_xml_action
|
|
||||||
#: view:printing.report.xml.action:0
|
|
||||||
msgid "Report Printing Actions"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Specific actions per user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_action
|
|
||||||
msgid "Print Job Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,user_id:0
|
|
||||||
msgid "User"
|
|
||||||
msgstr "使用者"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.report.xml.action,report_id:0
|
|
||||||
msgid "Report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status:0
|
|
||||||
msgid "Status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printing_printer_form
|
|
||||||
msgid "Show Printers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Ok"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.action,name:0 field:printing.printer,name:0
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名稱"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer:0
|
|
||||||
msgid "Set Default"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:216
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Client"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,default:0 field:res.users,printing_printer_id:0
|
|
||||||
msgid "Default Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,uri:0
|
|
||||||
msgid "URI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_reports
|
|
||||||
msgid "Reports"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_printing_printer_update_wizard
|
|
||||||
msgid "printing.printer.update.wizard"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.actions.act_window,name:base_report_to_printer.action_printer_update_wizard
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printer_update_wizard
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Update Printers from CUPS"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:215
|
|
||||||
#, python-format
|
|
||||||
msgid "Send to Printer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.ui.menu,name:base_report_to_printer.menu_printing_main
|
|
||||||
#: selection:printing.printer,status:0 view:res.users:0
|
|
||||||
msgid "Printing"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,property_printing_action:0
|
|
||||||
#: field:printing.report.xml.action,action:0
|
|
||||||
msgid "Action"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:ir.actions.report.xml:0
|
|
||||||
msgid "Security"
|
|
||||||
msgstr "安全"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:printing.printer,status_message:0
|
|
||||||
msgid "Status Message"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: help:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "This field allows configuring action and printer on a per user basis"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: selection:printing.printer,status:0
|
|
||||||
msgid "Server Error"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: field:ir.actions.report.xml,printing_action_ids:0
|
|
||||||
msgid "Actions"
|
|
||||||
msgstr "動作"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: view:printing.printer.update.wizard:0
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr "刪除"
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:res.groups,name:base_report_to_printer.res_groups_printingprintoperator0
|
|
||||||
msgid "Printing / Print Operator"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: code:addons/base_report_to_printer/printing.py:217
|
|
||||||
#, python-format
|
|
||||||
msgid "Use user's defaults"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: base_report_to_printer
|
|
||||||
#: model:ir.model,name:base_report_to_printer.model_ir_actions_report_xml
|
|
||||||
msgid "ir.actions.report.xml"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,178 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
##############################################################################
|
|
||||||
#
|
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as published
|
|
||||||
# by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
import os
|
|
||||||
import base64
|
|
||||||
from tempfile import mkstemp
|
|
||||||
import logging
|
|
||||||
import cups
|
|
||||||
|
|
||||||
from openerp.osv import orm, fields
|
|
||||||
|
|
||||||
|
|
||||||
class report_xml(orm.Model):
|
|
||||||
|
|
||||||
"""
|
|
||||||
Reports
|
|
||||||
"""
|
|
||||||
|
|
||||||
def set_print_options(self, cr, uid, report_id, format, context=None):
|
|
||||||
"""
|
|
||||||
Hook to set print options
|
|
||||||
"""
|
|
||||||
options = {}
|
|
||||||
if format == 'raw':
|
|
||||||
options['raw'] = True
|
|
||||||
return options
|
|
||||||
|
|
||||||
def print_direct(self, cr, uid, report_id, result, format, printer,
|
|
||||||
context=None):
|
|
||||||
fd, file_name = mkstemp()
|
|
||||||
try:
|
|
||||||
os.write(fd, base64.decodestring(result))
|
|
||||||
finally:
|
|
||||||
os.close(fd)
|
|
||||||
printer_system_name = ''
|
|
||||||
if printer:
|
|
||||||
if isinstance(printer, (basestring)):
|
|
||||||
printer_system_name = printer
|
|
||||||
else:
|
|
||||||
printer_system_name = printer.system_name
|
|
||||||
connection = cups.Connection()
|
|
||||||
|
|
||||||
options = self.set_print_options(cr, uid, report_id, format,
|
|
||||||
context=context)
|
|
||||||
|
|
||||||
connection.printFile(printer_system_name, file_name, file_name,
|
|
||||||
options=options)
|
|
||||||
logger = logging.getLogger('base_report_to_printer')
|
|
||||||
logger.info("Printing job : '%s'" % file_name)
|
|
||||||
return True
|
|
||||||
|
|
||||||
_inherit = 'ir.actions.report.xml'
|
|
||||||
_columns = {
|
|
||||||
'property_printing_action': fields.property(
|
|
||||||
# 'ir.actions.report.xml',
|
|
||||||
'printing.action',
|
|
||||||
type='many2one',
|
|
||||||
relation='printing.action',
|
|
||||||
string='Action',
|
|
||||||
view_load=True,
|
|
||||||
method=True,
|
|
||||||
),
|
|
||||||
'printing_printer_id': fields.many2one('printing.printer', 'Printer'),
|
|
||||||
'printing_action_ids': fields.one2many(
|
|
||||||
'printing.report.xml.action', 'report_id', 'Actions',
|
|
||||||
help='This field allows configuring action and printer on a per '
|
|
||||||
'user / company basis'),
|
|
||||||
}
|
|
||||||
|
|
||||||
def _get_company_id(self, cr, uid, context=None):
|
|
||||||
"""
|
|
||||||
As it may happend that OpenERP force the uid to 1 to bypass rule (in
|
|
||||||
function field), we may sometimes use the company of user
|
|
||||||
id 1 instead of the good one. Because we found the real uid and
|
|
||||||
company_id in the context in that case, I return this one. It also
|
|
||||||
allow other module to give the proper company_id in the context.
|
|
||||||
|
|
||||||
If force_company is in context, use it in prioriy.
|
|
||||||
|
|
||||||
If company_id not in context, take the one from uid.
|
|
||||||
"""
|
|
||||||
if context is None:
|
|
||||||
context = {}
|
|
||||||
res = context.get('force_company') or context.get('company_id')
|
|
||||||
if not res:
|
|
||||||
user_obj = self.pool['res.users']
|
|
||||||
res = user_obj.read(cr, uid, uid,
|
|
||||||
['company_id'],
|
|
||||||
context=context)['company_id'][0]
|
|
||||||
return res
|
|
||||||
|
|
||||||
def behaviour(self, cr, uid, ids, context=None):
|
|
||||||
result = {}
|
|
||||||
printer_obj = self.pool['printing.printer']
|
|
||||||
printing_act_obj = self.pool['printing.report.xml.action']
|
|
||||||
# Set hardcoded default action
|
|
||||||
default_action = 'client'
|
|
||||||
# Retrieve system wide printer
|
|
||||||
default_printer = printer_obj.get_default(cr, uid, context=context)
|
|
||||||
if default_printer:
|
|
||||||
default_printer = printer_obj.browse(cr, uid, default_printer,
|
|
||||||
context=context)
|
|
||||||
|
|
||||||
company_id = self._get_company_id(cr, uid, context)
|
|
||||||
|
|
||||||
# Retrieve user default values
|
|
||||||
user = self.pool['res.users'].browse(cr, uid, uid, context=context)
|
|
||||||
if user.printing_action:
|
|
||||||
default_action = user.printing_action
|
|
||||||
if user.printing_printer_id:
|
|
||||||
default_printer = user.printing_printer_id
|
|
||||||
|
|
||||||
for report in self.browse(cr, uid, ids, context):
|
|
||||||
action = default_action
|
|
||||||
printer = default_printer
|
|
||||||
|
|
||||||
# Retrieve report default values
|
|
||||||
if (report.property_printing_action and
|
|
||||||
report.property_printing_action.type != 'user_default'):
|
|
||||||
action = report.property_printing_action.type
|
|
||||||
if report.printing_printer_id:
|
|
||||||
printer = report.printing_printer_id
|
|
||||||
|
|
||||||
# Retrieve report-company specific values
|
|
||||||
act_ids = printing_act_obj.search(
|
|
||||||
cr, uid,
|
|
||||||
[('report_id', '=', report.id),
|
|
||||||
('user_id', '=', False),
|
|
||||||
('company_id', '=', company_id),
|
|
||||||
('action', '!=', 'user_default')], context=context)
|
|
||||||
if act_ids:
|
|
||||||
company_action = printing_act_obj.behaviour(
|
|
||||||
cr, uid, act_ids[0], context)
|
|
||||||
action = company_action['action']
|
|
||||||
if company_action['printer']:
|
|
||||||
printer = company_action['printer']
|
|
||||||
|
|
||||||
# Retrieve report-user specific values
|
|
||||||
act_ids = printing_act_obj.search(
|
|
||||||
cr, uid,
|
|
||||||
[('report_id', '=', report.id),
|
|
||||||
('user_id', '=', uid),
|
|
||||||
('action', '!=', 'user_default'),
|
|
||||||
'|', ('company_id', '=', company_id),
|
|
||||||
('company_id', '=', False)], context=context)
|
|
||||||
if act_ids:
|
|
||||||
user_action = printing_act_obj.behaviour(cr, uid, act_ids[0],
|
|
||||||
context)
|
|
||||||
action = user_action['action']
|
|
||||||
if user_action['printer']:
|
|
||||||
printer = user_action['printer']
|
|
||||||
|
|
||||||
result[report.id] = {
|
|
||||||
'action': action,
|
|
||||||
'printer': printer,
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
340
base_report_to_printer/printing.py
Normal file → Executable file
340
base_report_to_printer/printing.py
Normal file → Executable file
@@ -1,11 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
# All Rights Reserved
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
@@ -22,67 +21,48 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
import time
|
|
||||||
|
import os
|
||||||
|
import base64
|
||||||
|
import threading
|
||||||
|
from tempfile import mkstemp
|
||||||
|
|
||||||
import cups
|
import cups
|
||||||
|
import thread
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
from threading import Lock
|
from threading import Lock
|
||||||
|
|
||||||
from openerp import pooler
|
import netsvc
|
||||||
from openerp.osv import orm, fields
|
import tools
|
||||||
from openerp.tools.translate import _
|
import time
|
||||||
|
from osv import fields
|
||||||
|
from osv import osv
|
||||||
|
import pooler
|
||||||
|
import tools
|
||||||
|
from tools.translate import _
|
||||||
|
from base_calendar import base_calendar
|
||||||
|
import logging
|
||||||
|
|
||||||
|
|
||||||
class printing_printer(orm.Model):
|
#
|
||||||
|
# Printers
|
||||||
"""
|
#
|
||||||
Printers
|
class printing_printer(osv.osv):
|
||||||
"""
|
|
||||||
_name = "printing.printer"
|
_name = "printing.printer"
|
||||||
_description = "Printer"
|
_description = "Printer"
|
||||||
|
|
||||||
_columns = {
|
_columns = {
|
||||||
'name': fields.char(
|
'name' : fields.char('Name',size=64,required=True,select="1"),
|
||||||
'Name',
|
'system_name': fields.char('System Name',size=64,required=True,select="1"),
|
||||||
size=64,
|
'default':fields.boolean('Default Printer',required=True,readonly=True),
|
||||||
required=True,
|
'status': fields.selection([('unavailable','Unavailable'),('printing','Printing'),('unknown','Unknown'),('available','Available'),('error','Error'),('server-error','Server Error')], 'Status', required=True, readonly=True),
|
||||||
select="1"),
|
'status_message': fields.char('Status Message', size=500, readonly=True),
|
||||||
'system_name': fields.char(
|
'model': fields.char('Model', size=500, readonly=True),
|
||||||
'System Name',
|
'location': fields.char('Location', size=500, readonly=True),
|
||||||
size=64,
|
'uri': fields.char('URI', size=500, readonly=True),
|
||||||
required=True,
|
|
||||||
select="1"),
|
|
||||||
'default': fields.boolean(
|
|
||||||
'Default Printer',
|
|
||||||
readonly=True),
|
|
||||||
'status': fields.selection(
|
|
||||||
[('unavailable', 'Unavailable'),
|
|
||||||
('printing', 'Printing'),
|
|
||||||
('unknown', 'Unknown'),
|
|
||||||
('available', 'Available'),
|
|
||||||
('error', 'Error'),
|
|
||||||
('server-error', 'Server Error')],
|
|
||||||
'Status', required=True, readonly=True),
|
|
||||||
'status_message': fields.char(
|
|
||||||
'Status Message',
|
|
||||||
size=500,
|
|
||||||
readonly=True),
|
|
||||||
'model': fields.char(
|
|
||||||
'Model',
|
|
||||||
size=500,
|
|
||||||
readonly=True),
|
|
||||||
'location': fields.char(
|
|
||||||
'Location',
|
|
||||||
size=500,
|
|
||||||
readonly=True),
|
|
||||||
'uri': fields.char(
|
|
||||||
'URI',
|
|
||||||
size=500,
|
|
||||||
readonly=True),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_order = "name"
|
_order = "name"
|
||||||
|
|
||||||
_defaults = {
|
_defaults = {
|
||||||
'default': lambda *a: False,
|
'default': lambda *a: False,
|
||||||
'status': lambda *a: 'unknown',
|
'status': lambda *a: 'unknown',
|
||||||
@@ -94,7 +74,7 @@ class printing_printer(orm.Model):
|
|||||||
self.last_update = None
|
self.last_update = None
|
||||||
self.updating = False
|
self.updating = False
|
||||||
|
|
||||||
def update_printers_status(self, db_name, uid, context=None):
|
def update_printers_status(self, db_name, uid, context):
|
||||||
db, pool = pooler.get_db_and_pool(db_name)
|
db, pool = pooler.get_db_and_pool(db_name)
|
||||||
cr = db.cursor()
|
cr = db.cursor()
|
||||||
|
|
||||||
@@ -106,25 +86,23 @@ class printing_printer(orm.Model):
|
|||||||
server_error = True
|
server_error = True
|
||||||
|
|
||||||
mapping = {
|
mapping = {
|
||||||
3: 'available',
|
3 : 'available',
|
||||||
4: 'printing',
|
4 : 'printing',
|
||||||
5: 'error'
|
5 : 'error'
|
||||||
}
|
}
|
||||||
|
|
||||||
if context is None:
|
|
||||||
context = {}
|
|
||||||
try:
|
try:
|
||||||
# Skip update to avoid the thread being created again
|
# Skip update to avoid the thread being created again
|
||||||
ctx = context.copy()
|
ctx = context.copy()
|
||||||
ctx['skip_update'] = True
|
ctx['skip_update'] = True
|
||||||
ids = self.search(cr, uid, [], context=ctx)
|
ids = self.pool.get('printing.printer').search(cr, uid, [], context=ctx)
|
||||||
for printer in self.browse(cr, uid, ids, context=ctx):
|
for printer in self.pool.get('printing.printer').browse(cr, uid, ids, context=ctx):
|
||||||
vals = {}
|
vals = {}
|
||||||
if server_error:
|
if server_error:
|
||||||
status = 'server-error'
|
status = 'server-error'
|
||||||
elif printer.system_name in printers:
|
elif printer.system_name in printers:
|
||||||
info = printers[printer.system_name]
|
info = printers[printer.system_name]
|
||||||
status = mapping.get(info['printer-state'], 'unknown')
|
status = mapping.get( info['printer-state'], 'unknown' )
|
||||||
vals = {
|
vals = {
|
||||||
'model': info.get('printer-make-and-model', False),
|
'model': info.get('printer-make-and-model', False),
|
||||||
'location': info.get('printer-location', False),
|
'location': info.get('printer-location', False),
|
||||||
@@ -134,7 +112,7 @@ class printing_printer(orm.Model):
|
|||||||
status = 'unavailable'
|
status = 'unavailable'
|
||||||
|
|
||||||
vals['status'] = status
|
vals['status'] = status
|
||||||
self.write(cr, uid, [printer.id], vals, context=context)
|
self.pool.get('printing.printer').write(cr, uid, [printer.id], vals, context)
|
||||||
cr.commit()
|
cr.commit()
|
||||||
except:
|
except:
|
||||||
cr.rollback()
|
cr.rollback()
|
||||||
@@ -145,6 +123,7 @@ class printing_printer(orm.Model):
|
|||||||
self.updating = False
|
self.updating = False
|
||||||
self.last_update = time.time()
|
self.last_update = time.time()
|
||||||
|
|
||||||
|
|
||||||
def start_printer_update(self, cr, uid, context):
|
def start_printer_update(self, cr, uid, context):
|
||||||
self.lock.acquire()
|
self.lock.acquire()
|
||||||
if self.updating:
|
if self.updating:
|
||||||
@@ -152,59 +131,59 @@ class printing_printer(orm.Model):
|
|||||||
return
|
return
|
||||||
self.updating = True
|
self.updating = True
|
||||||
self.lock.release()
|
self.lock.release()
|
||||||
thread = Thread(target=self.update_printers_status,
|
thread = Thread(target=self.update_printers_status, args=(cr.dbname, uid, context.copy()))
|
||||||
args=(cr.dbname, uid, context.copy()))
|
|
||||||
thread.start()
|
thread.start()
|
||||||
|
|
||||||
def update(self, cr, uid, context=None):
|
def update(self, cr, uid, context=None):
|
||||||
"""Update printer status if current status is more than 10s old."""
|
if not context or context.get('skip_update'):
|
||||||
# We won't acquire locks - we're only assigning from immutable data
|
return
|
||||||
if not context or 'skip_update' in context:
|
self.lock.acquire()
|
||||||
return True
|
|
||||||
last_update = self.last_update
|
last_update = self.last_update
|
||||||
|
updating = self.updating
|
||||||
|
self.lock.release()
|
||||||
now = time.time()
|
now = time.time()
|
||||||
# Only update printer status if current status is more than
|
# Only update printer status if current status is more than 10 seconds old.
|
||||||
# 10 seconds old.
|
|
||||||
if not last_update or now - last_update > 10:
|
if not last_update or now - last_update > 10:
|
||||||
self.start_printer_update(cr, uid, context)
|
self.start_printer_update(cr, uid, context)
|
||||||
# Wait up to five seconds for printer status update
|
# Wait up to five seconds for printer status update
|
||||||
for _dummy in range(0, 5):
|
for x in range(0,5):
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
if not self.updating:
|
self.lock.acquire()
|
||||||
|
updating = self.updating
|
||||||
|
self.lock.release()
|
||||||
|
if not updating:
|
||||||
break
|
break
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def search(self, cr, uid, args, offset=0, limit=None, order=None,
|
def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False):
|
||||||
context=None, count=False):
|
|
||||||
self.update(cr, uid, context)
|
self.update(cr, uid, context)
|
||||||
return super(printing_printer, self
|
return super(printing_printer,self).search(cr, uid, args, offset, limit, order, context, count)
|
||||||
).search(cr, uid, args, offset,
|
|
||||||
limit, order, context, count)
|
|
||||||
|
|
||||||
def read(self, cr, uid, ids, fields=None, context=None,
|
def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'):
|
||||||
load='_classic_read'):
|
|
||||||
self.update(cr, uid, context)
|
self.update(cr, uid, context)
|
||||||
return super(printing_printer, self
|
return super(printing_printer,self).read(cr, uid, ids, fields, context, load)
|
||||||
).read(cr, uid, ids, fields, context, load)
|
|
||||||
|
|
||||||
def browse(self, cr, uid, ids, context=None):
|
def browse(self, cr, uid, ids, context=None):
|
||||||
self.update(cr, uid, context)
|
self.update(cr, uid, context)
|
||||||
return super(printing_printer, self).browse(cr, uid, ids, context)
|
return super(printing_printer,self).browse(cr, uid, ids, context)
|
||||||
|
|
||||||
def set_default(self, cr, uid, ids, context):
|
def set_default(self, cr, uid, ids, context):
|
||||||
if not ids:
|
if not ids:
|
||||||
return
|
return
|
||||||
default_ids = self.search(cr, uid, [('default', '=', True)])
|
default_ids= self.search(cr, uid,[('default','=',True)])
|
||||||
self.write(cr, uid, default_ids, {'default': False}, context)
|
self.write(cr, uid, default_ids, {'default':False}, context)
|
||||||
self.write(cr, uid, ids[0], {'default': True}, context)
|
self.write(cr, uid, ids[0], {'default':True}, context)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def get_default(self, cr, uid, context):
|
def get_default(self,cr,uid,context):
|
||||||
printer_ids = self.search(cr, uid, [('default', '=', True)])
|
printer_ids = self.search(cr, uid,[('default','=',True)])
|
||||||
if printer_ids:
|
if printer_ids:
|
||||||
return printer_ids[0]
|
return printer_ids[0]
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
printing_printer()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Actions
|
# Actions
|
||||||
@@ -212,18 +191,189 @@ class printing_printer(orm.Model):
|
|||||||
|
|
||||||
def _available_action_types(self, cr, uid, context=None):
|
def _available_action_types(self, cr, uid, context=None):
|
||||||
return [
|
return [
|
||||||
('server', _('Send to Printer')),
|
('server',_('Send to Printer')),
|
||||||
('client', _('Send to Client')),
|
('client',_('Send to Client')),
|
||||||
('user_default', _("Use user's defaults")),
|
('user_default',_("Use user's defaults")),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
class printing_action(osv.osv):
|
||||||
class printing_action(orm.Model):
|
|
||||||
_name = 'printing.action'
|
_name = 'printing.action'
|
||||||
_description = 'Print Job Action'
|
_description = 'Print Job Action'
|
||||||
|
|
||||||
_columns = {
|
_columns = {
|
||||||
'name': fields.char('Name', size=256, required=True),
|
'name': fields.char('Name', size=256, required=True),
|
||||||
'type': fields.selection(_available_action_types, 'Type',
|
'type': fields.selection(_available_action_types, 'Type', required=True),
|
||||||
required=True),
|
|
||||||
}
|
}
|
||||||
|
printing_action()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Users
|
||||||
|
#
|
||||||
|
|
||||||
|
class res_users(osv.osv):
|
||||||
|
_name = "res.users"
|
||||||
|
_inherit = "res.users"
|
||||||
|
|
||||||
|
def _user_available_action_types(self, cr, uid, context=None):
|
||||||
|
if context is None:
|
||||||
|
context={}
|
||||||
|
return [x for x in _available_action_types(self, cr, uid, context) if x[0] != 'user_default']
|
||||||
|
|
||||||
|
_columns = {
|
||||||
|
'printing_action': fields.selection(_user_available_action_types, 'Printing Action'),
|
||||||
|
'printing_printer_id': fields.many2one('printing.printer', 'Default Printer'),
|
||||||
|
}
|
||||||
|
|
||||||
|
res_users()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Reports
|
||||||
|
#
|
||||||
|
|
||||||
|
class report_xml(osv.osv):
|
||||||
|
|
||||||
|
def print_direct(self, cr, uid, result, format, printer):
|
||||||
|
fd, file_name = mkstemp()
|
||||||
|
try:
|
||||||
|
os.write(fd, base64.decodestring(result))
|
||||||
|
finally:
|
||||||
|
os.close(fd)
|
||||||
|
printer_system_name = ''
|
||||||
|
if printer:
|
||||||
|
if isinstance(printer, (basestring)):
|
||||||
|
printer_system_name = printer
|
||||||
|
else:
|
||||||
|
printer_system_name = printer.system_name
|
||||||
|
if format == 'raw':
|
||||||
|
# -l is the same as -o raw
|
||||||
|
cmd = "lpr -l -P %s %s" % (printer_system_name,file_name)
|
||||||
|
else:
|
||||||
|
cmd = "lpr -P %s %s" % (printer_system_name,file_name)
|
||||||
|
logger = logging.getLogger('base_report_to_printer')
|
||||||
|
logger.info("Printing job : '%s'" % cmd)
|
||||||
|
os.system(cmd)
|
||||||
|
return True
|
||||||
|
|
||||||
|
_inherit = 'ir.actions.report.xml'
|
||||||
|
_columns = {
|
||||||
|
'property_printing_action': fields.property(
|
||||||
|
#'ir.actions.report.xml',
|
||||||
|
'printing.action',
|
||||||
|
type='many2one',
|
||||||
|
relation='printing.action',
|
||||||
|
string='Action',
|
||||||
|
view_load=True,
|
||||||
|
method=True,
|
||||||
|
),
|
||||||
|
'printing_printer_id': fields.many2one('printing.printer', 'Printer'),
|
||||||
|
'printing_action_ids': fields.one2many('printing.report.xml.action', 'report_id', 'Actions', help='This field allows configuring action and printer on a per user basis'),
|
||||||
|
}
|
||||||
|
|
||||||
|
def behaviour(self, cr, uid, ids, context=None):
|
||||||
|
if context is None:
|
||||||
|
context={}
|
||||||
|
result = {}
|
||||||
|
|
||||||
|
# Set hardcoded default action
|
||||||
|
default_action = 'client'
|
||||||
|
# Retrieve system wide printer
|
||||||
|
default_printer = self.pool.get('printing.printer').get_default(cr,uid,context)
|
||||||
|
if default_printer:
|
||||||
|
default_printer = self.pool.get('printing.printer').browse(cr,uid,default_printer,context).system_name
|
||||||
|
|
||||||
|
|
||||||
|
# Retrieve user default values
|
||||||
|
user = self.pool.get('res.users').browse(cr, uid, context)
|
||||||
|
if user.printing_action:
|
||||||
|
default_action = user.printing_action
|
||||||
|
if user.printing_printer_id:
|
||||||
|
default_printer = user.printing_printer_id.system_name
|
||||||
|
|
||||||
|
for report in self.browse(cr, uid, ids, context):
|
||||||
|
action = default_action
|
||||||
|
printer = default_printer
|
||||||
|
|
||||||
|
# Retrieve report default values
|
||||||
|
if report.property_printing_action and report.property_printing_action.type != 'user_default':
|
||||||
|
action = report.property_printing_action.type
|
||||||
|
if report.printing_printer_id:
|
||||||
|
printer = report.printing_printer_id
|
||||||
|
|
||||||
|
# Retrieve report-user specific values
|
||||||
|
user_action = self.pool.get('printing.report.xml.action').behaviour(cr, uid, report.id, context)
|
||||||
|
if user_action and user_action['action'] != 'user_default':
|
||||||
|
action = user_action['action']
|
||||||
|
if user_action['printer']:
|
||||||
|
printer = user_action['printer']
|
||||||
|
|
||||||
|
result[report.id] = {
|
||||||
|
'action': action,
|
||||||
|
'printer': printer,
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
report_xml()
|
||||||
|
|
||||||
|
class report_xml_action(osv.osv):
|
||||||
|
_name = 'printing.report.xml.action'
|
||||||
|
_description = 'Report Printing Actions'
|
||||||
|
_columns = {
|
||||||
|
'report_id': fields.many2one('ir.actions.report.xml', 'Report', required=True, ondelete='cascade'),
|
||||||
|
'user_id': fields.many2one('res.users', 'User', required=True, ondelete='cascade'),
|
||||||
|
'action': fields.selection(_available_action_types, 'Action', required=True),
|
||||||
|
'printer_id': fields.many2one('printing.printer', 'Printer'),
|
||||||
|
}
|
||||||
|
|
||||||
|
def behaviour(self, cr, uid, report_id, context=None):
|
||||||
|
if context is None:
|
||||||
|
context={}
|
||||||
|
result = {}
|
||||||
|
ids = self.search(cr, uid, [('report_id','=',report_id),('user_id','=',uid)], context=context)
|
||||||
|
if not ids:
|
||||||
|
return False
|
||||||
|
action = self.browse(cr, uid, ids[0], context)
|
||||||
|
return {
|
||||||
|
'action': action.action,
|
||||||
|
'printer': action.printer_id.system_name,
|
||||||
|
}
|
||||||
|
report_xml_action()
|
||||||
|
|
||||||
|
class virtual_report_spool(base_calendar.virtual_report_spool):
|
||||||
|
|
||||||
|
def exp_report(self, db, uid, object, ids, datas=None, context=None):
|
||||||
|
res = super(virtual_report_spool, self).exp_report(db, uid, object, ids, datas, context)
|
||||||
|
self._reports[res]['report_name'] = object
|
||||||
|
return res
|
||||||
|
|
||||||
|
def exp_report_get(self, db, uid, report_id):
|
||||||
|
|
||||||
|
cr = pooler.get_db(db).cursor()
|
||||||
|
try:
|
||||||
|
pool = pooler.get_pool(cr.dbname)
|
||||||
|
# First of all load report defaults: name, action and printer
|
||||||
|
report_obj = pool.get('ir.actions.report.xml')
|
||||||
|
report = report_obj.search(cr,uid,[('report_name','=',self._reports[report_id]['report_name'])])
|
||||||
|
if report:
|
||||||
|
report = report_obj.browse(cr,uid,report[0])
|
||||||
|
name = report.name
|
||||||
|
data = report.behaviour()[report.id]
|
||||||
|
action = data['action']
|
||||||
|
printer = data['printer']
|
||||||
|
if action != 'client':
|
||||||
|
if (self._reports and self._reports.get(report_id, False) and self._reports[report_id].get('result', False)
|
||||||
|
and self._reports[report_id].get('format', False)):
|
||||||
|
report_obj.print_direct(cr, uid, base64.encodestring(self._reports[report_id]['result']),
|
||||||
|
self._reports[report_id]['format'], printer)
|
||||||
|
except:
|
||||||
|
cr.rollback()
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
cr.close()
|
||||||
|
|
||||||
|
res = super(virtual_report_spool, self).exp_report_get(db, uid, report_id)
|
||||||
|
return res
|
||||||
|
|
||||||
|
virtual_report_spool()
|
||||||
|
|
||||||
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
||||||
|
|||||||
34
base_report_to_printer/printing_data.xml
Normal file → Executable file
34
base_report_to_printer/printing_data.xml
Normal file → Executable file
@@ -1,20 +1,20 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<openerp>
|
<openerp>
|
||||||
<data>
|
<data>
|
||||||
<!-- printing.action -->
|
<!-- printing.action -->
|
||||||
<record model="printing.action" id="printing_action_1">
|
<record model="printing.action" id="printing_action_1">
|
||||||
<field name="name">Send to Printer</field>
|
<field name="name">Send to Printer</field>
|
||||||
<field name="type">server</field>
|
<field name="type">server</field>
|
||||||
</record>
|
</record>
|
||||||
<record model="printing.action" id="printing_action_2">
|
<record model="printing.action" id="printing_action_2">
|
||||||
<field name="name">Send to Client</field>
|
<field name="name">Send to Client</field>
|
||||||
<field name="type">client</field>
|
<field name="type">client</field>
|
||||||
</record>
|
</record>
|
||||||
<!-- properties -->
|
<!-- properties -->
|
||||||
<record forcecreate="True" id="property_printing_action" model="ir.property">
|
<record forcecreate="True" id="property_printing_action" model="ir.property">
|
||||||
<field name="name">property_printing_action</field>
|
<field name="name">property_printing_action</field>
|
||||||
<field name="fields_id" search="[('model','=','ir.actions.report.xml'),('name','=','property_printing_action')]"/>
|
<field name="fields_id" search="[('model','=','ir.actions.report.xml'),('name','=','property_printing_action')]"/>
|
||||||
<field name="value" eval="'printing.action,'+str(printing_action_2)"/>
|
<field name="value" eval="'printing.action,'+str(printing_action_2)"/>
|
||||||
</record>
|
</record>
|
||||||
</data>
|
</data>
|
||||||
</openerp>
|
</openerp>
|
||||||
|
|||||||
217
base_report_to_printer/printing_view.xml
Normal file → Executable file
217
base_report_to_printer/printing_view.xml
Normal file → Executable file
@@ -1,136 +1,113 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<openerp>
|
<openerp>
|
||||||
<data>
|
<data>
|
||||||
|
|
||||||
<menuitem name="Printing" id="menu_printing_main" parent="base.menu_administration" groups="res_groups_printingprintoperator0"/>
|
|
||||||
|
|
||||||
|
<menuitem name="Printing" id="menu_printing_main" icon="STOCK_PRINT" parent="base.menu_custom"/>
|
||||||
|
|
||||||
|
<menuitem name="Configuration" id="menu_printing_config" parent="menu_printing_main" />
|
||||||
|
|
||||||
<record model="ir.ui.view" id="view_printing_printer_form">
|
<record model="ir.ui.view" id="view_printing_printer_form">
|
||||||
<field name="name">printing.printer.form</field>
|
<field name="name">printing.printer.form</field>
|
||||||
<field name="model">printing.printer</field>
|
<field name="model">printing.printer</field>
|
||||||
<field name="arch" type="xml">
|
<field name="type">form</field>
|
||||||
<form string="Printers">
|
<field name="arch" type="xml">
|
||||||
<field name="name" select="1"/>
|
<form string="Printers">
|
||||||
<field name="system_name" select="1"/>
|
<field name="name" select="1"/>
|
||||||
<group col="3" colspan="2">
|
<field name="system_name" select="1"/>
|
||||||
<field name="default" select="1"/>
|
<group col="3" colspan="2">
|
||||||
<button name="set_default" string="Set Default" type="object"/>
|
<field name="default" select="1"/>
|
||||||
</group>
|
<button name="set_default" string="Set Default" type="object"/>
|
||||||
<field name="uri" select="2"/>
|
</group>
|
||||||
<field name="model" select="2"/>
|
<field name="uri" select="2"/>
|
||||||
<field name="location" select="2"/>
|
<field name="model" select="2"/>
|
||||||
<field name="status" select="1"/>
|
<field name="location" select="2"/>
|
||||||
<field name="status_message" select="2"/>
|
<field name="status" select="1"/>
|
||||||
</form>
|
<field name="status_message" select="2"/>
|
||||||
</field>
|
</form>
|
||||||
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record model="ir.ui.view" id="view_printing_printer_tree">
|
<record model="ir.ui.view" id="view_printing_printer_tree">
|
||||||
<field name="name">printing.printer.tree</field>
|
<field name="name">printing.printer.tree</field>
|
||||||
<field name="model">printing.printer</field>
|
<field name="model">printing.printer</field>
|
||||||
<field name="arch" type="xml">
|
<field name="type">tree</field>
|
||||||
<tree string="Printers" colors="green:status=='available'; orange:status=='printing'; red:1;">
|
<field name="arch" type="xml">
|
||||||
<field name="default"/>
|
<tree string="Printers" colors="green:status=='available'; orange:status=='printing'; red:1;">
|
||||||
<field name="name"/>
|
<field name="default"/>
|
||||||
<field name="system_name"/>
|
<field name="name"/>
|
||||||
<field name="status"/>
|
<field name="system_name"/>
|
||||||
</tree>
|
<field name="status"/>
|
||||||
</field>
|
</tree>
|
||||||
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record model="ir.actions.act_window" id="action_printing_printer_form">
|
<record model="ir.actions.act_window" id="action_printing_printer_form">
|
||||||
<field name="name">Show Printers</field>
|
<field name="name">Printers</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="res_model">printing.printer</field>
|
||||||
<field name="res_model">printing.printer</field>
|
<field name="view_type">form</field>
|
||||||
<field name="view_type">form</field>
|
<field name="view_mode">tree,form</field>
|
||||||
<field name="view_mode">tree,form</field>
|
<field name="auto_refresh">20</field>
|
||||||
<field name="auto_refresh">20</field>
|
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem name="Printers"
|
<menuitem name="Printers"
|
||||||
id="menu_printing_printer_form"
|
id="menu_printing_printer_form"
|
||||||
parent="menu_printing_main"
|
parent="menu_printing_config"
|
||||||
action="action_printing_printer_form"/>
|
icon="STOCK_PRINT"
|
||||||
|
action="action_printing_printer_form"/>
|
||||||
|
|
||||||
<record model="ir.ui.view" id="action_report_xml_form">
|
<record model="ir.ui.view" id="action_report_xml_form">
|
||||||
<field name="name">ir.actions.report.xml.printing</field>
|
<field name="name">ir.actions.report.xml.printing</field>
|
||||||
<field name="model">ir.actions.report.xml</field>
|
<field name="model">ir.actions.report.xml</field>
|
||||||
<field name="inherit_id" ref="base.act_report_xml_view" />
|
<field name="type">form</field>
|
||||||
<field name="arch" type="xml">
|
<field name="inherit_id" ref="base.act_report_xml_view" />
|
||||||
<page string="Security" position="after">
|
<field name="arch" type="xml">
|
||||||
<page string="Print">
|
<field name="groups_id" position="before">
|
||||||
<group>
|
<field name="property_printing_action"/>
|
||||||
<field name="property_printing_action"/>
|
<field name="printing_printer_id"/>
|
||||||
<field name="printing_printer_id"/>
|
<field name="printing_action_ids" colspan="4"/>
|
||||||
</group>
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
<separator string="Specific actions per user"/>
|
<!-- res.users -->
|
||||||
<field name="printing_action_ids"/>
|
<record model="ir.ui.view" id="view_printing_users_form">
|
||||||
</page>
|
<field name="name">res.users.form.printing</field>
|
||||||
</page>
|
<field name="type">form</field>
|
||||||
</field>
|
<field name="model">res.users</field>
|
||||||
</record>
|
<field name="inherit_id" ref="base.view_users_form" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="context_tz" position="after">
|
||||||
|
<field name="printing_action" />
|
||||||
|
<field name="printing_printer_id" />
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
<!-- res.users -->
|
<!-- printing.report.xml.action -->
|
||||||
<record model="ir.ui.view" id="view_printing_users_form">
|
<record model="ir.ui.view" id="printing_report_xml_action_form">
|
||||||
<field name="name">res.users.form.printing</field>
|
<field name="name">printing.report.xml.action.form</field>
|
||||||
<field name="model">res.users</field>
|
<field name="model">printing.report.xml.action</field>
|
||||||
<field name="inherit_id" ref="base.view_users_form" />
|
<field name="type">form</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<page string="Preferences">
|
<form string="Report Printing Actions">
|
||||||
<group name="printing">
|
<field name="user_id"/>
|
||||||
<field name="printing_action"/>
|
<label string=""/>
|
||||||
<field name="printing_printer_id"/>
|
<field name="action"/>
|
||||||
</group>
|
<field name="printer_id" select="1"/>
|
||||||
</page>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
<record model="ir.ui.view" id="printing_report_xml_action_tree">
|
||||||
<!-- "My Preferences -->
|
<field name="name">printing.report.xml.action.tree</field>
|
||||||
<record model="ir.ui.view" id="view_printing_users_prefs">
|
<field name="model">printing.report.xml.action</field>
|
||||||
<field name="name">res.users.form.printing</field>
|
<field name="type">tree</field>
|
||||||
<field name="model">res.users</field>
|
<field name="arch" type="xml">
|
||||||
<field name="inherit_id" ref="base.view_users_form_simple_modif" />
|
<tree string="Report Printing Actions">
|
||||||
<field name="arch" type="xml">
|
<field name="user_id"/>
|
||||||
<footer position="before">
|
<field name="action" />
|
||||||
<group string="Printing" name="printing">
|
<field name="printer_id" />
|
||||||
<field name="printing_action"/>
|
</tree>
|
||||||
<field name="printing_printer_id"/>
|
</field>
|
||||||
</group>
|
</record>
|
||||||
</footer>
|
</data>
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<!-- printing.report.xml.action -->
|
|
||||||
<record model="ir.ui.view" id="printing_report_xml_action_form">
|
|
||||||
<field name="name">printing.report.xml.action.form</field>
|
|
||||||
<field name="model">printing.report.xml.action</field>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<form string="Report Printing Actions">
|
|
||||||
<group col="2">
|
|
||||||
<field name="company_id" groups="base.group_multi_company" attrs="{'required':[('user_id', '=', False)]}"/>
|
|
||||||
<field name="user_id" attrs="{'required':[('company_id', '=', False)]}"/>
|
|
||||||
<field name="action"/>
|
|
||||||
<field name="printer_id" select="1"/>
|
|
||||||
</group>
|
|
||||||
</form>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
<record model="ir.ui.view" id="printing_report_xml_action_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="company_id" groups="base.group_multi_company"/>
|
|
||||||
<field name="user_id"/>
|
|
||||||
<field name="action" />
|
|
||||||
<field name="printer_id" />
|
|
||||||
</tree>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<!-- Add a shorcut to "Actions/Report" in the Printing menu -->
|
|
||||||
<menuitem id="menu_printing_reports"
|
|
||||||
parent="menu_printing_main"
|
|
||||||
action="base.ir_action_report_xml"/>
|
|
||||||
</data>
|
|
||||||
</openerp>
|
</openerp>
|
||||||
|
|||||||
@@ -1,82 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
##############################################################################
|
|
||||||
#
|
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as published
|
|
||||||
# by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
import base64
|
|
||||||
|
|
||||||
from openerp import pooler
|
|
||||||
from openerp.addons.base_calendar import base_calendar
|
|
||||||
|
|
||||||
|
|
||||||
class virtual_report_spool(base_calendar.virtual_report_spool):
|
|
||||||
|
|
||||||
def exp_report(self, db, uid, object, ids, datas=None, context=None):
|
|
||||||
res = super(virtual_report_spool, self).exp_report(
|
|
||||||
db, uid, object, ids, datas, context)
|
|
||||||
self._reports[res]['report_name'] = object
|
|
||||||
return res
|
|
||||||
|
|
||||||
def exp_report_get(self, db, uid, report_id):
|
|
||||||
|
|
||||||
cr = pooler.get_db(db).cursor()
|
|
||||||
try:
|
|
||||||
pool = pooler.get_pool(cr.dbname)
|
|
||||||
# First of all load report defaults: name, action and printer
|
|
||||||
report_obj = pool.get('ir.actions.report.xml')
|
|
||||||
report = report_obj.search(
|
|
||||||
cr, uid, [('report_name', '=',
|
|
||||||
self._reports[report_id]['report_name'])])
|
|
||||||
if report:
|
|
||||||
report = report_obj.browse(cr, uid, report[0])
|
|
||||||
data = report.behaviour()[report.id]
|
|
||||||
action = data['action']
|
|
||||||
printer = data['printer']
|
|
||||||
if action != 'client':
|
|
||||||
if (self._reports and
|
|
||||||
self._reports.get(report_id, False) and
|
|
||||||
self._reports[report_id].get('result', False) and
|
|
||||||
self._reports[report_id].get('format', False)):
|
|
||||||
report_obj.print_direct(
|
|
||||||
cr, uid, report.id, base64.encodestring(
|
|
||||||
self._reports[report_id]['result']),
|
|
||||||
self._reports[report_id]['format'], printer)
|
|
||||||
# FIXME "Warning" removed as it breaks the workflow
|
|
||||||
# it would be interesting to have a dialog box to
|
|
||||||
# confirm if we really want to print
|
|
||||||
# in this case it must be with a by pass parameter to
|
|
||||||
# allow massive impression
|
|
||||||
# raise osv.except_osv(
|
|
||||||
# _('Printing...'),
|
|
||||||
# _('Document sent to printer %s') % (printer,))
|
|
||||||
|
|
||||||
except:
|
|
||||||
cr.rollback()
|
|
||||||
raise
|
|
||||||
finally:
|
|
||||||
cr.close()
|
|
||||||
|
|
||||||
res = super(virtual_report_spool, self).exp_report_get(db, uid,
|
|
||||||
report_id)
|
|
||||||
return res
|
|
||||||
|
|
||||||
virtual_report_spool()
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
##############################################################################
|
|
||||||
#
|
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as published
|
|
||||||
# by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
from openerp.osv import orm, fields
|
|
||||||
|
|
||||||
from openerp.addons.base_report_to_printer.printing import \
|
|
||||||
_available_action_types
|
|
||||||
|
|
||||||
|
|
||||||
class report_xml_action(orm.Model):
|
|
||||||
_name = 'printing.report.xml.action'
|
|
||||||
_description = 'Report Printing Actions'
|
|
||||||
_columns = {
|
|
||||||
'report_id': fields.many2one('ir.actions.report.xml', 'Report',
|
|
||||||
required=True, ondelete='cascade'),
|
|
||||||
'user_id': fields.many2one('res.users', 'User', ondelete='cascade'),
|
|
||||||
'company_id': fields.many2one('res.company', 'Company',
|
|
||||||
ondelete='cascade'),
|
|
||||||
'action': fields.selection(_available_action_types, 'Action',
|
|
||||||
required=True),
|
|
||||||
'printer_id': fields.many2one('printing.printer', 'Printer'),
|
|
||||||
}
|
|
||||||
|
|
||||||
def behaviour(self, cr, uid, act_id, context=None):
|
|
||||||
if not act_id:
|
|
||||||
return False
|
|
||||||
action = self.browse(cr, uid, act_id, context=context)
|
|
||||||
return {
|
|
||||||
'action': action.action,
|
|
||||||
'printer': action.printer_id,
|
|
||||||
}
|
|
||||||
8
base_report_to_printer/security/security.xml
Normal file → Executable file
8
base_report_to_printer/security/security.xml
Normal file → Executable file
@@ -31,7 +31,13 @@
|
|||||||
<field eval="1" name="perm_create"/>
|
<field eval="1" name="perm_create"/>
|
||||||
<field name="group_id" ref="res_groups_printingprintoperator0"/>
|
<field name="group_id" ref="res_groups_printingprintoperator0"/>
|
||||||
</record>
|
</record>
|
||||||
|
<record id="menu_printing_printer_form" model="ir.ui.menu">
|
||||||
|
<field eval="[(6,0,[ref('res_groups_printingprintoperator0')])]" name="groups_id"/>
|
||||||
|
<field eval=""""Printers"""" name="name"/>
|
||||||
|
<field eval="10" name="sequence"/>
|
||||||
|
<field name="parent_id" ref="menu_printing_config"/>
|
||||||
|
<field eval=""""STOCK_PRINT"""" name="icon"/>
|
||||||
|
</record>
|
||||||
</data>
|
</data>
|
||||||
<data>
|
<data>
|
||||||
<record id="ir_model_access_printingprinterall0" model="ir.model.access">
|
<record id="ir_model_access_printingprinterall0" model="ir.model.access">
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
##############################################################################
|
|
||||||
#
|
|
||||||
# Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
|
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
|
||||||
# Copyright (C) 2013 Camptocamp (<http://www.camptocamp.com>)
|
|
||||||
# All Rights Reserved
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU Affero General Public License as published
|
|
||||||
# by the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU Affero General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
from openerp.osv import orm, fields
|
|
||||||
|
|
||||||
from openerp.addons.base_report_to_printer.printing import \
|
|
||||||
_available_action_types
|
|
||||||
|
|
||||||
|
|
||||||
class res_users(orm.Model):
|
|
||||||
|
|
||||||
"""
|
|
||||||
Users
|
|
||||||
"""
|
|
||||||
_name = "res.users"
|
|
||||||
_inherit = "res.users"
|
|
||||||
|
|
||||||
def _user_available_action_types(self, cr, uid, context=None):
|
|
||||||
if context is None:
|
|
||||||
context = {}
|
|
||||||
return [x for x in _available_action_types(self, cr, uid, context)
|
|
||||||
if x[0] != 'user_default']
|
|
||||||
|
|
||||||
_columns = {
|
|
||||||
'printing_action': fields.selection(_user_available_action_types,
|
|
||||||
'Printing Action'),
|
|
||||||
'printing_printer_id': fields.many2one('printing.printer',
|
|
||||||
'Default Printer'),
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
||||||
@@ -20,4 +20,4 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
from . import update_printers
|
import update_printers
|
||||||
|
|||||||
26
base_report_to_printer/wizard/update_printers.py
Normal file → Executable file
26
base_report_to_printer/wizard/update_printers.py
Normal file → Executable file
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
# Copyright (c) 2009 Albert Cervera i Areny <albert@nan-tic.com>
|
||||||
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
# Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
|
||||||
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
# Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
|
||||||
@@ -21,31 +21,37 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
import time
|
||||||
|
import subprocess
|
||||||
import cups
|
import cups
|
||||||
|
|
||||||
from openerp.osv import orm
|
import netsvc
|
||||||
|
from osv import fields
|
||||||
|
from osv import osv
|
||||||
|
from tools.translate import _
|
||||||
|
|
||||||
|
|
||||||
class printing_printer_update_wizard(orm.TransientModel):
|
class printing_printer_update_wizard(osv.osv_memory):
|
||||||
_name = "printing.printer.update.wizard"
|
_name = "printing.printer.update.wizard"
|
||||||
|
|
||||||
|
_columns = {
|
||||||
|
}
|
||||||
|
|
||||||
def action_cancel(self, cr, uid, ids, context=None):
|
def action_cancel(self, cr, uid, ids, context=None):
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
def action_ok(self, cr, uid, ids, context=None):
|
def action_ok(self, cr, uid, ids, context=None):
|
||||||
# Update Printers
|
# Update Printers
|
||||||
printer_obj = self.pool['printing.printer']
|
|
||||||
try:
|
try:
|
||||||
connection = cups.Connection()
|
connection = cups.Connection()
|
||||||
printers = connection.getPrinters()
|
printers = connection.getPrinters()
|
||||||
except:
|
except:
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
ids = printer_obj.search(
|
ids = self.pool.get('printing.printer').search(cr, uid, [('system_name','in',printers.keys())], context=context)
|
||||||
cr, uid, [('system_name', 'in', printers.keys())], context=context)
|
for printer in self.pool.get('printing.printer').browse(cr, uid, ids, context):
|
||||||
for printer in printer_obj.browse(cr, uid, ids, context=context):
|
|
||||||
del printers[printer.system_name]
|
del printers[printer.system_name]
|
||||||
|
|
||||||
for name in printers:
|
for name in printers:
|
||||||
printer = printers[name]
|
printer = printers[name]
|
||||||
self.pool.get('printing.printer').create(cr, uid, {
|
self.pool.get('printing.printer').create(cr, uid, {
|
||||||
@@ -64,3 +70,7 @@ class printing_printer_update_wizard(orm.TransientModel):
|
|||||||
'type': 'ir.actions.act_window',
|
'type': 'ir.actions.act_window',
|
||||||
'target': 'current',
|
'target': 'current',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printing_printer_update_wizard()
|
||||||
|
|
||||||
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
||||||
|
|||||||
@@ -1,27 +1,26 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<openerp>
|
<openerp>
|
||||||
<data>
|
<data>
|
||||||
<record id="printer_update_wizard" model="ir.ui.view">
|
<record id="printer_update_wizard" model="ir.ui.view">
|
||||||
<field name="name">printing.printer.update.wizard</field>
|
<field name="name">printing.printer.update.wizard</field>
|
||||||
<field name="model">printing.printer.update.wizard</field>
|
<field name="model">printing.printer.update.wizard</field>
|
||||||
<field name="type">form</field>
|
<field name="type">form</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<form string="Update Printers from CUPS" col="2">
|
<form string="Update Printers from CUPS" col="2">
|
||||||
<label string="This process will create all missing printers from the current CUPS server." colspan="2"/>
|
<label string="This process will create all missing printers from the current CUPS server." colspan="2"/>
|
||||||
<separator string="" colspan="2"/>
|
<separator string="" colspan="2"/>
|
||||||
<button name="action_cancel" icon="gtk-cancel" string="Cancel" special="cancel"/>
|
<button name="action_cancel" icon="gtk-cancel" string="Cancel" special="cancel"/>
|
||||||
<button name="action_ok" type="object" icon="gtk-ok" string="Ok"/>
|
<button name="action_ok" type="object" icon="gtk-ok" string="Ok"/>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
<record id="action_printer_update_wizard" model="ir.actions.act_window">
|
<record id="action_printer_update_wizard" model="ir.actions.act_window">
|
||||||
<field name="name">Update Printers from CUPS</field>
|
<field name="name">Update Printers from CUPS</field>
|
||||||
<field name="type">ir.actions.act_window</field>
|
<field name="type">ir.actions.act_window</field>
|
||||||
<field name="res_model">printing.printer.update.wizard</field>
|
<field name="res_model">printing.printer.update.wizard</field>
|
||||||
<field name="view_type">form</field>
|
<field name="view_type">form</field>
|
||||||
<field name="view_mode">form</field>
|
<field name="view_mode">form</field>
|
||||||
<field name="target">new</field>
|
<field name="target">new</field>
|
||||||
</record>
|
</record>
|
||||||
<menuitem action="action_printer_update_wizard" id="menu_printer_update_wizard" parent="menu_printing_main"/>
|
<menuitem action="action_printer_update_wizard" id="menu_printer_update_wizard" parent="menu_printing_config"/>
|
||||||
</data>
|
</data>
|
||||||
</openerp>
|
</openerp>
|
||||||
|
|||||||
@@ -19,7 +19,8 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
from . import ir_attachment
|
import ir_attachment
|
||||||
from . import pingen
|
import pingen
|
||||||
from . import pingen_document
|
import pingen_document
|
||||||
from . import res_company
|
import res_company
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
'depends': [],
|
'depends': [],
|
||||||
'external_dependencies': {
|
'external_dependencies': {
|
||||||
'python': ['requests'],
|
'python': ['requests'],
|
||||||
},
|
},
|
||||||
'description': """
|
'description': """
|
||||||
Integration with pingen.com
|
Integration with pingen.com
|
||||||
===========================
|
===========================
|
||||||
@@ -91,8 +91,8 @@ you will need to manually handle the case, either from the pingen.com backend,
|
|||||||
or by changing the document on OpenERP and resolving the error on the Pingen
|
or by changing the document on OpenERP and resolving the error on the Pingen
|
||||||
Document.
|
Document.
|
||||||
|
|
||||||
When a connection error occurs, the action will be retried on the next
|
When a connection error occurs, the action will be retried on the next scheduler
|
||||||
scheduler run.
|
run.
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
------------
|
------------
|
||||||
@@ -111,9 +111,9 @@ Dependencies
|
|||||||
'pingen_data.xml',
|
'pingen_data.xml',
|
||||||
'res_company_view.xml',
|
'res_company_view.xml',
|
||||||
'security/ir.model.access.csv',
|
'security/ir.model.access.csv',
|
||||||
],
|
],
|
||||||
'tests': [],
|
'tests': [],
|
||||||
'installable': False,
|
'installable': True,
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
'application': True,
|
'application': True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,14 +7,14 @@ msgstr ""
|
|||||||
"Project-Id-Version: OpenERP Server 6.1\n"
|
"Project-Id-Version: OpenERP Server 6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-11-26 10:55+0000\n"
|
"POT-Creation-Date: 2012-11-26 10:55+0000\n"
|
||||||
"PO-Revision-Date: 2014-02-25 15:09+0000\n"
|
"PO-Revision-Date: 2014-02-25 15:10+0000\n"
|
||||||
"Last-Translator: Yannick Vaucher @ Camptocamp <Unknown>\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Launchpad-Export-Date: 2014-05-06 07:28+0000\n"
|
"X-Launchpad-Export-Date: 2014-02-26 07:29+0000\n"
|
||||||
"X-Generator: Launchpad (build 16996)\n"
|
"X-Generator: Launchpad (build 16935)\n"
|
||||||
|
|
||||||
#. module: pingen
|
#. module: pingen
|
||||||
#: code:addons/pingen/pingen_document.py:177
|
#: code:addons/pingen/pingen_document.py:177
|
||||||
|
|||||||
@@ -41,10 +41,8 @@ class ir_attachment(orm.Model):
|
|||||||
'pingen_speed': fields.selection(
|
'pingen_speed': fields.selection(
|
||||||
[('1', 'Priority'), ('2', 'Economy')],
|
[('1', 'Priority'), ('2', 'Economy')],
|
||||||
'Speed',
|
'Speed',
|
||||||
help="Defines the sending speed if the document is "
|
help="Defines the sending speed if the document is automatically sent"),
|
||||||
"automatically sent"),
|
'pingen_color': fields.selection( [('0', 'B/W'), ('1', 'Color')], 'Type of print'),
|
||||||
'pingen_color': fields.selection([('0', 'B/W'), ('1', 'Color')],
|
|
||||||
'Type of print'),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_defaults = {
|
_defaults = {
|
||||||
@@ -58,15 +56,14 @@ class ir_attachment(orm.Model):
|
|||||||
'config': 'created from attachment'}
|
'config': 'created from attachment'}
|
||||||
|
|
||||||
def _handle_pingen_document(self, cr, uid, attachment_id, context=None):
|
def _handle_pingen_document(self, cr, uid, attachment_id, context=None):
|
||||||
""" Reponsible of the related ``pingen.document``
|
""" Reponsible of the related ``pingen.document`` when the ``send_to_pingen``
|
||||||
when the ``send_to_pingen`` field is modified.
|
field is modified.
|
||||||
|
|
||||||
Only one pingen document can be created per attachment.
|
Only one pingen document can be created per attachment.
|
||||||
|
|
||||||
When ``send_to_pingen`` is activated:
|
When ``send_to_pingen`` is activated:
|
||||||
* Create a ``pingen.document`` if it does not already exist
|
* Create a ``pingen.document`` if it does not already exist
|
||||||
* Put the related ``pingen.document`` to ``pending`` if
|
* Put the related ``pingen.document`` to ``pending`` if it already exist
|
||||||
it already exist
|
|
||||||
When it is deactivated:
|
When it is deactivated:
|
||||||
* Do nothing if no related ``pingen.document`` exists
|
* Do nothing if no related ``pingen.document`` exists
|
||||||
* Or cancel it
|
* Or cancel it
|
||||||
@@ -75,42 +72,37 @@ class ir_attachment(orm.Model):
|
|||||||
"""
|
"""
|
||||||
pingen_document_obj = self.pool.get('pingen.document')
|
pingen_document_obj = self.pool.get('pingen.document')
|
||||||
attachment = self.browse(cr, uid, attachment_id, context=context)
|
attachment = self.browse(cr, uid, attachment_id, context=context)
|
||||||
document = attachment.pingen_document_ids[
|
document = attachment.pingen_document_ids[0] if attachment.pingen_document_ids else None
|
||||||
0] if attachment.pingen_document_ids else None
|
|
||||||
if attachment.send_to_pingen:
|
if attachment.send_to_pingen:
|
||||||
if document:
|
if document:
|
||||||
document.write({'state': 'pending'}, context=context)
|
document.write({'state': 'pending'}, context=context)
|
||||||
else:
|
else:
|
||||||
pingen_document_obj.create(
|
pingen_document_obj.create(
|
||||||
cr, uid,
|
cr, uid,
|
||||||
self._prepare_pingen_document_vals(
|
self._prepare_pingen_document_vals(
|
||||||
cr, uid, attachment, context=context),
|
cr, uid, attachment, context=context),
|
||||||
context=context)
|
context=context)
|
||||||
else:
|
else:
|
||||||
if document:
|
if document:
|
||||||
if document.state == 'pushed':
|
if document.state == 'pushed':
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Error'),
|
_('Error'),
|
||||||
_('The attachment %s is already pushed to '
|
_('The attachment %s is already pushed to pingen.com.') % \
|
||||||
'pingen.com.') % attachment.name)
|
attachment.name)
|
||||||
document.write({'state': 'canceled'}, context=context)
|
document.write({'state': 'canceled'}, context=context)
|
||||||
return
|
return
|
||||||
|
|
||||||
def create(self, cr, uid, vals, context=None):
|
def create(self, cr, uid, vals, context=None):
|
||||||
attachment_id = super(ir_attachment, self).create(
|
attachment_id = super(ir_attachment, self).create(cr, uid, vals, context=context)
|
||||||
cr, uid, vals, context=context)
|
|
||||||
if 'send_to_pingen' in vals:
|
if 'send_to_pingen' in vals:
|
||||||
self._handle_pingen_document(
|
self._handle_pingen_document(cr, uid, attachment_id, context=context)
|
||||||
cr, uid, attachment_id, context=context)
|
|
||||||
return attachment_id
|
return attachment_id
|
||||||
|
|
||||||
def write(self, cr, uid, ids, vals, context=None):
|
def write(self, cr, uid, ids, vals, context=None):
|
||||||
res = super(ir_attachment, self).write(
|
res = super(ir_attachment, self).write(cr, uid, ids, vals, context=context)
|
||||||
cr, uid, ids, vals, context=context)
|
|
||||||
if 'send_to_pingen' in vals:
|
if 'send_to_pingen' in vals:
|
||||||
for attachment_id in ids:
|
for attachment_id in ids:
|
||||||
self._handle_pingen_document(
|
self._handle_pingen_document(cr, uid, attachment_id, context=context)
|
||||||
cr, uid, attachment_id, context=context)
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
def _decoded_content(self, cr, uid, attachment, context=None):
|
def _decoded_content(self, cr, uid, attachment, context=None):
|
||||||
@@ -129,3 +121,4 @@ class ir_attachment(orm.Model):
|
|||||||
raise Exception(
|
raise Exception(
|
||||||
'The type of attachment %s is not handled' % attachment.type)
|
'The type of attachment %s is not handled' % attachment.type)
|
||||||
return decoded_document
|
return decoded_document
|
||||||
|
|
||||||
|
|||||||
@@ -58,23 +58,19 @@ def pingen_datetime_to_utc(dt):
|
|||||||
|
|
||||||
|
|
||||||
class PingenException(RuntimeError):
|
class PingenException(RuntimeError):
|
||||||
|
|
||||||
"""There was an ambiguous exception that occurred while handling your
|
"""There was an ambiguous exception that occurred while handling your
|
||||||
request."""
|
request."""
|
||||||
|
|
||||||
|
|
||||||
class ConnectionError(PingenException):
|
class ConnectionError(PingenException):
|
||||||
|
|
||||||
"""An Error occured with the pingen API"""
|
"""An Error occured with the pingen API"""
|
||||||
|
|
||||||
|
|
||||||
class APIError(PingenException):
|
class APIError(PingenException):
|
||||||
|
|
||||||
"""An Error occured with the pingen API"""
|
"""An Error occured with the pingen API"""
|
||||||
|
|
||||||
|
|
||||||
class Pingen(object):
|
class Pingen(object):
|
||||||
|
|
||||||
""" Interface to the pingen.com API """
|
""" Interface to the pingen.com API """
|
||||||
|
|
||||||
def __init__(self, token, staging=True):
|
def __init__(self, token, staging=True):
|
||||||
@@ -136,13 +132,11 @@ class Pingen(object):
|
|||||||
|
|
||||||
if response.json['error']:
|
if response.json['error']:
|
||||||
raise APIError(
|
raise APIError(
|
||||||
"%s: %s" % (response.json['errorcode'],
|
"%s: %s" % (response.json['errorcode'], response.json['errormessage']))
|
||||||
response.json['errormessage']))
|
|
||||||
|
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def push_document(self, filename, filestream, send=None, speed=None,
|
def push_document(self, filename, filestream, send=None, speed=None, color=None):
|
||||||
color=None):
|
|
||||||
""" Upload a document to pingen.com and eventually ask to send it
|
""" Upload a document to pingen.com and eventually ask to send it
|
||||||
|
|
||||||
:param str filename: name of the file to push
|
:param str filename: name of the file to push
|
||||||
@@ -160,7 +154,7 @@ class Pingen(object):
|
|||||||
'send': send,
|
'send': send,
|
||||||
'speed': speed,
|
'speed': speed,
|
||||||
'color': color,
|
'color': color,
|
||||||
}
|
}
|
||||||
|
|
||||||
# we cannot use the `files` param alongside
|
# we cannot use the `files` param alongside
|
||||||
# with the `datas`param when data is a
|
# with the `datas`param when data is a
|
||||||
@@ -170,15 +164,15 @@ class Pingen(object):
|
|||||||
formdata = {
|
formdata = {
|
||||||
'file': (filename, filestream.read()),
|
'file': (filename, filestream.read()),
|
||||||
'data': json.dumps(data),
|
'data': json.dumps(data),
|
||||||
}
|
}
|
||||||
|
|
||||||
multipart, content_type = encode_multipart_formdata(formdata)
|
multipart, content_type = encode_multipart_formdata(formdata)
|
||||||
|
|
||||||
response = self._send(
|
response = self._send(
|
||||||
self.session.post,
|
self.session.post,
|
||||||
'document/upload',
|
'document/upload',
|
||||||
headers={'Content-Type': content_type},
|
headers={'Content-Type': content_type},
|
||||||
data=multipart)
|
data=multipart)
|
||||||
|
|
||||||
rjson = response.json
|
rjson = response.json
|
||||||
|
|
||||||
@@ -202,12 +196,12 @@ class Pingen(object):
|
|||||||
data = {
|
data = {
|
||||||
'speed': speed,
|
'speed': speed,
|
||||||
'color': color,
|
'color': color,
|
||||||
}
|
}
|
||||||
response = self._send(
|
response = self._send(
|
||||||
self.session.post,
|
self.session.post,
|
||||||
'document/send',
|
'document/send',
|
||||||
params={'id': document_id},
|
params={'id': document_id},
|
||||||
data={'data': json.dumps(data)})
|
data={'data': json.dumps(data)})
|
||||||
|
|
||||||
return response.json['id']
|
return response.json['id']
|
||||||
|
|
||||||
@@ -218,9 +212,9 @@ class Pingen(object):
|
|||||||
:return: dict of infos of the post
|
:return: dict of infos of the post
|
||||||
"""
|
"""
|
||||||
response = self._send(
|
response = self._send(
|
||||||
self.session.get,
|
self.session.get,
|
||||||
'post/get',
|
'post/get',
|
||||||
params={'id': post_id})
|
params={'id': post_id})
|
||||||
|
|
||||||
return response.json['item']
|
return response.json['item']
|
||||||
|
|
||||||
@@ -231,3 +225,4 @@ class Pingen(object):
|
|||||||
:param dict post_infos: post infos returned by `post_infos`
|
:param dict post_infos: post infos returned by `post_infos`
|
||||||
"""
|
"""
|
||||||
return post_infos['status'] == 200
|
return post_infos['status'] == 200
|
||||||
|
|
||||||
|
|||||||
@@ -28,13 +28,12 @@ from openerp.osv import osv, orm, fields
|
|||||||
from openerp.tools.translate import _
|
from openerp.tools.translate import _
|
||||||
from openerp import pooler, tools
|
from openerp import pooler, tools
|
||||||
from .pingen import APIError, ConnectionError, POST_SENDING_STATUS, \
|
from .pingen import APIError, ConnectionError, POST_SENDING_STATUS, \
|
||||||
pingen_datetime_to_utc
|
pingen_datetime_to_utc
|
||||||
|
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class pingen_document(orm.Model):
|
class pingen_document(orm.Model):
|
||||||
|
|
||||||
""" A pingen document is the state of the synchronization of
|
""" A pingen document is the state of the synchronization of
|
||||||
an attachment with pingen.com
|
an attachment with pingen.com
|
||||||
|
|
||||||
@@ -76,8 +75,7 @@ class pingen_document(orm.Model):
|
|||||||
'post_status': fields.char('Post Status', size=128, readonly=True),
|
'post_status': fields.char('Post Status', size=128, readonly=True),
|
||||||
'parsed_address': fields.text('Parsed Address', readonly=True),
|
'parsed_address': fields.text('Parsed Address', readonly=True),
|
||||||
'cost': fields.float('Cost', readonly=True),
|
'cost': fields.float('Cost', readonly=True),
|
||||||
'currency_id': fields.many2one('res.currency', 'Currency',
|
'currency_id': fields.many2one('res.currency', 'Currency', readonly=True),
|
||||||
readonly=True),
|
|
||||||
'country_id': fields.many2one('res.country', 'Country', readonly=True),
|
'country_id': fields.many2one('res.country', 'Country', readonly=True),
|
||||||
'send_date': fields.datetime('Date of sending', readonly=True),
|
'send_date': fields.datetime('Date of sending', readonly=True),
|
||||||
'pages': fields.integer('Pages', readonly=True),
|
'pages': fields.integer('Pages', readonly=True),
|
||||||
@@ -96,9 +94,8 @@ class pingen_document(orm.Model):
|
|||||||
def _get_pingen_session(self, cr, uid, context=None):
|
def _get_pingen_session(self, cr, uid, context=None):
|
||||||
""" Returns a pingen session for a user """
|
""" Returns a pingen session for a user """
|
||||||
company = self.pool.get('res.users').browse(
|
company = self.pool.get('res.users').browse(
|
||||||
cr, uid, uid, context=context).company_id
|
cr, uid, uid, context=context).company_id
|
||||||
return self.pool.get('res.company')._pingen(cr, uid, company,
|
return self.pool.get('res.company')._pingen(cr, uid, company, context=context)
|
||||||
context=context)
|
|
||||||
|
|
||||||
def _push_to_pingen(self, cr, uid, document, pingen=None, context=None):
|
def _push_to_pingen(self, cr, uid, document, pingen=None, context=None):
|
||||||
""" Push a document to pingen.com
|
""" Push a document to pingen.com
|
||||||
@@ -108,7 +105,7 @@ class pingen_document(orm.Model):
|
|||||||
attachment_obj = self.pool.get('ir.attachment')
|
attachment_obj = self.pool.get('ir.attachment')
|
||||||
|
|
||||||
decoded_document = attachment_obj._decoded_content(
|
decoded_document = attachment_obj._decoded_content(
|
||||||
cr, uid, document.attachment_id, context=context)
|
cr, uid, document.attachment_id, context=context)
|
||||||
|
|
||||||
if pingen is None:
|
if pingen is None:
|
||||||
pingen = self._get_pingen_session(cr, uid, context=context)
|
pingen = self._get_pingen_session(cr, uid, context=context)
|
||||||
@@ -119,16 +116,16 @@ class pingen_document(orm.Model):
|
|||||||
document.pingen_send,
|
document.pingen_send,
|
||||||
document.pingen_speed,
|
document.pingen_speed,
|
||||||
document.pingen_color)
|
document.pingen_color)
|
||||||
except ConnectionError:
|
except ConnectionError as e:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'Connection Error when pushing Pingen Document %s to %s.' %
|
'Connection Error when pushing Pingen Document %s to %s.' %
|
||||||
(document.id, pingen.url))
|
(document.id, pingen.url))
|
||||||
raise
|
raise
|
||||||
|
|
||||||
except APIError:
|
except APIError as e:
|
||||||
_logger.error(
|
_logger.error(
|
||||||
'API Error when pushing Pingen Document %s to %s.' %
|
'API Error when pushing Pingen Document %s to %s.' %
|
||||||
(document.id, pingen.url))
|
(document.id, pingen.url))
|
||||||
raise
|
raise
|
||||||
|
|
||||||
error = False
|
error = False
|
||||||
@@ -144,13 +141,11 @@ class pingen_document(orm.Model):
|
|||||||
document.write(
|
document.write(
|
||||||
{'last_error_message': error,
|
{'last_error_message': error,
|
||||||
'state': state,
|
'state': state,
|
||||||
'push_date': push_date.strftime(
|
'push_date': push_date.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT),
|
||||||
tools.DEFAULT_SERVER_DATETIME_FORMAT),
|
|
||||||
'pingen_id': doc_id,
|
'pingen_id': doc_id,
|
||||||
'post_id': post_id},
|
'post_id': post_id},
|
||||||
context=context)
|
context=context)
|
||||||
_logger.info('Pingen Document %s: pushed to %s' % (document.id,
|
_logger.info('Pingen Document %s: pushed to %s' % (document.id, pingen.url))
|
||||||
pingen.url))
|
|
||||||
|
|
||||||
def push_to_pingen(self, cr, uid, ids, context=None):
|
def push_to_pingen(self, cr, uid, ids, context=None):
|
||||||
""" Push a document to pingen.com
|
""" Push a document to pingen.com
|
||||||
@@ -169,8 +164,7 @@ class pingen_document(orm.Model):
|
|||||||
except ConnectionError as e:
|
except ConnectionError as e:
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Pingen Connection Error'),
|
_('Pingen Connection Error'),
|
||||||
_('Connection Error when asking for sending the '
|
_('Connection Error when asking for sending the document %s to Pingen') % document.name)
|
||||||
'document %s to Pingen') % document.name)
|
|
||||||
|
|
||||||
except APIError as e:
|
except APIError as e:
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
@@ -180,13 +174,11 @@ class pingen_document(orm.Model):
|
|||||||
|
|
||||||
except:
|
except:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'Unexcepted Error when updating the status of '
|
'Unexcepted Error when updating the status of pingen.document %s: ' %
|
||||||
'pingen.document %s: ' %
|
document.id)
|
||||||
document.id)
|
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Error'),
|
_('Error'),
|
||||||
_('Unexcepted Error when updating the status '
|
_('Unexcepted Error when updating the status of Document %s') % document.name)
|
||||||
'of Document %s') % document.name)
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _push_and_send_to_pingen_cron(self, cr, uid, ids, context=None):
|
def _push_and_send_to_pingen_cron(self, cr, uid, ids, context=None):
|
||||||
@@ -217,13 +209,11 @@ class pingen_document(orm.Model):
|
|||||||
try:
|
try:
|
||||||
if document.state == 'pending':
|
if document.state == 'pending':
|
||||||
self._push_to_pingen(
|
self._push_to_pingen(
|
||||||
loc_cr, uid, document, pingen=session,
|
loc_cr, uid, document, pingen=session, context=context)
|
||||||
context=context)
|
|
||||||
|
|
||||||
elif document.state == 'pushed':
|
elif document.state == 'pushed':
|
||||||
self._ask_pingen_send(
|
self._ask_pingen_send(
|
||||||
loc_cr, uid, document, pingen=session,
|
loc_cr, uid, document, pingen=session, context=context)
|
||||||
context=context)
|
|
||||||
except ConnectionError as e:
|
except ConnectionError as e:
|
||||||
document.write({'last_error_message': e,
|
document.write({'last_error_message': e,
|
||||||
'state': 'error'},
|
'state': 'error'},
|
||||||
@@ -273,15 +263,13 @@ class pingen_document(orm.Model):
|
|||||||
document.pingen_id,
|
document.pingen_id,
|
||||||
document.pingen_speed,
|
document.pingen_speed,
|
||||||
document.pingen_color)
|
document.pingen_color)
|
||||||
except ConnectionError:
|
except ConnectionError as e:
|
||||||
_logger.exception('Connection Error when asking for sending '
|
_logger.exception('Connection Error when asking for sending Pingen Document %s to %s.' %
|
||||||
'Pingen Document %s to %s.' %
|
(document.id, pingen.url))
|
||||||
(document.id, pingen.url))
|
|
||||||
raise
|
raise
|
||||||
except APIError:
|
except APIError as e:
|
||||||
_logger.exception('API Error when asking for sending '
|
_logger.exception('API Error when asking for sending Pingen Document %s to %s.' %
|
||||||
'Pingen Document %s to %s.' %
|
(document.id, pingen.url))
|
||||||
(document.id, pingen.url))
|
|
||||||
raise
|
raise
|
||||||
|
|
||||||
document.write(
|
document.write(
|
||||||
@@ -289,8 +277,7 @@ class pingen_document(orm.Model):
|
|||||||
'state': 'sendcenter',
|
'state': 'sendcenter',
|
||||||
'post_id': post_id},
|
'post_id': post_id},
|
||||||
context=context)
|
context=context)
|
||||||
_logger.info('Pingen Document %s: asked for sending to %s' %
|
_logger.info('Pingen Document %s: asked for sending to %s' % (document.id, pingen.url))
|
||||||
(document.id, pingen.url))
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@@ -304,8 +291,7 @@ class pingen_document(orm.Model):
|
|||||||
with self._get_pingen_session(cr, uid, context=context) as session:
|
with self._get_pingen_session(cr, uid, context=context) as session:
|
||||||
for document in self.browse(cr, uid, ids, context=context):
|
for document in self.browse(cr, uid, ids, context=context):
|
||||||
try:
|
try:
|
||||||
self._ask_pingen_send(
|
self._ask_pingen_send(cr, uid, document, pingen=session, context=context)
|
||||||
cr, uid, document, pingen=session, context=context)
|
|
||||||
except ConnectionError as e:
|
except ConnectionError as e:
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Pingen Connection Error'),
|
_('Pingen Connection Error'),
|
||||||
@@ -320,13 +306,11 @@ class pingen_document(orm.Model):
|
|||||||
|
|
||||||
except:
|
except:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'Unexcepted Error when updating the status of '
|
'Unexcepted Error when updating the status of pingen.document %s: ' %
|
||||||
'pingen.document %s: ' %
|
document.id)
|
||||||
document.id)
|
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Error'),
|
_('Error'),
|
||||||
_('Unexcepted Error when updating the status '
|
_('Unexcepted Error when updating the status of Document %s') % document.name)
|
||||||
'of Document %s') % document.name)
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _update_post_infos(self, cr, uid, document, pingen, context=None):
|
def _update_post_infos(self, cr, uid, document, pingen, context=None):
|
||||||
@@ -339,24 +323,24 @@ class pingen_document(orm.Model):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
post_infos = pingen.post_infos(document.post_id)
|
post_infos = pingen.post_infos(document.post_id)
|
||||||
except ConnectionError:
|
except ConnectionError as e:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'Connection Error when asking for '
|
'Connection Error when asking for '
|
||||||
'sending Pingen Document %s to %s.' %
|
'sending Pingen Document %s to %s.' %
|
||||||
(document.id, pingen.url))
|
(document.id, pingen.url))
|
||||||
raise
|
raise
|
||||||
except APIError:
|
except APIError as e:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'API Error when asking for sending Pingen Document %s to %s.' %
|
'API Error when asking for sending Pingen Document %s to %s.' %
|
||||||
(document.id, pingen.url))
|
(document.id, pingen.url))
|
||||||
raise
|
raise
|
||||||
|
|
||||||
currency_ids = self.pool.get('res.currency').search(
|
currency_ids = self.pool.get('res.currency').search(
|
||||||
cr, uid, [('name', '=', post_infos['currency'])], context=context)
|
cr, uid, [('name', '=', post_infos['currency'])], context=context)
|
||||||
country_ids = self.pool.get('res.country').search(
|
country_ids = self.pool.get('res.country').search(
|
||||||
cr, uid, [('code', '=', post_infos['country'])], context=context)
|
cr, uid, [('code', '=', post_infos['country'])], context=context)
|
||||||
|
|
||||||
send_date = pingen_datetime_to_utc(post_infos['date'])
|
send_date = pingen_datetime_to_utc(infos['date'])
|
||||||
|
|
||||||
vals = {
|
vals = {
|
||||||
'post_status': POST_SENDING_STATUS[post_infos['status']],
|
'post_status': POST_SENDING_STATUS[post_infos['status']],
|
||||||
@@ -364,11 +348,10 @@ class pingen_document(orm.Model):
|
|||||||
'currency_id': currency_ids[0] if currency_ids else False,
|
'currency_id': currency_ids[0] if currency_ids else False,
|
||||||
'parsed_address': post_infos['address'],
|
'parsed_address': post_infos['address'],
|
||||||
'country_id': country_ids[0] if country_ids else False,
|
'country_id': country_ids[0] if country_ids else False,
|
||||||
'send_date': send_date.strftime(
|
'send_date': send_date.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT),
|
||||||
tools.DEFAULT_SERVER_DATETIME_FORMAT),
|
|
||||||
'pages': post_infos['pages'],
|
'pages': post_infos['pages'],
|
||||||
'last_error_message': False,
|
'last_error_message': False,
|
||||||
}
|
}
|
||||||
if pingen.is_posted(post_infos):
|
if pingen.is_posted(post_infos):
|
||||||
vals['state'] = 'sent'
|
vals['state'] = 'sent'
|
||||||
|
|
||||||
@@ -386,9 +369,9 @@ class pingen_document(orm.Model):
|
|||||||
"""
|
"""
|
||||||
if not ids:
|
if not ids:
|
||||||
ids = self.search(
|
ids = self.search(
|
||||||
cr, uid,
|
cr, uid,
|
||||||
[('state', '=', 'sendcenter')],
|
[('state', '=', 'sendcenter')],
|
||||||
context=context)
|
context=context)
|
||||||
|
|
||||||
with closing(pooler.get_db(cr.dbname).cursor()) as loc_cr, \
|
with closing(pooler.get_db(cr.dbname).cursor()) as loc_cr, \
|
||||||
self._get_pingen_session(cr, uid, context=context) as session:
|
self._get_pingen_session(cr, uid, context=context) as session:
|
||||||
@@ -398,8 +381,7 @@ class pingen_document(orm.Model):
|
|||||||
loc_cr, uid, document, pingen=session, context=context)
|
loc_cr, uid, document, pingen=session, context=context)
|
||||||
except (ConnectionError, APIError):
|
except (ConnectionError, APIError):
|
||||||
# will be retried the next time
|
# will be retried the next time
|
||||||
# In any case, the error has been logged by
|
# In any case, the error has been logged by _update_post_infos
|
||||||
# _update_post_infos
|
|
||||||
loc_cr.rollback()
|
loc_cr.rollback()
|
||||||
except:
|
except:
|
||||||
_logger.error('Unexcepted error in pingen cron')
|
_logger.error('Unexcepted error in pingen cron')
|
||||||
@@ -424,24 +406,21 @@ class pingen_document(orm.Model):
|
|||||||
except ConnectionError as e:
|
except ConnectionError as e:
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Pingen Connection Error'),
|
_('Pingen Connection Error'),
|
||||||
_('Connection Error when updating the status of '
|
_('Connection Error when updating the status of Document %s'
|
||||||
'Document %s'
|
|
||||||
' from Pingen') % document.name)
|
' from Pingen') % document.name)
|
||||||
|
|
||||||
except APIError as e:
|
except APIError as e:
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Pingen Error'),
|
_('Pingen Error'),
|
||||||
_('Error when updating the status of Document %s '
|
_('Error when updating the status of Document %s from Pingen: '
|
||||||
'from Pingen: '
|
|
||||||
'\n%s') % (document.name, e))
|
'\n%s') % (document.name, e))
|
||||||
|
|
||||||
except:
|
except:
|
||||||
_logger.exception(
|
_logger.exception(
|
||||||
'Unexcepted Error when updating the status of '
|
'Unexcepted Error when updating the status of pingen.document %s: ' %
|
||||||
'pingen.document %s: ' %
|
document.id)
|
||||||
document.id)
|
|
||||||
raise osv.except_osv(
|
raise osv.except_osv(
|
||||||
_('Error'),
|
_('Error'),
|
||||||
_('Unexcepted Error when updating the status of '
|
_('Unexcepted Error when updating the status of Document %s') % document.name)
|
||||||
'Document %s') % document.name)
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ from openerp.osv import orm, fields
|
|||||||
from openerp.osv.orm import browse_record
|
from openerp.osv.orm import browse_record
|
||||||
from .pingen import Pingen
|
from .pingen import Pingen
|
||||||
|
|
||||||
|
|
||||||
class res_company(orm.Model):
|
class res_company(orm.Model):
|
||||||
|
|
||||||
_inherit = 'res.company'
|
_inherit = 'res.company'
|
||||||
@@ -40,3 +39,4 @@ class res_company(orm.Model):
|
|||||||
if not isinstance(company, browse_record):
|
if not isinstance(company, browse_record):
|
||||||
company = self.browse(cr, uid, company, context=context)
|
company = self.browse(cr, uid, company, context=context)
|
||||||
return Pingen(company.pingen_token, staging=company.pingen_staging)
|
return Pingen(company.pingen_token, staging=company.pingen_staging)
|
||||||
|
|
||||||
|
|||||||
@@ -18,3 +18,4 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
|||||||
@@ -20,14 +20,14 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'pingen.com integration (document)',
|
'name' : 'pingen.com integration (document)',
|
||||||
'version': '1.0',
|
'version' : '1.0',
|
||||||
'author': "Camptocamp,Odoo Community Association (OCA)",
|
'author' : "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'maintainer': 'Camptocamp',
|
'maintainer': 'Camptocamp',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'category': 'Reporting',
|
'category': 'Reporting',
|
||||||
'complexity': 'easy',
|
'complexity': 'easy',
|
||||||
'depends': ['document', 'pingen'],
|
'depends' : ['document', 'pingen'],
|
||||||
'description': """
|
'description': """
|
||||||
Glue module between the `pingen` and the `document` modules.
|
Glue module between the `pingen` and the `document` modules.
|
||||||
""",
|
""",
|
||||||
@@ -36,6 +36,6 @@ Glue module between the `pingen` and the `document` modules.
|
|||||||
'pingen_document_view.xml',
|
'pingen_document_view.xml',
|
||||||
],
|
],
|
||||||
'tests': [],
|
'tests': [],
|
||||||
'installable': False,
|
'installable': True,
|
||||||
'auto_install': True,
|
'auto_install': True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,14 +7,14 @@ msgstr ""
|
|||||||
"Project-Id-Version: OpenERP Server 6.1\n"
|
"Project-Id-Version: OpenERP Server 6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-11-26 10:56+0000\n"
|
"POT-Creation-Date: 2012-11-26 10:56+0000\n"
|
||||||
"PO-Revision-Date: 2014-02-25 15:09+0000\n"
|
"PO-Revision-Date: 2014-02-25 15:10+0000\n"
|
||||||
"Last-Translator: Yannick Vaucher @ Camptocamp <Unknown>\n"
|
"Last-Translator: <>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Launchpad-Export-Date: 2014-05-06 07:28+0000\n"
|
"X-Launchpad-Export-Date: 2014-02-26 07:29+0000\n"
|
||||||
"X-Generator: Launchpad (build 16996)\n"
|
"X-Generator: Launchpad (build 16935)\n"
|
||||||
|
|
||||||
#. module: pingen_document
|
#. module: pingen_document
|
||||||
#: view:ir.attachment:0
|
#: view:ir.attachment:0
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user