~openerp-commiter/openobject-addons/trunk-extra-addons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
#	* pxgo_openoffice_reports
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 5.0.14\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-29 08:32+0000\n"
"PO-Revision-Date: 2011-02-15 18:23+0000\n"
"Last-Translator: Olivier Dony (OpenERP) <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-08-13 05:10+0000\n"
"X-Generator: Launchpad (build 13674)\n"

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml,openoffice_report:0
msgid "Is OpenOffice Report?"
msgstr ""

#: model:ir.module.module,description:pxgo_openoffice_reports.module_meta_information
msgid ""
"Pexego OpenOffice Reports - Reporting Engine based on Relatorio and "
"OpenOffice.\n"
"\n"
"Reporting engine that uses OpenOffice and Relatorio to create reports from "
"several kind of templates (like an OpenDocument Text, a Microsoft Excel "
"spreadsheet, or even a PowerPoint!) \n"
"and export them on several formats (i.e.: it may create a Microsoft Excel "
"spreadsheet from a OpenDocument spreadshet template).\n"
"\n"
"Based on Relatorio (see http://relatorio.openhex.org/), PyODConverter "
"(http://www.artofsolving.com/opensource/pyodconverter) and the Jasper "
"Reports addon from Koo (https://code.launchpad.net/openobject-client-kde).\n"
"\n"
"\n"
"*** FEATURES ***\n"
"\n"
"- The next template formats and output formats are supported:\n"
"  * Text (any text format supported by OpenOffice like odt, doc, rtf, txt): "
"\n"
"        pdf, html, odt, doc (MS Word 97), rtf, txt\n"
"  * Web (hmtl): \n"
"        pdf, odt\n"
"  * Spreadsheet (ods, xls): \n"
"        pdf, html, ods, xls (MS Excel 97), csv\n"
"  * Presentation (odp, ppt): \n"
"        pdf, html, odp, ppt\n"
"  * Drawing (odg): \n"
"        pdf, swf\n"
"\n"
"- Subreports (inserting another file anywhere on the document) are supported "
"for text formats,\n"
"  they are recursive (will be processed by the template system and may have "
"their own subreports)\n"
"  and they can be loaded from a binary field.\n"
"  \n"
"- Dynamic insertion of images is supported too, and they can be loaded from "
"a file or a binary field.\n"
"\n"
"- Conditional statements (if) and repetitive structures (for) are supported. "
"And they can be used in tables.\n"
"\n"
"\n"
"*** TEMPLATE LANGUAGE ***\n"
"\n"
"Templates are based on Relatorio and Genshi, you might find useful this "
"introduction to Relatorio: "
"http://relatorio.openhex.org/wiki/IndepthIntroduction\n"
"\n"
"Some additional features, mainly related to OpenERP, where added:\n"
"\n"
"    - Support for subreports (text documents only).\n"
"        * From OpenObject binary fields:\n"
"            ${ subreport(object.file_field, object.filename_field) }\n"
"        * From files on disk:\n"
"            ${ subreport(filepath='/tmp/something.odt') }\n"
"        * From buffers (open files, strings):\n"
"            ${ subreport(source=buffer, source_format='odt') }\n"
"\n"
"    - Translations using the OpenERP translation engine:\n"
"        ${ _(\"Object Name\") }\n"
"\n"
"    - Access to attachments of an OpenObject:\n"
"        * Get the attachment names:\n"
"            ${ ', '.join([a.name for a in get_attachments(object)]) }\n"
"        * Use the first attachment as a subreport (only text documents):\n"
"            ${ subreport(get_attachments(object)[0].datas, "
"get_attachments(object)[0].datas_fname) }\n"
"\n"
"    - Using images from fields:\n"
"        * On a frame name (see Relatorio documentation about including "
"images),\n"
"            instead of \"image: (file, mimetype)'\",\n"
"            use \"image: field_to_image(object.field)\"\n"
"\n"
"\n"
"*** REQUIREMENTS ***\n"
"\n"
"- Relatorio (0.5.0 or better) for basic templating (odt->odt and ods->ods "
"only),\n"
"- OpenOffice (2.4 or better) and PyUno for file conversions and subreports.\n"
"- Python Imaging Library (PIL) if you want to use images from binary "
"fields.\n"
"- PyCha (3.0 or better) if you want to use charts.\n"
"- Genshi (0.5.1 or better) for using ${} instead of relatorio://\n"
"\n"
"        "
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/openoffice_report.py:0
#, python-format
msgid "Error loading the OpenOffice template: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.ui.menu,name:pxgo_openoffice_reports.openoffice_reports_menu
msgid "OpenOffice Reports"
msgstr ""

#. module: pxgo_openoffice_reports
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""

#. module: pxgo_openoffice_reports
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/openoffice_report.py:0
#, python-format
msgid "Error processing the OpenOffice template: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""

#. module: pxgo_openoffice_reports
#: view:ir.actions.report.xml:0
msgid "openoffice Reports"
msgstr ""

#. module: pxgo_openoffice_reports
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.actions.report.xml,name:pxgo_openoffice_reports.report_pxgo_openoffice_reports_partner_demo_ods
msgid "OpenOffice Reports Demo (ODS->XLS)"
msgstr ""

#. module: pxgo_openoffice_reports
#: view:ir.actions.report.xml:0
#: field:ir.actions.report.xml,openoffice_file_ids:0
msgid "Files"
msgstr ""

#. module: pxgo_openoffice_reports
#: view:ir.actions.report.xml.file:0
msgid "Openoffice Reports File"
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.actions.act_window,name:pxgo_openoffice_reports.ir_action_report_openoffice
#: view:ir.actions.report.xml:0
#: model:ir.ui.menu,name:pxgo_openoffice_reports.menu_ir_action_report_openoffice
msgid "Openoffice Reports"
msgstr ""

#. module: pxgo_openoffice_reports
#: view:ir.actions.report.xml:0
msgid "Update from attachments"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/oo_template.py:0
#, python-format
msgid "Error inserting file %s on the OpenOffice document: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/report_xml.py:0
#, python-format
msgid "There is more than one report marked as default"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/oo_template.py:0
#, python-format
msgid "Error saving file %s with OpenOffice: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: view:ir.actions.report.xml:0
msgid "Groups"
msgstr ""

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml.file,report_id:0
msgid "Report"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/__openerp__.py:0
#, python-format
msgid "Object Name"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/oo_template.py:0
#, python-format
msgid "Error loading file %s with OpenOffice: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/oo_template.py:0
#, python-format
msgid ""
"Couldn't connect to OpenOffice. Make sure you have an OpenOffice instance "
"running and listening on the %s port. Details: %s"
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.model,name:pxgo_openoffice_reports.model_ir_actions_report_xml_file
msgid "ir.actions.report.xml.file"
msgstr ""

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml.file,default:0
msgid "Default"
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/report_xml.py:0
#, python-format
msgid "No report has been marked as default."
msgstr ""

#. module: pxgo_openoffice_reports
#: code:addons/pxgo_openoffice_reports/report_xml.py:0
#, python-format
msgid "Error"
msgstr ""

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml,openoffice_model_id:0
msgid "Model"
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.actions.report.xml,name:pxgo_openoffice_reports.report_pxgo_openoffice_reports_partner_demo
msgid "OpenOffice Reports Demo (ODT->PDF)"
msgstr ""

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml.file,filename:0
msgid "File Name"
msgstr ""

#. module: pxgo_openoffice_reports
#: model:ir.model,name:pxgo_openoffice_reports.model_ir_actions_report_xml
msgid "ir.actions.report.xml"
msgstr ""

#. module: pxgo_openoffice_reports
#: field:ir.actions.report.xml.file,file:0
msgid "File"
msgstr ""

#. module: pxgo_openoffice_reports
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""