Subversion Repositories Scribus

Rev

Rev 9672 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

<
Rev Author Line No. Line
9729 cbradney 1
<?xml version="1.0" encoding="utf-8"?>
2
<!DOCTYPE TS><TS version="1.1">
4186 mrdocs 3
<context>
4
    <name></name>
5
    <message>
9729 cbradney 6
        <location filename="../plugins/scriptplugin/cmdtext.h" line="23"/>
4186 mrdocs 7
        <source>getFontSize([&quot;name&quot;]) -&gt; float
8
 
9
Returns the font size in points for the text frame &quot;name&quot;. If this text
10
frame has some text selected the value assigned to the first character of
11
the selection is returned.
12
If &quot;name&quot; is not given the currently selected item is used.
13
</source>
14
        <translation type="unfinished">getFontSize([&quot;name&quot;]) -&gt; float
15
 
16
Returns the font size in points for the text frame &quot;name&quot;. If this text
17
frame has some text selected the value assigned to the first character of
18
the selection is returned.
19
If &quot;name&quot; is not given the currently selected item is used.
20
</translation>
21
    </message>
22
    <message>
9729 cbradney 23
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="21"/>
4186 mrdocs 24
        <source>getColorNames() -&gt; list
25
 
26
Returns a list containing the names of all defined colors in the document.
27
If no document is open, returns a list of the default document colors.
28
</source>
29
        <translation type="unfinished">getColorNames() -&gt; list
30
 
31
Returns a list containing the names of all defined colours in the document.
32
If no document is open, returns a list of the default document colours.
33
</translation>
34
    </message>
35
    <message>
9729 cbradney 36
        <location filename="../plugins/scriptplugin/cmddialog.h" line="22"/>
4186 mrdocs 37
        <source>newDocDialog() -&gt; bool
38
 
39
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
40
accepts the settings. Does not create a document if the user presses cancel.
41
Returns true if a new document was created.
42
</source>
43
        <translation type="unfinished">newDocDialog() -&gt; bool
44
 
45
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
46
accepts the settings. Does not create a document if the user presses cancel.
47
Returns true if a new document was created.
48
</translation>
49
    </message>
50
    <message>
9729 cbradney 51
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="21"/>
4186 mrdocs 52
        <source>getFillColor([&quot;name&quot;]) -&gt; string
53
 
54
Returns the name of the fill color of the object &quot;name&quot;.
55
If &quot;name&quot; is not given the currently selected item is used.
56
</source>
57
        <translation type="unfinished">getFillColor([&quot;name&quot;]) -&gt; string
58
 
59
Returns the name of the fill colour of the object &quot;name&quot;.
60
If &quot;name&quot; is not given the currently selected item is used.
61
</translation>
62
    </message>
63
    <message>
9729 cbradney 64
        <location filename="../plugins/scriptplugin/cmdmani.h" line="23"/>
4186 mrdocs 65
        <source>moveObject(dx, dy [, &quot;name&quot;])
66
 
67
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
68
distances are expressed in the current measurement unit of the document (see
69
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
70
If the object &quot;name&quot; belongs to a group, the whole group is moved.
71
</source>
72
        <translation type="unfinished">moveObject(dx, dy [, &quot;name&quot;])
73
 
74
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
75
distances are expressed in the current measurement unit of the document (see
76
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
77
If the object &quot;name&quot; belongs to a group, the whole group is moved.
78
</translation>
79
    </message>
80
    <message>
9729 cbradney 81
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="24"/>
4186 mrdocs 82
        <source>setRedraw(bool)
83
 
84
Disables page redraw when bool = False, otherwise redrawing is enabled.
85
This change will persist even after the script exits, so make sure to call
86
setRedraw(True) in a finally: clause at the top level of your script.
87
</source>
88
        <translation type="unfinished">setRedraw(bool)
89
 
90
Disables page redraw when bool = False, otherwise redrawing is enabled.
91
This change will persist even after the script exits, so make sure to call
92
setRedraw(True) in a finally: clause at the top level of your script.
93
</translation>
94
    </message>
95
    <message>
9729 cbradney 96
        <location filename="../plugins/scriptplugin/cmdobj.h" line="26"/>
4186 mrdocs 97
        <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
98
 
99
Creates a new rectangle on the current page and returns its name. The
100
coordinates are given in the current measurement units of the document
101
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
102
because you need this name to reference that object in future. If &quot;name&quot;
103
is not given Scribus will create one for you.
104
 
105
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
106
</source>
107
        <translation type="unfinished">createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
108
 
109
Creates a new rectangle on the current page and returns its name. The
110
coordinates are given in the current measurement units of the document
111
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
112
because you need this name to reference that object in future. If &quot;name&quot;
113
is not given Scribus will create one for you.
114
 
115
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
116
</translation>
117
    </message>
118
    <message>
9729 cbradney 119
        <location filename="" line="136953768"/>
4186 mrdocs 120
        <source>newPage(where [,&quot;template&quot;])
121
 
122
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
123
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
124
counted from 1 upwards, no matter what the displayed first page number of your
125
document is. The optional parameter &quot;template&quot; specifies the name of the
126
template page for the new page.
127
 
128
May raise IndexError if the page number is out of range
129
</source>
4310 cbradney 130
        <translation type="obsolete">newPage(where [,&quot;template&quot;])
4186 mrdocs 131
 
132
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
133
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
134
counted from 1 upwards, no matter what the displayed first page number of your
135
document is. The optional parameter &quot;template&quot; specifies the name of the
136
template page for the new page.
137
 
138
May raise IndexError if the page number is out of range
139
</translation>
140
    </message>
141
    <message>
9729 cbradney 142
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="22"/>
4186 mrdocs 143
        <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
144
 
145
Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
146
the same as for setFillColor() and setFillShade(). See the constants for
147
available types (FILL_&lt;type&gt;).
148
</source>
149
        <translation type="unfinished">setGradientFill(type, &quot;colour1&quot;, shade1, &quot;colour2&quot;, shade2, [&quot;name&quot;])
150
 
151
Sets the gradient fill of the object &quot;name&quot; to type. Colour descriptions are
152
the same as for setFillColor() and setFillShade(). See the constants for
153
available types (FILL_&lt;type&gt;).
154
</translation>
155
    </message>
156
    <message>
9729 cbradney 157
        <location filename="../plugins/scriptplugin/guiapp.h" line="21"/>
4186 mrdocs 158
        <source>messagebarText(&quot;string&quot;)
159
 
160
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
161
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
162
</source>
163
        <translation type="unfinished">messagebarText(&quot;string&quot;)
164
 
165
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
166
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
167
</translation>
168
    </message>
169
    <message>
9729 cbradney 170
        <location filename="" line="136953768"/>
4186 mrdocs 171
        <source>newDoc(size, margins, orientation, firstPageNumber,
172
                   unit, facingPages, firstSideLeft) -&gt; bool
173
 
174
Creates a new document and returns true if successful. The parameters have the
175
following meaning:
176
 
177
    size = A tuple (width, height) describing the size of the document. You can
178
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
179
 
180
    margins = A tuple (left, right, top, bottom) describing the document
181
    margins
182
 
183
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
184
 
185
    firstPageNumber = is the number of the first page in the document used for
186
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
187
    numbers if you&apos;re creating a document in several parts.
188
 
189
    unit: this value sets the measurement units used by the document. Use a
190
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
191
    UNIT_PICAS, UNIT_POINTS.
192
 
193
    facingPages = FACINGPAGES, NOFACINGPAGES
194
 
195
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
196
 
197
The values for width, height and the margins are expressed in the given unit
198
for the document. PAPER_* constants are expressed in points. If your document
199
is not in points, make sure to account for this.
200
 
201
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
202
                FACINGPAGES, FIRSTPAGERIGHT)
203
</source>
4310 cbradney 204
        <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber,
4186 mrdocs 205
                   unit, facingPages, firstSideLeft) -&gt; bool
206
 
207
Creates a new document and returns true if successful. The parameters have the
208
following meaning:
209
 
210
    size = A tuple (width, height) describing the size of the document. You can
211
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
212
 
213
    margins = A tuple (left, right, top, bottom) describing the document
214
    margins
215
 
216
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
217
 
218
    firstPageNumber = is the number of the first page in the document used for
219
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
220
    numbers if you&apos;re creating a document in several parts.
221
 
222
    unit: this value sets the measurement units used by the document. Use a
223
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
224
    UNIT_PICAS, UNIT_POINTS.
225
 
226
    facingPages = FACINGPAGES, NOFACINGPAGES
227
 
228
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
229
 
230
The values for width, height and the margins are expressed in the given unit
231
for the document. PAPER_* constants are expressed in points. If your document
232
is not in points, make sure to account for this.
233
 
234
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
235
                FACINGPAGES, FIRSTPAGERIGHT)
236
</translation>
237
    </message>
4310 cbradney 238
    <message>
9729 cbradney 239
        <location filename="../plugins/scriptplugin/cmdpage.h" line="26"/>
6434 cbradney 240
        <source>newPage(where [,&quot;masterpage&quot;])
241
 
242
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
243
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
244
counted from 1 upwards, no matter what the displayed first page number of your
245
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
246
master page for the new page.
247
 
248
May raise IndexError if the page number is out of range
249
</source>
250
        <translation type="unfinished"></translation>
251
    </message>
252
    <message>
9729 cbradney 253
        <location filename="../plugins/scriptplugin/cmddoc.h" line="55"/>
4310 cbradney 254
        <source>newDocument(size, margins, orientation, firstPageNumber,
6434 cbradney 255
                        unit, pagesType, firstPageOrder, numPages) -&gt; bool
4310 cbradney 256
 
257
Creates a new document and returns true if successful. The parameters have the
258
following meaning:
259
 
260
size = A tuple (width, height) describing the size of the document. You can
261
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
262
 
263
margins = A tuple (left, right, top, bottom) describing the document
264
margins
265
 
266
orientation = the page orientation - constants PORTRAIT, LANDSCAPE
267
 
268
firstPageNumer = is the number of the first page in the document used for
269
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
270
numbers if you&apos;re creating a document in several parts.
271
 
272
unit: this value sets the measurement units used by the document. Use a
273
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
274
UNIT_PICAS, UNIT_POINTS.
275
 
276
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
277
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
278
PAGE_4 is 4-fold.
279
 
280
firstPageOrder = What is position of first page in the document.
281
Indexed from 0 (0 = first).
282
 
6434 cbradney 283
numPage = Number of pages to be created.
284
 
4310 cbradney 285
The values for width, height and the margins are expressed in the given unit
286
for the document. PAPER_* constants are expressed in points. If your document
287
is not in points, make sure to account for this.
288
 
289
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
6434 cbradney 290
PAGE_4, 3, 1)
4310 cbradney 291
 
292
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
293
</source>
294
        <translation type="unfinished"></translation>
295
    </message>
9729 cbradney 296
    <message>
297
        <location filename="../plugins/scriptplugin/svgimport.h" line="21"/>
298
        <source>placeSVG(&quot;filename&quot;, x, y)
299
 
300
Places the SVG &quot;filename&quot; onto the current page,
301
x and y specify the coordinate of the topleft corner of the SVG placed on the page
302
 
303
If loading was successful, the selection contains the imported SVG
304
</source>
305
        <translation type="unfinished"></translation>
306
    </message>
4186 mrdocs 307
</context>
308
<context>
309
    <name>@default</name>
310
    <message>
9729 cbradney 311
        <location filename="../plugins/scriptplugin/cmdtext.h" line="35"/>
4186 mrdocs 312
        <source>getFont([&quot;name&quot;]) -&gt; string
313
 
314
Returns the font name for the text frame &quot;name&quot;. If this text frame
315
has some text selected the value assigned to the first character
316
of the selection is returned. If &quot;name&quot; is not given the currently
317
selected item is used.
318
</source>
319
        <translation type="unfinished">getFont([&quot;name&quot;]) -&gt; string
320
 
321
Returns the font name for the text frame &quot;name&quot;. If this text frame
322
has some text selected the value assigned to the first character
323
of the selection is returned. If &quot;name&quot; is not given the currently
324
selected item is used.
325
</translation>
326
    </message>
327
    <message>
9729 cbradney 328
        <location filename="../plugins/scriptplugin/cmdtext.h" line="45"/>
4186 mrdocs 329
        <source>getTextLength([&quot;name&quot;]) -&gt; integer
330
 
331
Returns the length of the text in the text frame &quot;name&quot;.
332
If &quot;name&quot; is not given the currently selected item is used.
333
</source>
334
        <translation type="unfinished">getTextLength([&quot;name&quot;]) -&gt; integer
335
 
336
Returns the length of the text in the text frame &quot;name&quot;.
337
If &quot;name&quot; is not given the currently selected item is used.
338
</translation>
339
    </message>
340
    <message>
9729 cbradney 341
        <location filename="../plugins/scriptplugin/cmdtext.h" line="67"/>
4186 mrdocs 342
        <source>getText([&quot;name&quot;]) -&gt; string
343
 
344
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
345
selected, the selected text is returned. All text in the frame, not just
346
currently visible text, is returned. If &quot;name&quot; is not given the currently
347
selected item is used.
348
</source>
349
        <translation type="unfinished">getText([&quot;name&quot;]) -&gt; string
350
 
351
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
352
selected, the selected text is returned. All text in the frame, not just
353
currently visible text, is returned. If &quot;name&quot; is not given the currently
354
selected item is used.
355
</translation>
356
    </message>
357
    <message>
9729 cbradney 358
        <location filename="../plugins/scriptplugin/cmdtext.h" line="79"/>
4186 mrdocs 359
        <source>getAllText([&quot;name&quot;]) -&gt; string
360
 
361
Returns the text of the text frame &quot;name&quot; and of all text frames which are
362
linked with this frame. If this textframe has some text selected, the selected
363
text is returned. If &quot;name&quot; is not given the currently selected item is
364
used.
365
</source>
366
        <translation type="unfinished">getAllText([&quot;name&quot;]) -&gt; string
367
 
368
Returns the text of the text frame &quot;name&quot; and of all text frames which are
369
linked with this frame. If this textframe has some text selected, the selected
370
text is returned. If &quot;name&quot; is not given the currently selected item is
371
used.
372
</translation>
373
    </message>
374
    <message>
9729 cbradney 375
        <location filename="../plugins/scriptplugin/cmdtext.h" line="89"/>
4186 mrdocs 376
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float
377
 
378
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
379
points. If &quot;name&quot; is not given the currently selected item is used.
380
</source>
381
        <translation type="unfinished">getLineSpacing([&quot;name&quot;]) -&gt; float
382
 
383
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
384
points. If &quot;name&quot; is not given the currently selected item is used.
385
</translation>
386
    </message>
387
    <message>
9729 cbradney 388
        <location filename="../plugins/scriptplugin/cmdtext.h" line="99"/>
4186 mrdocs 389
        <source>getColumnGap([&quot;name&quot;]) -&gt; float
390
 
391
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
392
&quot;name&quot; is not given the currently selected item is used.
393
</source>
394
        <translation type="unfinished">getColumnGap([&quot;name&quot;]) -&gt; float
395
 
396
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
397
&quot;name&quot; is not given the currently selected item is used.
398
</translation>
399
    </message>
400
    <message>
9729 cbradney 401
        <location filename="../plugins/scriptplugin/cmdtext.h" line="109"/>
4186 mrdocs 402
        <source>getColumns([&quot;name&quot;]) -&gt; integer
403
 
404
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
405
given the currently selected item is used.
406
</source>
407
        <translation type="unfinished">getColumns([&quot;name&quot;]) -&gt; integer
408
 
409
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
410
given the currently selected item is used.
411
</translation>
412
    </message>
413
    <message>
9729 cbradney 414
        <location filename="../plugins/scriptplugin/cmdtext.h" line="121"/>
4186 mrdocs 415
        <source>setText(&quot;text&quot;, [&quot;name&quot;])
416
 
417
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
418
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
419
for more details. If &quot;name&quot; is not given the currently selected item is
420
used.
421
</source>
422
        <translation type="unfinished">setText(&quot;text&quot;, [&quot;name&quot;])
423
 
424
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
425
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
426
for more details. If &quot;name&quot; is not given the currently selected item is
427
used.
428
</translation>
429
    </message>
430
    <message>
9729 cbradney 431
        <location filename="" line="136953768"/>
4186 mrdocs 432
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
433
 
434
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame. Text
435
must be UTF encoded (see setText() as reference) The first character has an
436
index of 0. &quot;name&quot; If &quot;name&quot; is not given the currently selected Item is
437
used.
438
 
439
May throw IndexError for an insertion out of bounds.
440
</source>
4310 cbradney 441
        <translation type="obsolete">insertText(&quot;text&quot;, pos, [&quot;name&quot;])
4186 mrdocs 442
 
443
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame. Text
444
must be UTF encoded (see setText() as reference) The first character has an
445
index of 0. &quot;name&quot; If &quot;name&quot; is not given the currently selected Item is
446
used.
447
 
448
May throw IndexError for an insertion out of bounds.
449
</translation>
450
    </message>
451
    <message>
9729 cbradney 452
        <location filename="../plugins/scriptplugin/cmdtext.h" line="148"/>
4186 mrdocs 453
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])
454
 
455
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
456
selected only the selected text is changed.  If &quot;name&quot; is not given the
457
currently selected item is used.
458
 
459
May throw ValueError if the font cannot be found.
460
</source>
461
        <translation type="unfinished">setFont(&quot;font&quot;, [&quot;name&quot;])
462
 
463
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
464
selected only the selected text is changed.  If &quot;name&quot; is not given the
465
currently selected item is used.
466
 
467
May throw ValueError if the font cannot be found.
468
</translation>
469
    </message>
470
    <message>
9729 cbradney 471
        <location filename="../plugins/scriptplugin/cmdtext.h" line="162"/>
4186 mrdocs 472
        <source>setFontSize(size, [&quot;name&quot;])
473
 
474
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
475
as a value in points. If there is some text selected only the selected text is
476
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
477
currently selected item is used.
478
 
479
May throw ValueError for a font size that&apos;s out of bounds.
480
</source>
481
        <translation type="unfinished">setFontSize(size, [&quot;name&quot;])
482
 
483
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
484
as a value in points. If there is some text selected only the selected text is
485
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
486
currently selected item is used.
487
 
488
May throw ValueError for a font size that&apos;s out of bounds.
489
</translation>
490
    </message>
491
    <message>
9729 cbradney 492
        <location filename="../plugins/scriptplugin/cmdtext.h" line="175"/>
4186 mrdocs 493
        <source>setLineSpacing(size, [&quot;name&quot;])
494
 
495
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
496
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
497
item is used.
498
 
499
May throw ValueError if the line spacing is out of bounds.
500
</source>
501
        <translation type="unfinished">setLineSpacing(size, [&quot;name&quot;])
502
 
503
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
504
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
505
item is used.
506
 
507
May throw ValueError if the line spacing is out of bounds.
508
</translation>
509
    </message>
510
    <message>
9729 cbradney 511
        <location filename="../plugins/scriptplugin/cmdtext.h" line="187"/>
4186 mrdocs 512
        <source>setColumnGap(size, [&quot;name&quot;])
513
 
514
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
515
&quot;name&quot; is not given the currently selected item is used.
516
 
517
May throw ValueError if the column gap is out of bounds (must be positive).
518
</source>
519
        <translation type="unfinished">setColumnGap(size, [&quot;name&quot;])
520
 
521
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
522
&quot;name&quot; is not given the currently selected item is used.
523
 
524
May throw ValueError if the column gap is out of bounds (must be positive).
525
</translation>
526
    </message>
527
    <message>
9729 cbradney 528
        <location filename="../plugins/scriptplugin/cmdtext.h" line="199"/>
4186 mrdocs 529
        <source>setColumns(nr, [&quot;name&quot;])
530
 
531
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
532
If &quot;name&quot; is not given the currently selected item is used.
533
 
534
May throw ValueError if number of columns is not at least one.
535
</source>
536
        <translation type="unfinished">setColumns(nr, [&quot;name&quot;])
537
 
538
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
539
If &quot;name&quot; is not given the currently selected item is used.
540
 
541
May throw ValueError if number of columns is not at least one.
542
</translation>
543
    </message>
544
    <message>
9729 cbradney 545
        <location filename="../plugins/scriptplugin/cmdtext.h" line="212"/>
4186 mrdocs 546
        <source>setTextAlignment(align, [&quot;name&quot;])
547
 
548
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
549
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
550
be one of the ALIGN_ constants defined in this module - see dir(scribus).
551
 
552
May throw ValueError for an invalid alignment constant.
553
</source>
554
        <translation type="unfinished">setTextAlignment(align, [&quot;name&quot;])
555
 
556
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
557
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
558
be one of the ALIGN_ constants defined in this module - see dir(scribus).
559
 
560
May throw ValueError for an invalid alignment constant.
561
</translation>
562
    </message>
563
    <message>
9729 cbradney 564
        <location filename="../plugins/scriptplugin/cmdtext.h" line="226"/>
4186 mrdocs 565
        <source>selectText(start, count, [&quot;name&quot;])
566
 
567
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
568
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
569
text selection will be cleared.  If &quot;name&quot; is not given the currently
570
selected item is used.
571
 
572
May throw IndexError if the selection is outside the bounds of the text.
573
</source>
574
        <translation type="unfinished">selectText(start, count, [&quot;name&quot;])
575
 
576
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
577
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
578
text selection will be cleared.  If &quot;name&quot; is not given the currently
579
selected item is used.
580
 
581
May throw IndexError if the selection is outside the bounds of the text.
582
</translation>
583
    </message>
584
    <message>
9729 cbradney 585
        <location filename="../plugins/scriptplugin/cmdtext.h" line="237"/>
4186 mrdocs 586
        <source>deleteText([&quot;name&quot;])
587
 
588
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
589
only the selected text will be deleted. If &quot;name&quot; is not given the currently
590
selected item is used.
591
</source>
592
        <translation type="unfinished">deleteText([&quot;name&quot;])
593
 
594
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
595
only the selected text will be deleted. If &quot;name&quot; is not given the currently
596
selected item is used.
597
</translation>
598
    </message>
599
    <message>
9729 cbradney 600
        <location filename="../plugins/scriptplugin/cmdtext.h" line="248"/>
4186 mrdocs 601
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
602
 
603
Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
604
is some text selected only the selected text is changed. If &quot;name&quot; is not
605
given the currently selected item is used.
606
</source>
607
        <translation type="unfinished">setTextColor(&quot;colour&quot;, [&quot;name&quot;])
608
 
609
Sets the text colour of the text frame &quot;name&quot; to the colour &quot;colour&quot;. If there
610
is some text selected only the selected text is changed. If &quot;name&quot; is not
611
given the currently selected item is used.
612
</translation>
613
    </message>
614
    <message>
9729 cbradney 615
        <location filename="../plugins/scriptplugin/cmdtext.h" line="258"/>
4186 mrdocs 616
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
617
 
618
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
619
selected item is used.
620
</source>
621
        <translation type="unfinished">setTextStroke(&quot;colour&quot;, [&quot;name&quot;])
622
 
623
Set &quot;colour&quot; of the text stroke. If &quot;name&quot; is not given the currently
624
selected item is used.
625
</translation>
626
    </message>
627
    <message>
9729 cbradney 628
        <location filename="../plugins/scriptplugin/cmdtext.h" line="271"/>
4186 mrdocs 629
        <source>setTextShade(shade, [&quot;name&quot;])
630
 
631
Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
632
there is some text selected only the selected text is changed. &quot;shade&quot; must
633
be an integer value in the range from 0 (lightest) to 100 (full color
634
intensity). If &quot;name&quot; is not given the currently selected item is
635
used.
636
</source>
637
        <translation type="unfinished">setTextShade(shade, [&quot;name&quot;])
638
 
639
Sets the shading of the text colour of the object &quot;name&quot; to &quot;shade&quot;. If
640
there is some text selected only the selected text is changed. &quot;shade&quot; must
641
be an integer value in the range from 0 (lightest) to 100 (full colour
642
intensity). If &quot;name&quot; is not given the currently selected item is
643
used.
644
</translation>
645
    </message>
646
    <message>
9729 cbradney 647
        <location filename="../plugins/scriptplugin/cmdtext.h" line="284"/>
4186 mrdocs 648
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
649
 
650
Link two text frames. The frame named &quot;fromname&quot; is linked to the
651
frame named &quot;toname&quot;. The target frame must be an empty text frame
652
and must not link to or be linked from any other frames already.
653
 
654
May throw ScribusException if linking rules are violated.
655
</source>
656
        <translation type="unfinished">linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
657
 
658
Link two text frames. The frame named &quot;fromname&quot; is linked to the
659
frame named &quot;toname&quot;. The target frame must be an empty text frame
660
and must not link to or be linked from any other frames already.
661
 
662
May throw ScribusException if linking rules are violated.
663
</translation>
664
    </message>
665
    <message>
9729 cbradney 666
        <location filename="../plugins/scriptplugin/cmdtext.h" line="301"/>
4186 mrdocs 667
        <source>unlinkTextFrames(&quot;name&quot;)
668
 
669
Remove the specified (named) object from the text frame flow/linkage. If the
670
frame was in the middle of a chain, the previous and next frames will be
671
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
672
 
673
May throw ScribusException if linking rules are violated.
674
</source>
675
        <translation type="unfinished">unlinkTextFrames(&quot;name&quot;)
676
 
677
Remove the specified (named) object from the text frame flow/linkage. If the
678
frame was in the middle of a chain, the previous and next frames will be
679
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
680
 
681
May throw ScribusException if linking rules are violated.
682
</translation>
683
    </message>
684
    <message>
9729 cbradney 685
        <location filename="../plugins/scriptplugin/cmdtext.h" line="314"/>
4186 mrdocs 686
        <source>traceText([&quot;name&quot;])
687
 
688
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
689
currently selected item is used.</source>
690
        <translation type="unfinished">traceText([&quot;name&quot;])
691
 
692
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
693
currently selected item is used.</translation>
694
    </message>
695
    <message>
9729 cbradney 696
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="35"/>
4186 mrdocs 697
        <source>getColor(&quot;name&quot;) -&gt; tuple
698
 
699
Returns a tuple (C, M, Y, K) containing the four color components of the
700
color &quot;name&quot; from the current document. If no document is open, returns
701
the value of the named color from the default document colors.
702
 
703
May raise NotFoundError if the named color wasn&apos;t found.
704
May raise ValueError if an invalid color name is specified.
705
</source>
706
        <translation type="unfinished">getColor(&quot;name&quot;) -&gt; tuple
707
 
708
Returns a tuple (C, M, Y, K) containing the four colour components of the
709
colour &quot;name&quot; from the current document. If no document is open, returns
710
the value of the named colour from the default document colours.
711
 
712
May raise NotFoundError if the named colour wasn&apos;t found.
713
May raise ValueError if an invalid colour name is specified.
714
</translation>
715
    </message>
716
    <message>
9729 cbradney 717
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="64"/>
4186 mrdocs 718
        <source>changeColor(&quot;name&quot;, c, m, y, k)
719
 
720
Changes the color &quot;name&quot; to the specified CMYK value. The color value is
721
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
722
Color components should be in the range from 0 to 255.
723
 
724
May raise NotFoundError if the named color wasn&apos;t found.
725
May raise ValueError if an invalid color name is specified.
726
</source>
727
        <translation type="unfinished">changeColor(&quot;name&quot;, c, m, y, k)
728
 
729
Changes the colour &quot;name&quot; to the specified CMYK value. The colour value is
730
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
731
Colour components should be in the range from 0 to 255.
732
 
733
May raise NotFoundError if the named colour wasn&apos;t found.
734
May raise ValueError if an invalid colour name is specified.
735
</translation>
736
    </message>
737
    <message>
9729 cbradney 738
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="94"/>
4186 mrdocs 739
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
740
 
741
Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
742
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
743
&quot;None&quot; - transparent.
744
 
745
deleteColor works on the default document colors if there is no document open.
746
In that case, &quot;replace&quot;, if specified, has no effect.
747
 
748
May raise NotFoundError if a named color wasn&apos;t found.
749
May raise ValueError if an invalid color name is specified.
750
</source>
751
        <translation type="unfinished">deleteColor(&quot;name&quot;, &quot;replace&quot;)
752
 
753
Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
754
colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
755
&quot;None&quot; - transparent.
756
 
757
deleteColor works on the default document colours if there is no document open.
758
In that case, &quot;replace&quot;, if specified, has no effect.
759
 
760
May raise NotFoundError if a named colour wasn&apos;t found.
761
May raise ValueError if an invalid colour name is specified.
762
</translation>
763
    </message>
764
    <message>
9729 cbradney 765
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="106"/>
4186 mrdocs 766
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
767
 
768
Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
769
 
770
May raise NotFoundError if a named color wasn&apos;t found.
771
May raise ValueError if an invalid color name is specified.
772
</source>
773
        <translation type="unfinished">replaceColor(&quot;name&quot;, &quot;replace&quot;)
774
 
775
Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.
776
 
777
May raise NotFoundError if a named colour wasn&apos;t found.
778
May raise ValueError if an invalid colour name is specified.
779
</translation>
780
    </message>
781
    <message>
9729 cbradney 782
        <location filename="" line="136953768"/>
4186 mrdocs 783
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot; ,haspreview, issave]) -&gt; string with filename
784
 
785
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
786
with the filter string &quot;filter&quot;. A default filename or file path can also
787
supplied, leave this string empty when you don&apos;t want to use it.  A value of
788
True for haspreview enables a small preview widget in the FileSelect box.  When
789
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
790
otherwise it acts like a &quot;File Open Dialog&quot;. The default for both of the
791
opional parameters is False.
792
 
793
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
794
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
795
 
796
Refer to the Qt-Documentation for QFileDialog for details on filters.
797
 
798
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
799
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
800
</source>
4310 cbradney 801
        <translation type="obsolete">fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot; ,haspreview, issave]) -&gt; string with filename
4186 mrdocs 802
 
803
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
804
with the filter string &quot;filter&quot;. A default filename or file path can also
805
supplied, leave this string empty when you don&apos;t want to use it.  A value of
806
True for haspreview enables a small preview widget in the FileSelect box.  When
807
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
808
otherwise it acts like a &quot;File Open Dialog&quot;. The default for both of the
809
opional parameters is False.
810
 
811
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
812
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
813
 
814
Refer to the Qt-Documentation for QFileDialog for details on filters.
815
 
816
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
817
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
818
</translation>
819
    </message>
820
    <message>
9729 cbradney 821
        <location filename="../plugins/scriptplugin/cmddialog.h" line="88"/>
4186 mrdocs 822
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
823
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
824
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
825
 
826
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
827
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
828
button, OK, is displayed. Only the caption and message arguments are required,
829
though setting an icon and appropriate button(s) is strongly
830
recommended. The message text may contain simple HTML-like markup.
831
 
832
Returns the number of the button the user pressed. Button numbers start
833
at 1.
834
 
835
For the icon and the button parameters there are predefined constants available
836
with the same names as in the Qt Documentation. These are the BUTTON_* and
837
ICON_* constants defined in the module. There are also two extra constants that
838
can be binary-ORed with button constants:
839
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
840
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
841
 
842
Usage examples:
843
result = messageBox(&apos;Script failed&apos;,
844
                    &apos;This script only works when you have a text frame selected.&apos;,
845
                    ICON_ERROR)
846
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
847
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
848
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
849
 
850
Defined button and icon constants:
851
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
852
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
853
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
854
</source>
855
        <translation type="unfinished">messageBox(&quot;caption&quot;, &quot;message&quot;,
856
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
857
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
858
 
859
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
860
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
861
button, OK, is displayed. Only the caption and message arguments are required,
862
though setting an icon and appropriate button(s) is strongly
863
recommended. The message text may contain simple HTML-like markup.
864
 
865
Returns the number of the button the user pressed. Button numbers start
866
at 1.
867
 
868
For the icon and the button parameters there are predefined constants available
869
with the same names as in the Qt Documentation. These are the BUTTON_* and
870
ICON_* constants defined in the module. There are also two extra constants that
871
can be binary-ORed with button constants:
872
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
873
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
874
 
875
Usage examples:
876
result = messageBox(&apos;Script failed&apos;,
877
                    &apos;This script only works when you have a text frame selected.&apos;,
878
                    ICON_ERROR)
879
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
880
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
881
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
882
 
883
Defined button and icon constants:
884
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
885
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
886
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
887
</translation>
888
    </message>
889
    <message>
9729 cbradney 890
        <location filename="../plugins/scriptplugin/cmddialog.h" line="101"/>
4186 mrdocs 891
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string
892
 
893
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
894
Parameters: window title, text in the window and optional &apos;default&apos; value.
895
 
896
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
897
</source>
898
        <translation type="unfinished">valueDialog(caption, message [,defaultvalue]) -&gt; string
899
 
900
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
901
Parameters: window title, text in the window and optional &apos;default&apos; value.
902
 
903
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
904
</translation>
905
    </message>
906
    <message>
9729 cbradney 907
        <location filename="../plugins/scriptplugin/cmddoc.h" line="108"/>
4186 mrdocs 908
        <source>closeDoc()
909
 
910
Closes the current document without prompting to save.
911
 
912
May throw NoDocOpenError if there is no document to close
913
</source>
914
        <translation type="unfinished">closeDoc()
915
 
916
Closes the current document without prompting to save.
917
 
918
May throw NoDocOpenError if there is no document to close
919
</translation>
920
    </message>
921
    <message>
9729 cbradney 922
        <location filename="../plugins/scriptplugin/cmddoc.h" line="117"/>
4186 mrdocs 923
        <source>haveDoc() -&gt; bool
924
 
925
Returns true if there is a document open.
926
</source>
927
        <translation type="unfinished">haveDoc() -&gt; bool
928
 
929
Returns true if there is a document open.
930
</translation>
931
    </message>
932
    <message>
9729 cbradney 933
        <location filename="../plugins/scriptplugin/cmddoc.h" line="128"/>
4186 mrdocs 934
        <source>openDoc(&quot;name&quot;)
935
 
936
Opens the document &quot;name&quot;.
937
 
938
May raise ScribusError if the document could not be opened.
939
</source>
940
        <translation type="unfinished">openDoc(&quot;name&quot;)
941
 
942
Opens the document &quot;name&quot;.
943
 
944
May raise ScribusError if the document could not be opened.
945
</translation>
946
    </message>
947
    <message>
9729 cbradney 948
        <location filename="../plugins/scriptplugin/cmddoc.h" line="141"/>
4186 mrdocs 949
        <source>saveDoc()
950
 
951
Saves the current document with its current name, returns true if successful.
952
If the document has not already been saved, this may bring up an interactive
953
save file dialog.
954
 
955
If the save fails, there is currently no way to tell.
956
</source>
957
        <translation type="unfinished">saveDoc()
958
 
959
Saves the current document with its current name, returns true if successful.
960
If the document has not already been saved, this may bring up an interactive
961
save file dialog.
962
 
963
If the save fails, there is currently no way to tell.
964
</translation>
965
    </message>
966
    <message>
9729 cbradney 967
        <location filename="../plugins/scriptplugin/cmddoc.h" line="152"/>
4186 mrdocs 968
        <source>saveDocAs(&quot;name&quot;)
969
 
970
Saves the current document under the new name &quot;name&quot; (which may be a full or
971
relative path).
972
 
973
May raise ScribusError if the save fails.
974
</source>
975
        <translation type="unfinished">saveDocAs(&quot;name&quot;)
976
 
977
Saves the current document under the new name &quot;name&quot; (which may be a full or
978
relative path).
979
 
980
May raise ScribusError if the save fails.
981
</translation>
982
    </message>
983
    <message>
9729 cbradney 984
        <location filename="" line="136953768"/>
4186 mrdocs 985
        <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
986
 
987
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
988
strings.
989
</source>
6434 cbradney 990
        <translation type="obsolete">saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
4186 mrdocs 991
 
992
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
993
strings.
994
</translation>
995
    </message>
996
    <message>
9729 cbradney 997
        <location filename="" line="136953768"/>
4186 mrdocs 998
        <source>setMargins(lr, rr, tr, br)
999
 
1000
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
1001
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
1002
constants.
1003
</source>
9729 cbradney 1004
        <translation type="obsolete">setMargins(lr, rr, tr, br)
4186 mrdocs 1005
 
1006
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
1007
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
1008
constants.
1009
</translation>
1010
    </message>
1011
    <message>
9729 cbradney 1012
        <location filename="../plugins/scriptplugin/cmddoc.h" line="185"/>
4186 mrdocs 1013
        <source>setUnit(type)
1014
 
1015
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
1016
defined as constants UNIT_&lt;type&gt;.
1017
 
1018
May raise ValueError if an invalid unit is passed.
1019
</source>
1020
        <translation type="unfinished">setUnit(type)
1021
 
1022
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
1023
defined as constants UNIT_&lt;type&gt;.
1024
 
1025
May raise ValueError if an invalid unit is passed.
1026
</translation>
1027
    </message>
1028
    <message>
9729 cbradney 1029
        <location filename="../plugins/scriptplugin/cmddoc.h" line="196"/>
4186 mrdocs 1030
        <source>getUnit() -&gt; integer (Scribus unit constant)
1031
 
1032
Returns the measurement units of the document. The returned value will be one
1033
of the UNIT_* constants:
1034
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
1035
</source>
1036
        <translation type="unfinished">getUnit() -&gt; integer (Scribus unit constant)
1037
 
1038
Returns the measurement units of the document. The returned value will be one
1039
of the UNIT_* constants:
1040
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
1041
</translation>
1042
    </message>
1043
    <message>
9729 cbradney 1044
        <location filename="../plugins/scriptplugin/cmddoc.h" line="206"/>
4186 mrdocs 1045
        <source>loadStylesFromFile(&quot;filename&quot;)
1046
 
1047
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
1048
current document.
1049
</source>
1050
        <translation type="unfinished">loadStylesFromFile(&quot;filename&quot;)
1051
 
1052
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
1053
current document.
1054
</translation>
1055
    </message>
1056
    <message>
9729 cbradney 1057
        <location filename="../plugins/scriptplugin/cmddoc.h" line="218"/>
4186 mrdocs 1058
        <source>setDocType(facingPages, firstPageLeft)
1059
 
1060
Sets the document type. To get facing pages set the first parameter to
1061
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
1062
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
1063
a right page use FIRSTPAGERIGHT.
1064
</source>
1065
        <translation type="unfinished">setDocType(facingPages, firstPageLeft)
1066
 
1067
Sets the document type. To get facing pages set the first parameter to
1068
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
1069
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
1070
a right page use FIRSTPAGERIGHT.
1071
</translation>
1072
    </message>
1073
    <message>
9729 cbradney 1074
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="51"/>
4186 mrdocs 1075
        <source>getLineColor([&quot;name&quot;]) -&gt; string
1076
 
1077
Returns the name of the line color of the object &quot;name&quot;.
1078
If &quot;name&quot; is not given the currently selected item is used.
1079
</source>
1080
        <translation type="unfinished">getLineColor([&quot;name&quot;]) -&gt; string
1081
 
1082
Returns the name of the line colour of the object &quot;name&quot;.
1083
If &quot;name&quot; is not given the currently selected item is used.
1084
</translation>
1085
    </message>
1086
    <message>
9729 cbradney 1087
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="81"/>
4186 mrdocs 1088
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer
1089
 
1090
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
1091
is not given the currently selected Item is used.
1092
</source>
1093
        <translation type="unfinished">getLineWidth([&quot;name&quot;]) -&gt; integer
1094
 
1095
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
1096
is not given the currently selected Item is used.
1097
</translation>
1098
    </message>
1099
    <message>
9729 cbradney 1100
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="91"/>
4186 mrdocs 1101
        <source>getLineShade([&quot;name&quot;]) -&gt; integer
1102
 
1103
Returns the shading value of the line color of the object &quot;name&quot;.
1104
If &quot;name&quot; is not given the currently selected item is used.
1105
</source>
1106
        <translation type="unfinished">getLineShade([&quot;name&quot;]) -&gt; integer
1107
 
1108
Returns the shading value of the line colour of the object &quot;name&quot;.
1109
If &quot;name&quot; is not given the currently selected item is used.
1110
</translation>
1111
    </message>
1112
    <message>
9729 cbradney 1113
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="102"/>
4186 mrdocs 1114
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
1115
 
1116
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
1117
the currently selected item is used.  The join types are:
1118
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
1119
</source>
1120
        <translation type="unfinished">getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
1121
 
1122
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
1123
the currently selected item is used.  The join types are:
1124
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
1125
</translation>
1126
    </message>
1127
    <message>
9729 cbradney 1128
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="113"/>
4186 mrdocs 1129
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
1130
 
1131
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1132
currently selected item is used. The cap types are:
1133
CAP_FLAT, CAP_ROUND, CAP_SQUARE
1134
</source>
1135
        <translation type="unfinished">getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
1136
 
1137
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1138
currently selected item is used. The cap types are:
1139
CAP_FLAT, CAP_ROUND, CAP_SQUARE
1140
</translation>
1141
    </message>
1142
    <message>
9729 cbradney 1143
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="124"/>
4186 mrdocs 1144
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
1145
 
1146
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1147
currently selected item is used. Line style constants are:
1148
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
1149
</source>
1150
        <translation type="unfinished">getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
1151
 
1152
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1153
currently selected item is used. Line style constants are:
1154
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
1155
</translation>
1156
    </message>
1157
    <message>
9729 cbradney 1158
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="134"/>
4186 mrdocs 1159
        <source>getFillShade([&quot;name&quot;]) -&gt; integer
1160
 
1161
Returns the shading value of the fill color of the object &quot;name&quot;.
1162
If &quot;name&quot; is not given the currently selected item is used.
1163
</source>
1164
        <translation type="unfinished">getFillShade([&quot;name&quot;]) -&gt; integer
1165
 
1166
Returns the shading value of the fill colour of the object &quot;name&quot;.
1167
If &quot;name&quot; is not given the currently selected item is used.
1168
</translation>
1169
    </message>
1170
    <message>
9729 cbradney 1171
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="155"/>
4186 mrdocs 1172
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
1173
 
1174
Returns a (x, y) tuple containing the scaling values of the image frame
1175
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
1176
</source>
1177
        <translation type="unfinished">getImageScale([&quot;name&quot;]) -&gt; (x,y)
1178
 
1179
Returns a (x, y) tuple containing the scaling values of the image frame
1180
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
1181
</translation>
1182
    </message>
1183
    <message>
9729 cbradney 1184
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="165"/>
4186 mrdocs 1185
        <source>getImageName([&quot;name&quot;]) -&gt; string
1186
 
1187
Returns the filename for the image in the image frame. If &quot;name&quot; is not
1188
given the currently selected item is used.
1189
</source>
1190
        <translation type="unfinished">getImageName([&quot;name&quot;]) -&gt; string
1191
 
1192
Returns the filename for the image in the image frame. If &quot;name&quot; is not
1193
given the currently selected item is used.
1194
</translation>
1195
    </message>
1196
    <message>
9729 cbradney 1197
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="189"/>
4186 mrdocs 1198
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)
1199
 
1200
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
1201
If &quot;name&quot; is not given the currently selected item is used. The size is
1202
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
1203
for reference.
1204
</source>
1205
        <translation type="unfinished">getSize([&quot;name&quot;]) -&gt; (width,height)
1206
 
1207
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
1208
If &quot;name&quot; is not given the currently selected item is used. The size is
1209
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
1210
for reference.
1211
</translation>
1212
    </message>
1213
    <message>
9729 cbradney 1214
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="200"/>
4186 mrdocs 1215
        <source>getRotation([&quot;name&quot;]) -&gt; integer
1216
 
1217
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
1218
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
1219
is used.
1220
</source>
1221
        <translation type="unfinished">getRotation([&quot;name&quot;]) -&gt; integer
1222
 
1223
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
1224
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
1225
is used.
1226
</translation>
1227
    </message>
1228
    <message>
9729 cbradney 1229
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="209"/>
4186 mrdocs 1230
        <source>getAllObjects() -&gt; list
1231
 
1232
Returns a list containing the names of all objects on the current page.
1233
</source>
1234
        <translation type="unfinished">getAllObjects() -&gt; list
1235
 
1236
Returns a list containing the names of all objects on the current page.
1237
</translation>
1238
    </message>
1239
    <message>
9729 cbradney 1240
        <location filename="../plugins/scriptplugin/cmdmani.h" line="35"/>
4186 mrdocs 1241
        <source>moveObjectAbs(x, y [, &quot;name&quot;])
1242
 
1243
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
1244
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
1245
is not given the currently selected item is used.  If the object &quot;name&quot;
1246
belongs to a group, the whole group is moved.
1247
</source>
1248
        <translation type="unfinished">moveObjectAbs(x, y [, &quot;name&quot;])
1249
 
1250
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
1251
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
1252
is not given the currently selected item is used.  If the object &quot;name&quot;
1253
belongs to a group, the whole group is moved.
1254
</translation>
1255
    </message>
1256
    <message>
9729 cbradney 1257
        <location filename="../plugins/scriptplugin/cmdmani.h" line="48"/>
4186 mrdocs 1258
        <source>rotateObject(rot [, &quot;name&quot;])
1259
 
1260
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
1261
rotated by the vertex that is currently selected as the rotation point - by
1262
default, the top left vertext at zero rotation. Positive values mean counter
1263
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
1264
given the currently selected item is used.
1265
</source>
1266
        <translation type="unfinished">rotateObject(rot [, &quot;name&quot;])
1267
 
1268
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
1269
rotated by the vertex that is currently selected as the rotation point - by
1270
default, the top left vertext at zero rotation. Positive values mean counter
1271
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
1272
given the currently selected item is used.
1273
</translation>
1274
    </message>
1275
    <message>
9729 cbradney 1276
        <location filename="../plugins/scriptplugin/cmdmani.h" line="69"/>
4186 mrdocs 1277
        <source>sizeObject(width, height [, &quot;name&quot;])
1278
 
1279
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
1280
is not given the currently selected item is used.
1281
</source>
1282
        <translation type="unfinished">sizeObject(width, height [, &quot;name&quot;])
1283
 
1284
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
1285
is not given the currently selected item is used.
1286
</translation>
1287
    </message>
1288
    <message>
9729 cbradney 1289
        <location filename="../plugins/scriptplugin/cmdmani.h" line="80"/>
4186 mrdocs 1290
        <source>getSelectedObject([nr]) -&gt; string
1291
 
1292
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
1293
of the selected object, e.g. 0 means the first selected object, 1 means the
1294
second selected Object and so on.
1295
</source>
1296
        <translation type="unfinished">getSelectedObject([nr]) -&gt; string
1297
 
1298
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
1299
of the selected object, e.g. 0 means the first selected object, 1 means the
1300
second selected Object and so on.
1301
</translation>
1302
    </message>
1303
    <message>
9729 cbradney 1304
        <location filename="../plugins/scriptplugin/cmdmani.h" line="89"/>
4186 mrdocs 1305
        <source>selectionCount() -&gt; integer
1306
 
1307
Returns the number of selected objects.
1308
</source>
1309
        <translation type="unfinished">selectionCount() -&gt; integer
1310
 
1311
Returns the number of selected objects.
1312
</translation>
1313
    </message>
1314
    <message>
9729 cbradney 1315
        <location filename="../plugins/scriptplugin/cmdmani.h" line="98"/>
4186 mrdocs 1316
        <source>selectObject(&quot;name&quot;)
1317
 
1318
Selects the object with the given &quot;name&quot;.
1319
</source>
1320
        <translation type="unfinished">selectObject(&quot;name&quot;)
1321
 
1322
Selects the object with the given &quot;name&quot;.
1323
</translation>
1324
    </message>
1325
    <message>
9729 cbradney 1326
        <location filename="../plugins/scriptplugin/cmdmani.h" line="107"/>
4186 mrdocs 1327
        <source>deselectAll()
1328
 
1329
Deselects all objects in the whole document.
1330
</source>
1331
        <translation type="unfinished">deselectAll()
1332
 
1333
Deselects all objects in the whole document.
1334
</translation>
1335
    </message>
1336
    <message>
9729 cbradney 1337
        <location filename="../plugins/scriptplugin/cmdmani.h" line="118"/>
4186 mrdocs 1338
        <source>groupObjects(list)
1339
 
1340
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
1341
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
1342
items are used.
1343
</source>
1344
        <translation type="unfinished">groupObjects(list)
1345
 
1346
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
1347
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
1348
items are used.
1349
</translation>
1350
    </message>
1351
    <message>
9729 cbradney 1352
        <location filename="../plugins/scriptplugin/cmdmani.h" line="126"/>
4186 mrdocs 1353
        <source>unGroupObjects(&quot;name&quot;)
1354
 
1355
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
1356
        <translation type="unfinished">unGroupObjects(&quot;name&quot;)
1357
 
1358
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
1359
    </message>
1360
    <message>
9729 cbradney 1361
        <location filename="../plugins/scriptplugin/cmdmani.h" line="141"/>
4186 mrdocs 1362
        <source>scaleGroup(factor [,&quot;name&quot;])
1363
 
1364
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
1365
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1366
scales the group to 50 % of its original size, a value of 1.5 scales the group
1367
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
1368
0. If &quot;name&quot; is not given the currently selected item is used.
1369
 
1370
May raise ValueError if an invalid scale factor is passed.
1371
</source>
1372
        <translation type="unfinished">scaleGroup(factor [,&quot;name&quot;])
1373
 
1374
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
1375
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1376
scales the group to 50 % of its original size, a value of 1.5 scales the group
1377
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
1378
0. If &quot;name&quot; is not given the currently selected item is used.
1379
 
1380
May raise ValueError if an invalid scale factor is passed.
1381
</translation>
1382
    </message>
1383
    <message>
9729 cbradney 1384
        <location filename="../plugins/scriptplugin/cmdmani.h" line="153"/>
4186 mrdocs 1385
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
1386
 
1387
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
1388
not given the currently selected item is used.
1389
 
1390
May raise WrongFrameTypeError if the target frame is not an image frame
1391
</source>
1392
        <translation type="unfinished">loadImage(&quot;filename&quot; [, &quot;name&quot;])
1393
 
1394
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
1395
not given the currently selected item is used.
1396
 
1397
May raise WrongFrameTypeError if the target frame is not an image frame
1398
</translation>
1399
    </message>
1400
    <message>
9729 cbradney 1401
        <location filename="../plugins/scriptplugin/cmdmani.h" line="166"/>
4186 mrdocs 1402
        <source>scaleImage(x, y [, &quot;name&quot;])
1403
 
1404
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
1405
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1406
means 100 %.
1407
 
1408
May raise WrongFrameTypeError if the target frame is not an image frame
1409
</source>
1410
        <translation type="unfinished">scaleImage(x, y [, &quot;name&quot;])
1411
 
1412
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
1413
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1414
means 100 %.
1415
 
1416
May raise WrongFrameTypeError if the target frame is not an image frame
1417
</translation>
1418
    </message>
1419
    <message>
9729 cbradney 1420
        <location filename="../plugins/scriptplugin/cmdmani.h" line="177"/>
4186 mrdocs 1421
        <source>lockObject([&quot;name&quot;]) -&gt; bool
1422
 
1423
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
1424
If &quot;name&quot; is not given the currently selected item is used. Returns true
1425
if locked.
1426
</source>
1427
        <translation type="unfinished">lockObject([&quot;name&quot;]) -&gt; bool
1428
 
1429
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
1430
If &quot;name&quot; is not given the currently selected item is used. Returns true
1431
if locked.
1432
</translation>
1433
    </message>
1434
    <message>
9729 cbradney 1435
        <location filename="../plugins/scriptplugin/cmdmani.h" line="187"/>
4186 mrdocs 1436
        <source>isLocked([&quot;name&quot;]) -&gt; bool
1437
 
1438
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
1439
currently selected item is used.
1440
</source>
1441
        <translation type="unfinished">isLocked([&quot;name&quot;]) -&gt; bool
1442
 
1443
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
1444
currently selected item is used.
1445
</translation>
1446
    </message>
1447
    <message>
9729 cbradney 1448
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="33"/>
4186 mrdocs 1449
        <source>getFontNames() -&gt; list
1450
 
1451
Returns a list with the names of all available fonts.
1452
</source>
1453
        <translation type="unfinished">getFontNames() -&gt; list
1454
 
1455
Returns a list with the names of all available fonts.
1456
</translation>
1457
    </message>
1458
    <message>
9729 cbradney 1459
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="43"/>
4186 mrdocs 1460
        <source>getXFontNames() -&gt; list of tuples
1461
 
1462
Returns a larger font info. It&apos;s a list of the tuples with:
1463
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1464
</source>
1465
        <translation type="unfinished">getXFontNames() -&gt; list of tuples
1466
 
1467
Returns a larger font info. It&apos;s a list of the tuples with:
1468
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1469
</translation>
1470
    </message>
1471
    <message>
9729 cbradney 1472
        <location filename="" line="136953768"/>
4186 mrdocs 1473
        <source>rendeFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size) -&gt; bool
1474
 
1475
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1476
Image is saved into &quot;filename&quot;. Returns true when success.
1477
 
1478
May raise NotFoundError if the specified font can&apos;t be found.
1479
May raise ValueError if an empty sample or filename is passed.
1480
</source>
4310 cbradney 1481
        <translation type="obsolete">rendeFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size) -&gt; bool
4186 mrdocs 1482
 
1483
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1484
Image is saved into &quot;filename&quot;. Returns true when success.
1485
 
1486
May raise NotFoundError if the specified font can&apos;t be found.
1487
May raise ValueError if an empty sample or filename is passed.
1488
</translation>
1489
    </message>
1490
    <message>
9729 cbradney 1491
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="71"/>
4186 mrdocs 1492
        <source>getLayers() -&gt; list
1493
 
1494
Returns a list with the names of all defined layers.
1495
</source>
1496
        <translation type="unfinished">getLayers() -&gt; list
1497
 
1498
Returns a list with the names of all defined layers.
1499
</translation>
1500
    </message>
1501
    <message>
9729 cbradney 1502
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="83"/>
4186 mrdocs 1503
        <source>setActiveLayer(&quot;name&quot;)
1504
 
1505
Sets the active layer to the layer named &quot;name&quot;.
1506
 
1507
May raise NotFoundError if the layer can&apos;t be found.
1508
May raise ValueError if the layer name isn&apos;t acceptable.
1509
</source>
1510
        <translation type="unfinished">setActiveLayer(&quot;name&quot;)
1511
 
1512
Sets the active layer to the layer named &quot;name&quot;.
1513
 
1514
May raise NotFoundError if the layer can&apos;t be found.
1515
May raise ValueError if the layer name isn&apos;t acceptable.
1516
</translation>
1517
    </message>
1518
    <message>
9729 cbradney 1519
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="92"/>
4186 mrdocs 1520
        <source>getActiveLayer() -&gt; string
1521
 
1522
Returns the name of the current active layer.
1523
</source>
1524
        <translation type="unfinished">getActiveLayer() -&gt; string
1525
 
1526
Returns the name of the current active layer.
1527
</translation>
1528
    </message>
1529
    <message>
9729 cbradney 1530
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="105"/>
4186 mrdocs 1531
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
1532
 
1533
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
1534
If &quot;name&quot; is not given the currently selected item is used.
1535
 
1536
May raise NotFoundError if the layer can&apos;t be found.
1537
May raise ValueError if the layer name isn&apos;t acceptable.
1538
</source>
1539
        <translation type="unfinished">sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
1540
 
1541
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
1542
If &quot;name&quot; is not given the currently selected item is used.
1543
 
1544
May raise NotFoundError if the layer can&apos;t be found.
1545
May raise ValueError if the layer name isn&apos;t acceptable.
1546
</translation>
1547
    </message>
1548
    <message>
9729 cbradney 1549
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="118"/>
4186 mrdocs 1550
        <source>setLayerVisible(&quot;layer&quot;, visible)
1551
 
1552
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
1553
the layer is invisible.
1554
 
1555
May raise NotFoundError if the layer can&apos;t be found.
1556
May raise ValueError if the layer name isn&apos;t acceptable.
1557
</source>
1558
        <translation type="unfinished">setLayerVisible(&quot;layer&quot;, visible)
1559
 
1560
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
1561
the layer is invisible.
1562
 
1563
May raise NotFoundError if the layer can&apos;t be found.
1564
May raise ValueError if the layer name isn&apos;t acceptable.
1565
</translation>
1566
    </message>
1567
    <message>
9729 cbradney 1568
        <location filename="" line="136953768"/>
4186 mrdocs 1569
        <source>setLayerPrintable(&quot;layer&quot;, printable)
1570
 
1571
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
1572
false the layer won&apos;t be printed.
1573
 
1574
May raise NotFoundError if the layer can&apos;t be found.
1575
May raise ValueError if the layer name isn&apos;t acceptable.
1576
</source>
6261 cbradney 1577
        <translation type="obsolete">setLayerPrintable(&quot;layer&quot;, printable)
4186 mrdocs 1578
 
1579
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
1580
false the layer won&apos;t be printed.
1581
 
1582
May raise NotFoundError if the layer can&apos;t be found.
1583
May raise ValueError if the layer name isn&apos;t acceptable.
1584
</translation>
1585
    </message>
1586
    <message>
9729 cbradney 1587
        <location filename="" line="136953768"/>
4186 mrdocs 1588
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1589
 
1590
Returns wether the Layer &quot;layer&quot; is visible or not, a value of True means
1591
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1592
&quot;layer&quot; is invisible.
1593
 
1594
May raise NotFoundError if the layer can&apos;t be found.
1595
May raise ValueError if the layer name isn&apos;t acceptable.
1596
</source>
4310 cbradney 1597
        <translation type="obsolete">isLayerPrintable(&quot;layer&quot;) -&gt; bool
4186 mrdocs 1598
 
1599
Returns wether the Layer &quot;layer&quot; is visible or not, a value of True means
1600
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1601
&quot;layer&quot; is invisible.
1602
 
1603
May raise NotFoundError if the layer can&apos;t be found.
1604
May raise ValueError if the layer name isn&apos;t acceptable.
1605
</translation>
1606
    </message>
1607
    <message>
9729 cbradney 1608
        <location filename="" line="136953768"/>
4186 mrdocs 1609
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1610
 
1611
Returns wether the layer &quot;layer&quot; is printable or not, a value of True means
1612
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1613
the layer &quot;layer&quot; is disabled.
1614
 
1615
May raise NotFoundError if the layer can&apos;t be found.
1616
May raise ValueError if the layer name isn&apos;t acceptable.
1617
</source>
4310 cbradney 1618
        <translation type="obsolete">isLayerPrintable(&quot;layer&quot;) -&gt; bool
4186 mrdocs 1619
 
1620
Returns wether the layer &quot;layer&quot; is printable or not, a value of True means
1621
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1622
the layer &quot;layer&quot; is disabled.
1623
 
1624
May raise NotFoundError if the layer can&apos;t be found.
1625
May raise ValueError if the layer name isn&apos;t acceptable.
1626
</translation>
1627
    </message>
1628
    <message>
9729 cbradney 1629
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="300"/>
4186 mrdocs 1630
        <source>deleteLayer(&quot;layer&quot;)
1631
 
1632
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
1633
exists or if it&apos;s the only layer in the document.
1634
 
1635
May raise NotFoundError if the layer can&apos;t be found.
1636
May raise ValueError if the layer name isn&apos;t acceptable.
1637
</source>
1638
        <translation type="unfinished">deleteLayer(&quot;layer&quot;)
1639
 
1640
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
1641
exists or if it&apos;s the only layer in the document.
1642
 
1643
May raise NotFoundError if the layer can&apos;t be found.
1644
May raise ValueError if the layer name isn&apos;t acceptable.
1645
</translation>
1646
    </message>
1647
    <message>
9729 cbradney 1648
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="311"/>
4186 mrdocs 1649
        <source>createLayer(layer)
1650
 
1651
Creates a new layer with the name &quot;name&quot;.
1652
 
1653
May raise ValueError if the layer name isn&apos;t acceptable.
1654
</source>
1655
        <translation type="unfinished">createLayer(layer)
1656
 
1657
Creates a new layer with the name &quot;name&quot;.
1658
 
1659
May raise ValueError if the layer name isn&apos;t acceptable.
1660
</translation>
1661
    </message>
1662
    <message>
9729 cbradney 1663
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="320"/>
4186 mrdocs 1664
        <source>getGuiLanguage() -&gt; string
1665
 
1666
Returns a string with the -lang value.
1667
</source>
1668
        <translation type="unfinished">getGuiLanguage() -&gt; string
1669
 
1670
Returns a string with the -lang value.
1671
</translation>
1672
    </message>
1673
    <message>
9729 cbradney 1674
        <location filename="../plugins/scriptplugin/cmdobj.h" line="43"/>
4186 mrdocs 1675
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
1676
 
1677
Creates a new ellipse on the current page and returns its name.
1678
The coordinates are given in the current measurement units of the document
1679
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
1680
because you need this name for further referencing of that object. If &quot;name&quot;
1681
is not given Scribus will create one for you.
1682
 
1683
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1684
</source>
1685
        <translation type="unfinished">createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
1686
 
1687
Creates a new ellipse on the current page and returns its name.
1688
The coordinates are given in the current measurement units of the document
1689
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
1690
because you need this name for further referencing of that object. If &quot;name&quot;
1691
is not given Scribus will create one for you.
1692
 
1693
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1694
</translation>
1695
    </message>
1696
    <message>
9729 cbradney 1697
        <location filename="../plugins/scriptplugin/cmdobj.h" line="60"/>
4186 mrdocs 1698
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
1699
 
1700
Creates a new picture frame on the current page and returns its name. The
1701
coordinates are given in the current measurement units of the document.
1702
&quot;name&quot; should be a unique identifier for the object because you need this
1703
name for further access to that object. If &quot;name&quot; is not given Scribus will
1704
create one for you.
1705
 
1706
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1707
</source>
1708
        <translation type="unfinished">createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
1709
 
1710
Creates a new picture frame on the current page and returns its name. The
1711
coordinates are given in the current measurement units of the document.
1712
&quot;name&quot; should be a unique identifier for the object because you need this
1713
name for further access to that object. If &quot;name&quot; is not given Scribus will
1714
create one for you.
1715
 
1716
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1717
</translation>
1718
    </message>
1719
    <message>
9729 cbradney 1720
        <location filename="../plugins/scriptplugin/cmdobj.h" line="75"/>
4186 mrdocs 1721
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
1722
 
1723
Creates a new text frame on the actual page and returns its name.
1724
The coordinates are given in the actual measurement unit of the document (see
1725
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1726
you need this name for further referencing of that object. If &quot;name&quot; is not
1727
given Scribus will create one for you.
1728
 
1729
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1730
</source>
1731
        <translation type="unfinished">createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
1732
 
1733
Creates a new text frame on the actual page and returns its name.
1734
The coordinates are given in the actual measurement unit of the document (see
1735
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1736
you need this name for further referencing of that object. If &quot;name&quot; is not
1737
given Scribus will create one for you.
1738
 
1739
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1740
</translation>
1741
    </message>
1742
    <message>
9729 cbradney 1743
        <location filename="../plugins/scriptplugin/cmdobj.h" line="90"/>
4186 mrdocs 1744
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
1745
 
1746
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1747
its name. The coordinates are given in the current measurement unit of the
1748
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
1749
object because you need this name for further access to that object. If
1750
&quot;name&quot; is not given Scribus will create one for you.
1751
 
1752
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1753
</source>
1754
        <translation type="unfinished">createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
1755
 
1756
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1757
its name. The coordinates are given in the current measurement unit of the
1758
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
1759
object because you need this name for further access to that object. If
1760
&quot;name&quot; is not given Scribus will create one for you.
1761
 
1762
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1763
</translation>
1764
    </message>
1765
    <message>
9729 cbradney 1766
        <location filename="../plugins/scriptplugin/cmdobj.h" line="108"/>
4186 mrdocs 1767
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
1768
 
1769
Creates a new polyline and returns its name. The points for the polyline are
1770
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1771
The coordinates are given in the current measurement units of the document (see
1772
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1773
you need this name for further access to that object. If &quot;name&quot; is not given
1774
Scribus will create one for you.
1775
 
1776
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1777
May raise ValueError if an insufficient number of points is passed or if
1778
the number of values passed don&apos;t group into points without leftovers.
1779
</source>
1780
        <translation type="unfinished">createPolyLine(list, [&quot;name&quot;]) -&gt; string
1781
 
1782
Creates a new polyline and returns its name. The points for the polyline are
1783
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1784
The coordinates are given in the current measurement units of the document (see
1785
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1786
you need this name for further access to that object. If &quot;name&quot; is not given
1787
Scribus will create one for you.
1788
 
1789
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1790
May raise ValueError if an insufficient number of points is passed or if
1791
the number of values passed don&apos;t group into points without leftovers.
1792
</translation>
1793
    </message>
1794
    <message>
9729 cbradney 1795
        <location filename="../plugins/scriptplugin/cmdobj.h" line="128"/>
4186 mrdocs 1796
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
1797
 
1798
Creates a new polygon and returns its name. The points for the polygon are
1799
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1800
At least three points are required. There is no need to repeat the first point
1801
to close the polygon. The polygon is automatically closed by connecting the
1802
first and the last point.  The coordinates are given in the current measurement
1803
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
1804
identifier for the object because you need this name for further access to that
1805
object. If &quot;name&quot; is not given Scribus will create one for you.
1806
 
1807
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1808
May raise ValueError if an insufficient number of points is passed or if
1809
the number of values passed don&apos;t group into points without leftovers.
1810
</source>
1811
        <translation type="unfinished">createPolygon(list, [&quot;name&quot;]) -&gt; string
1812
 
1813
Creates a new polygon and returns its name. The points for the polygon are
1814
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1815
At least three points are required. There is no need to repeat the first point
1816
to close the polygon. The polygon is automatically closed by connecting the
1817
first and the last point.  The coordinates are given in the current measurement
1818
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
1819
identifier for the object because you need this name for further access to that
1820
object. If &quot;name&quot; is not given Scribus will create one for you.
1821
 
1822
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1823
May raise ValueError if an insufficient number of points is passed or if
1824
the number of values passed don&apos;t group into points without leftovers.
1825
</translation>
1826
    </message>
1827
    <message>
9729 cbradney 1828
        <location filename="../plugins/scriptplugin/cmdobj.h" line="149"/>
4186 mrdocs 1829
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
1830
 
1831
Creates a new bezier curve and returns its name. The points for the bezier
1832
curve are stored in the list &quot;list&quot; in the following order:
1833
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1834
In the points list, x and y mean the x and y coordinates of the point and kx
1835
and ky meaning the control point for the curve.  The coordinates are given in
1836
the current measurement units of the document (see UNIT constants). &quot;name&quot;
1837
should be a unique identifier for the object because you need this name for
1838
further access to that object. If &quot;name&quot; is not given Scribus will create one
1839
for you.
1840
 
1841
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1842
May raise ValueError if an insufficient number of points is passed or if
1843
the number of values passed don&apos;t group into points without leftovers.
1844
</source>
1845
        <translation type="unfinished">createBezierLine(list, [&quot;name&quot;]) -&gt; string
1846
 
1847
Creates a new bezier curve and returns its name. The points for the bezier
1848
curve are stored in the list &quot;list&quot; in the following order:
1849
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1850
In the points list, x and y mean the x and y coordinates of the point and kx
1851
and ky meaning the control point for the curve.  The coordinates are given in
1852
the current measurement units of the document (see UNIT constants). &quot;name&quot;
1853
should be a unique identifier for the object because you need this name for
1854
further access to that object. If &quot;name&quot; is not given Scribus will create one
1855
for you.
1856
 
1857
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1858
May raise ValueError if an insufficient number of points is passed or if
1859
the number of values passed don&apos;t group into points without leftovers.
1860
</translation>
1861
    </message>
1862
    <message>
9729 cbradney 1863
        <location filename="../plugins/scriptplugin/cmdobj.h" line="165"/>
4186 mrdocs 1864
        <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
1865
 
1866
Creates a new pathText by merging the two objects &quot;textbox&quot; and
1867
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1868
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
1869
unique identifier for the object because you need this name for further access
1870
to that object. If &quot;name&quot; is not given Scribus will create one for you.
1871
 
1872
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1873
May raise NotFoundError if one or both of the named base object don&apos;t exist.
1874
</source>
1875
        <translation type="unfinished">createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
1876
 
1877
Creates a new pathText by merging the two objects &quot;textbox&quot; and
1878
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1879
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
1880
unique identifier for the object because you need this name for further access
1881
to that object. If &quot;name&quot; is not given Scribus will create one for you.
1882
 
1883
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1884
May raise NotFoundError if one or both of the named base object don&apos;t exist.
1885
</translation>
1886
    </message>
1887
    <message>
9729 cbradney 1888
        <location filename="../plugins/scriptplugin/cmdobj.h" line="177"/>
4186 mrdocs 1889
        <source>deleteObject([&quot;name&quot;])
1890
 
1891
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
1892
selected item is deleted.
1893
</source>
1894
        <translation type="unfinished">deleteObject([&quot;name&quot;])
1895
 
1896
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
1897
selected item is deleted.
1898
</translation>
1899
    </message>
1900
    <message>
9729 cbradney 1901
        <location filename="" line="136953768"/>
4186 mrdocs 1902
        <source>textFlowsAroundFrame(&quot;name&quot; [, state])
1903
 
1904
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1905
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1906
is not passed, text flow is toggled.
1907
</source>
6261 cbradney 1908
        <translation type="obsolete">textFlowsAroundFrame(&quot;name&quot; [, state])
4186 mrdocs 1909
 
1910
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1911
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1912
is not passed, text flow is toggled.
1913
</translation>
1914
    </message>
1915
    <message>
9729 cbradney 1916
        <location filename="../plugins/scriptplugin/cmdobj.h" line="211"/>
4186 mrdocs 1917
        <source>objectExists([&quot;name&quot;]) -&gt; bool
1918
 
1919
Test if an object with specified name really exists in the document.
1920
The optional parameter is the object name. When no object name is given,
1921
returns True if there is something selected.
1922
</source>
1923
        <translation type="unfinished">objectExists([&quot;name&quot;]) -&gt; bool
1924
 
1925
Test if an object with specified name really exists in the document.
1926
The optional parameter is the object name. When no object name is given,
1927
returns True if there is something selected.
1928
</translation>
1929
    </message>
1930
    <message>
9729 cbradney 1931
        <location filename="../plugins/scriptplugin/cmdobj.h" line="227"/>
4186 mrdocs 1932
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])
1933
 
1934
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1935
given, it&apos;s applied on the selected object.
1936
</source>
1937
        <translation type="unfinished">setStyle(&quot;style&quot; [, &quot;name&quot;])
1938
 
1939
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1940
given, it&apos;s applied on the selected object.
1941
</translation>
1942
    </message>
1943
    <message>
9729 cbradney 1944
        <location filename="../plugins/scriptplugin/cmdobj.h" line="240"/>
4186 mrdocs 1945
        <source>getAllStyles() -&gt; list
1946
 
1947
Return a list of the names of all paragraph styles in the current document.
1948
</source>
1949
        <translation type="unfinished">getAllStyles() -&gt; list
1950
 
1951
Return a list of the names of all paragraph styles in the current document.
1952
</translation>
1953
    </message>
1954
    <message>
9729 cbradney 1955
        <location filename="../plugins/scriptplugin/cmdpage.h" line="36"/>
4186 mrdocs 1956
        <source>currentPage() -&gt; integer
1957
 
1958
Returns the number of the current working page. Page numbers are counted from 1
1959
upwards, no matter what the displayed first page number of your document is.
1960
</source>
1961
        <translation type="unfinished">currentPage() -&gt; integer
1962
 
1963
Returns the number of the current working page. Page numbers are counted from 1
1964
upwards, no matter what the displayed first page number of your document is.
1965
</translation>
1966
    </message>
1967
    <message>
9729 cbradney 1968
        <location filename="../plugins/scriptplugin/cmdpage.h" line="45"/>
4186 mrdocs 1969
        <source>redrawAll()
1970
 
1971
Redraws all pages.
1972
</source>
1973
        <translation type="unfinished">redrawAll()
1974
 
1975
Redraws all pages.
1976
</translation>
1977
    </message>
1978
    <message>
9729 cbradney 1979
        <location filename="../plugins/scriptplugin/cmdpage.h" line="65"/>
4186 mrdocs 1980
        <source>savePageAsEPS(&quot;name&quot;)
1981
 
1982
Saves the current page as an EPS to the file &quot;name&quot;.
1983
 
1984
May raise ScribusError if the save failed.
1985
</source>
1986
        <translation type="unfinished">savePageAsEPS(&quot;name&quot;)
1987
 
1988
Saves the current page as an EPS to the file &quot;name&quot;.
1989
 
1990
May raise ScribusError if the save failed.
1991
</translation>
1992
    </message>
1993
    <message>
9729 cbradney 1994
        <location filename="../plugins/scriptplugin/cmdpage.h" line="78"/>
4186 mrdocs 1995
        <source>deletePage(nr)
1996
 
1997
Deletes the given page. Does nothing if the document contains only one page.
1998
Page numbers are counted from 1 upwards, no matter what the displayed first
1999
page number is.
2000
 
2001
May raise IndexError if the page number is out of range
2002
</source>
2003
        <translation type="unfinished">deletePage(nr)
2004
 
2005
Deletes the given page. Does nothing if the document contains only one page.
2006
Page numbers are counted from 1 upwards, no matter what the displayed first
2007
page number is.
2008
 
2009
May raise IndexError if the page number is out of range
2010
</translation>
2011
    </message>
2012
    <message>
9729 cbradney 2013
        <location filename="../plugins/scriptplugin/cmdpage.h" line="91"/>
4186 mrdocs 2014
        <source>gotoPage(nr)
2015
 
2016
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
2017
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
2018
just sets the page that script commands will operates on.
2019
 
2020
May raise IndexError if the page number is out of range.
2021
</source>
2022
        <translation type="unfinished">gotoPage(nr)
2023
 
2024
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
2025
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
2026
just sets the page that script commands will operates on.
2027
 
2028
May raise IndexError if the page number is out of range.
2029
</translation>
2030
    </message>
2031
    <message>
9729 cbradney 2032
        <location filename="../plugins/scriptplugin/cmdpage.h" line="100"/>
4186 mrdocs 2033
        <source>pageCount() -&gt; integer
2034
 
2035
Returns the number of pages in the document.
2036
</source>
2037
        <translation type="unfinished">pageCount() -&gt; integer
2038
 
2039
Returns the number of pages in the document.
2040
</translation>
2041
    </message>
2042
    <message>
9729 cbradney 2043
        <location filename="../plugins/scriptplugin/cmdpage.h" line="110"/>
4186 mrdocs 2044
        <source>getHGuides() -&gt; list
2045
 
2046
Returns a list containing positions of the horizontal guides. Values are in the
2047
document&apos;s current units - see UNIT_&lt;type&gt; constants.
2048
</source>
2049
        <translation type="unfinished">getHGuides() -&gt; list
2050
 
2051
Returns a list containing positions of the horizontal guides. Values are in the
2052
document&apos;s current units - see UNIT_&lt;type&gt; constants.
2053
</translation>
2054
    </message>
2055
    <message>
9729 cbradney 2056
        <location filename="../plugins/scriptplugin/cmdpage.h" line="123"/>
4186 mrdocs 2057
        <source>setHGuides(list)
2058
 
2059
Sets horizontal guides. Input parameter must be a list of guide positions
2060
measured in the current document units - see UNIT_&lt;type&gt; constants.
2061
 
2062
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
2063
         setHGuides([90,250]) # replace current guides entirely
2064
</source>
2065
        <translation type="unfinished">setHGuides(list)
2066
 
2067
Sets horizontal guides. Input parameter must be a list of guide positions
2068
measured in the current document units - see UNIT_&lt;type&gt; constants.
2069
 
2070
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
2071
         setHGuides([90,250]) # replace current guides entirely
2072
</translation>
2073
    </message>
2074
    <message>
9729 cbradney 2075
        <location filename="../plugins/scriptplugin/cmdpage.h" line="132"/>
4186 mrdocs 2076
        <source>getVGuides()
2077
 
2078
See getHGuides.
2079
</source>
2080
        <translation type="unfinished">getVGuides()
2081
 
2082
See getHGuides.
2083
</translation>
2084
    </message>
2085
    <message>
9729 cbradney 2086
        <location filename="../plugins/scriptplugin/cmdpage.h" line="141"/>
4186 mrdocs 2087
        <source>setVGuides()
2088
 
2089
See setHGuides.
2090
</source>
2091
        <translation type="unfinished">setVGuides()
2092
 
2093
See setHGuides.
2094
</translation>
2095
    </message>
2096
    <message>
9729 cbradney 2097
        <location filename="../plugins/scriptplugin/cmdpage.h" line="151"/>
4186 mrdocs 2098
        <source>getPageSize() -&gt; tuple
2099
 
2100
Returns a tuple with page dimensions measured in the document&apos;s current units.
2101
See UNIT_&lt;type&gt; constants and getPageMargins()
2102
</source>
2103
        <translation type="unfinished">getPageSize() -&gt; tuple
2104
 
2105
Returns a tuple with page dimensions measured in the document&apos;s current units.
2106
See UNIT_&lt;type&gt; constants and getPageMargins()
2107
</translation>
2108
    </message>
2109
    <message>
9729 cbradney 2110
        <location filename="../plugins/scriptplugin/cmdpage.h" line="167"/>
4186 mrdocs 2111
        <source>getPageItems() -&gt; list
2112
 
2113
Returns a list of tuples with items on the current page. The tuple is:
2114
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
2115
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
2116
the page...
2117
</source>
2118
        <translation type="unfinished">getPageItems() -&gt; list
2119
 
2120
Returns a list of tuples with items on the current page. The tuple is:
2121
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
2122
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
2123
the page...
2124
</translation>
2125
    </message>
2126
    <message>
9729 cbradney 2127
        <location filename="" line="136953768"/>
4186 mrdocs 2128
        <source>getPageMargins()
2129
 
2130
Returns the page margins as a (left, right, top, bottom) tuple in the current
2131
units. See UNIT_&lt;type&gt; constants and getPageSize().
2132
</source>
4310 cbradney 2133
        <translation type="obsolete">getPageMargins()
4186 mrdocs 2134
 
2135
Returns the page margins as a (left, right, top, bottom) tuple in the current
2136
units. See UNIT_&lt;type&gt; constants and getPageSize().
2137
</translation>
2138
    </message>
2139
    <message>
9729 cbradney 2140
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="33"/>
4186 mrdocs 2141
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
2142
 
2143
Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
2144
is the name of one of the defined colors. If &quot;name&quot; is not given the
2145
currently selected item is used.
2146
</source>
2147
        <translation type="unfinished">setFillColor(&quot;colour&quot;, [&quot;name&quot;])
2148
 
2149
Sets the fill colour of the object &quot;name&quot; to the colour &quot;colour&quot;. &quot;colour&quot;
2150
is the name of one of the defined colours. If &quot;name&quot; is not given the
2151
currently selected item is used.
2152
</translation>
2153
    </message>
2154
    <message>
9729 cbradney 2155
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="63"/>
4186 mrdocs 2156
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
2157
 
2158
Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
2159
is not given the currently selected item is used.
2160
</source>
2161
        <translation type="unfinished">setLineColor(&quot;colour&quot;, [&quot;name&quot;])
2162
 
2163
Sets the line colour of the object &quot;name&quot; to the colour &quot;colour&quot;. If &quot;name&quot;
2164
is not given the currently selected item is used.
2165
</translation>
2166
    </message>
2167
    <message>
9729 cbradney 2168
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="96"/>
4186 mrdocs 2169
        <source>setLineWidth(width, [&quot;name&quot;])
2170
 
2171
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
2172
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
2173
given the currently selected item is used.
2174
 
2175
May raise ValueError if the line width is out of bounds.
2176
</source>
2177
        <translation type="unfinished">setLineWidth(width, [&quot;name&quot;])
2178
 
2179
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
2180
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
2181
given the currently selected item is used.
2182
 
2183
May raise ValueError if the line width is out of bounds.
2184
</translation>
2185
    </message>
2186
    <message>
9729 cbradney 2187
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="110"/>
4186 mrdocs 2188
        <source>setLineShade(shade, [&quot;name&quot;])
2189
 
2190
Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
2191
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2192
(full color intensity). If &quot;name&quot; is not given the currently selected item
2193
is used.
2194
 
2195
May raise ValueError if the line shade is out of bounds.
2196
</source>
2197
        <translation type="unfinished">setLineShade(shade, [&quot;name&quot;])
2198
 
2199
Sets the shading of the line colour of the object &quot;name&quot; to &quot;shade&quot;.
2200
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2201
(full colour intensity). If &quot;name&quot; is not given the currently selected item
2202
is used.
2203
 
2204
May raise ValueError if the line shade is out of bounds.
2205
</translation>
2206
    </message>
2207
    <message>
9729 cbradney 2208
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="121"/>
4186 mrdocs 2209
        <source>setLineJoin(join, [&quot;name&quot;])
2210
 
2211
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
2212
If &quot;name&quot; is not given the currently selected item is used. There are
2213
predefined constants for join - JOIN_&lt;type&gt;.
2214
</source>
2215
        <translation type="unfinished">setLineJoin(join, [&quot;name&quot;])
2216
 
2217
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
2218
If &quot;name&quot; is not given the currently selected item is used. There are
2219
predefined constants for join - JOIN_&lt;type&gt;.
2220
</translation>
2221
    </message>
2222
    <message>
9729 cbradney 2223
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="132"/>
4186 mrdocs 2224
        <source>setLineEnd(endtype, [&quot;name&quot;])
2225
 
2226
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
2227
If &quot;name&quot; is not given the currently selected item is used. There are
2228
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
2229
</source>
2230
        <translation type="unfinished">setLineEnd(endtype, [&quot;name&quot;])
2231
 
2232
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
2233
If &quot;name&quot; is not given the currently selected item is used. There are
2234
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
2235
</translation>
2236
    </message>
2237
    <message>
9729 cbradney 2238
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="143"/>
4186 mrdocs 2239
        <source>setLineStyle(style, [&quot;name&quot;])
2240
 
2241
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
2242
is not given the currently selected item is used. There are predefined
2243
constants for &quot;style&quot; - LINE_&lt;style&gt;.
2244
</source>
2245
        <translation type="unfinished">setLineStyle(style, [&quot;name&quot;])
2246
 
2247
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
2248
is not given the currently selected item is used. There are predefined
2249
constants for &quot;style&quot; - LINE_&lt;style&gt;.
2250
</translation>
2251
    </message>
2252
    <message>
9729 cbradney 2253
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="157"/>
4186 mrdocs 2254
        <source>setFillShade(shade, [&quot;name&quot;])
2255
 
2256
Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
2257
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2258
(full Color intensity). If &quot;name&quot; is not given the currently selected
2259
Item is used.
2260
 
2261
May raise ValueError if the fill shade is out of bounds.
2262
</source>
2263
        <translation type="unfinished">setFillShade(shade, [&quot;name&quot;])
2264
 
2265
Sets the shading of the fill colour of the object &quot;name&quot; to &quot;shade&quot;.
2266
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2267
(full Colour intensity). If &quot;name&quot; is not given the currently selected
2268
Item is used.
2269
 
2270
May raise ValueError if the fill shade is out of bounds.
2271
</translation>
2272
    </message>
2273
    <message>
9729 cbradney 2274
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="169"/>
4186 mrdocs 2275
        <source>setCornerRadius(radius, [&quot;name&quot;])
2276
 
2277
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
2278
in points. If &quot;name&quot; is not given the currently selected item is used.
2279
 
2280
May raise ValueError if the corner radius is negative.
2281
</source>
2282
        <translation type="unfinished">setCornerRadius(radius, [&quot;name&quot;])
2283
 
2284
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
2285
in points. If &quot;name&quot; is not given the currently selected item is used.
2286
 
2287
May raise ValueError if the corner radius is negative.
2288
</translation>
2289
    </message>
2290
    <message>
9729 cbradney 2291
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="181"/>
4186 mrdocs 2292
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
2293
 
2294
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
2295
If &quot;name&quot; is not given the currently selected item is used.
2296
 
2297
May raise NotFoundError if the line style doesn&apos;t exist.
2298
</source>
2299
        <translation type="unfinished">setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
2300
 
2301
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
2302
If &quot;name&quot; is not given the currently selected item is used.
2303
 
2304
May raise NotFoundError if the line style doesn&apos;t exist.
2305
</translation>
2306
    </message>
2307
    <message>
9729 cbradney 2308
        <location filename="../plugins/scriptplugin/guiapp.h" line="34"/>
4186 mrdocs 2309
        <source>progressReset()
2310
 
2311
Cleans up the Scribus progress bar previous settings. It is called before the
2312
new progress bar use. See progressSet.
2313
</source>
2314
        <translation type="unfinished">progressReset()
2315
 
2316
Cleans up the Scribus progress bar previous settings. It is called before the
2317
new progress bar use. See progressSet.
2318
</translation>
2319
    </message>
2320
    <message>
9729 cbradney 2321
        <location filename="../plugins/scriptplugin/guiapp.h" line="47"/>
4186 mrdocs 2322
        <source>progressTotal(max)
2323
 
2324
Sets the progress bar&apos;s maximum steps value to the specified number.
2325
See progressSet.
2326
</source>
2327
        <translation type="unfinished">progressTotal(max)
2328
 
2329
Sets the progress bar&apos;s maximum steps value to the specified number.
2330
See progressSet.
2331
</translation>
2332
    </message>
2333
    <message>
9729 cbradney 2334
        <location filename="../plugins/scriptplugin/guiapp.h" line="61"/>
4186 mrdocs 2335
        <source>progressSet(nr)
2336
 
2337
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
2338
progressTotal. The progress bar uses the concept of steps; you give it the
2339
total number of steps and the number of steps completed so far and it will
2340
display the percentage of steps that have been completed. You can specify the
2341
total number of steps with progressTotal(). The current number of steps is set
2342
with progressSet(). The progress bar can be rewound to the beginning with
2343
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
2344
</source>
2345
        <translation type="unfinished">progressSet(nr)
2346
 
2347
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
2348
progressTotal. The progress bar uses the concept of steps; you give it the
2349
total number of steps and the number of steps completed so far and it will
2350
display the percentage of steps that have been completed. You can specify the
2351
total number of steps with progressTotal(). The current number of steps is set
2352
with progressSet(). The progress bar can be rewound to the beginning with
2353
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
2354
</translation>
2355
    </message>
2356
    <message>
9729 cbradney 2357
        <location filename="../plugins/scriptplugin/guiapp.h" line="69"/>
4186 mrdocs 2358
        <source>setCursor()
2359
 
2360
[UNSUPPORTED!] This might break things, so steer clear for now.
2361
</source>
2362
        <translation type="unfinished">setCursor()
2363
 
2364
[UNSUPPORTED!] This might break things, so steer clear for now.
2365
</translation>
2366
    </message>
2367
    <message>
9729 cbradney 2368
        <location filename="../plugins/scriptplugin/guiapp.h" line="83"/>
4186 mrdocs 2369
        <source>docChanged(bool)
2370
 
2371
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
2372
useful to call this procedure when you&apos;re changing the document, because Scribus
2373
won&apos;t automatically notice when you change the document using a script.
2374
</source>
2375
        <translation type="unfinished">docChanged(bool)
2376
 
2377
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
2378
useful to call this procedure when you&apos;re changing the document, because Scribus
2379
won&apos;t automatically notice when you change the document using a script.
2380
</translation>
2381
    </message>
2382
    <message>
9729 cbradney 2383
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="77"/>
4186 mrdocs 2384
        <source>defineColor(&quot;name&quot;, c, m, y, k)
2385
 
2386
Defines a new color &quot;name&quot;. The color Value is defined via four components:
2387
c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in
2388
the range from 0 to 255.
2389
 
2390
May raise ValueError if an invalid color name is specified.
2391
</source>
7508 cbradney 2392
        <translation type="unfinished">defineColor(&quot;name&quot;, c, m, y, k)
4186 mrdocs 2393
 
2394
Defines a new colour &quot;name&quot;. The colour Value is defined via four components:
2395
c = Cyan, m = Magenta, y = Yellow and k = Black. Colour components should be in
2396
the range from 0 to 255.
2397
 
2398
May raise ValueError if an invalid colour name is specified.
2399
</translation>
2400
    </message>
2401
    <message>
9729 cbradney 2402
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="145"/>
4186 mrdocs 2403
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer
2404
 
2405
Returns the corner radius of the object &quot;name&quot;. The radius is
2406
expressed in points. If &quot;name&quot; is not given the currently
2407
selected item is used.
2408
</source>
7508 cbradney 2409
        <translation type="unfinished">getCornerRadius([&quot;name&quot;]) -&gt; integer
4186 mrdocs 2410
 
2411
Returns the corner radius of the object &quot;name&quot;. The radius is
2412
expressed in points. If &quot;name&quot; is not given the currently
2413
selected item is used.
2414
</translation>
2415
    </message>
2416
    <message>
9729 cbradney 2417
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="177"/>
4186 mrdocs 2418
        <source>getPosition([&quot;name&quot;]) -&gt; (x,y)
2419
 
2420
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
2421
If &quot;name&quot; is not given the currently selected item is used.
2422
The position is expressed in the actual measurement unit of the document
2423
- see UNIT_&lt;type&gt; for reference.
2424
</source>
7508 cbradney 2425
        <translation type="unfinished">getPosition([&quot;name&quot;]) -&gt; (x,y)
4186 mrdocs 2426
 
2427
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
2428
If &quot;name&quot; is not given the currently selected item is used.
2429
The position is expressed in the actual measurement unit of the document
2430
- see UNIT_&lt;type&gt; for reference.
2431
</translation>
2432
    </message>
2433
    <message>
9729 cbradney 2434
        <location filename="../plugins/scriptplugin/cmdmani.h" line="59"/>
4186 mrdocs 2435
        <source>rotateObjectAbs(rot [, &quot;name&quot;])
2436
 
2437
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive values
2438
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
2439
selected item is used.
2440
</source>
7508 cbradney 2441
        <translation type="unfinished">rotateObjectAbs(rot [, &quot;name&quot;])
4186 mrdocs 2442
 
2443
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive values
2444
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
2445
selected item is used.
2446
</translation>
2447
    </message>
4310 cbradney 2448
    <message>
9729 cbradney 2449
        <location filename="../plugins/scriptplugin/cmdcolor.h" line="50"/>
4310 cbradney 2450
        <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple
2451
 
2452
Returns a tuple (R,G,B) containing the three color components of the
2453
color &quot;name&quot; from the current document, converted to the RGB color
2454
space. If no document is open, returns the value of the named color
2455
from the default document colors.
2456
 
2457
May raise NotFoundError if the named color wasn&apos;t found.
2458
May raise ValueError if an invalid color name is specified.
2459
</source>
2460
        <translation type="unfinished"></translation>
2461
    </message>
2462
    <message>
9729 cbradney 2463
        <location filename="../plugins/scriptplugin/cmddialog.h" line="111"/>
4310 cbradney 2464
        <source>newStyleDialog() -&gt; string
2465
 
2466
Shows &apos;Create new paragraph style&apos; dialog. Function returns real
2467
style name or None when user cancels the dialog.
2468
</source>
2469
        <translation type="unfinished"></translation>
2470
    </message>
2471
    <message>
9729 cbradney 2472
        <location filename="../plugins/scriptplugin/cmddoc.h" line="96"/>
4310 cbradney 2473
        <source>newDoc(size, margins, orientation, firstPageNumber,
2474
                   unit, facingPages, firstSideLeft) -&gt; bool
2475
 
2476
WARNING: Obsolete procedure! Use newDocument instead.
2477
 
2478
Creates a new document and returns true if successful. The parameters have the
2479
following meaning:
2480
 
2481
    size = A tuple (width, height) describing the size of the document. You can
2482
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
2483
 
2484
    margins = A tuple (left, right, top, bottom) describing the document
2485
    margins
2486
 
2487
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
2488
 
2489
    firstPageNumer = is the number of the first page in the document used for
2490
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
2491
    numbers if you&apos;re creating a document in several parts.
2492
 
2493
    unit: this value sets the measurement units used by the document. Use a
2494
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
2495
    UNIT_PICAS, UNIT_POINTS.
2496
 
2497
    facingPages = FACINGPAGES, NOFACINGPAGES
2498
 
2499
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
2500
 
2501
The values for width, height and the margins are expressed in the given unit
2502
for the document. PAPER_* constants are expressed in points. If your document
2503
is not in points, make sure to account for this.
2504
 
2505
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
2506
                FACINGPAGES, FIRSTPAGERIGHT)
2507
</source>
2508
        <translation type="unfinished"></translation>
2509
    </message>
2510
    <message>
9729 cbradney 2511
        <location filename="../plugins/scriptplugin/cmddoc.h" line="226"/>
4310 cbradney 2512
        <source>closeMasterPage()
2513
 
2514
Closes the currently active master page, if any, and returns editing
2515
to normal. Begin editing with editMasterPage().
2516
</source>
2517
        <translation type="unfinished"></translation>
2518
    </message>
2519
    <message>
9729 cbradney 2520
        <location filename="../plugins/scriptplugin/cmddoc.h" line="233"/>
4310 cbradney 2521
        <source>masterPageNames()
2522
 
2523
Returns a list of the names of all master pages in the document.
2524
</source>
2525
        <translation type="unfinished"></translation>
2526
    </message>
2527
    <message>
9729 cbradney 2528
        <location filename="../plugins/scriptplugin/cmddoc.h" line="241"/>
4310 cbradney 2529
        <source>editMasterPage(pageName)
2530
 
2531
Enables master page editing and opens the named master page
2532
for editing. Finish editing with closeMasterPage().
2533
</source>
2534
        <translation type="unfinished"></translation>
2535
    </message>
2536
    <message>
9729 cbradney 2537
        <location filename="../plugins/scriptplugin/cmddoc.h" line="249"/>
4310 cbradney 2538
        <source>createMasterPage(pageName)
2539
 
2540
Creates a new master page named pageName and opens it for
2541
editing.
2542
</source>
2543
        <translation type="unfinished"></translation>
2544
    </message>
2545
    <message>
9729 cbradney 2546
        <location filename="../plugins/scriptplugin/cmddoc.h" line="256"/>
4310 cbradney 2547
        <source>deleteMasterPage(pageName)
2548
 
2549
Delete the named master page.
2550
</source>
2551
        <translation type="unfinished"></translation>
2552
    </message>
2553
    <message>
9729 cbradney 2554
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="84"/>
4310 cbradney 2555
        <source>getPropertyCType(object, property, includesuper=True)
2556
 
2557
Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
2558
for details of arguments.
2559
 
2560
If `includesuper&apos; is true, search inherited properties too.
2561
</source>
2562
        <translation type="unfinished"></translation>
2563
    </message>
2564
    <message>
9729 cbradney 2565
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="102"/>
4310 cbradney 2566
        <source>getPropertyNames(object, includesuper=True)
2567
 
2568
Return a list of property names supported by `object&apos;.
2569
If `includesuper&apos; is true, return properties supported
2570
by parent classes as well.
2571
</source>
2572
        <translation type="unfinished"></translation>
2573
    </message>
2574
    <message>
9729 cbradney 2575
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="136"/>
4310 cbradney 2576
        <source>getProperty(object, property)
2577
 
2578
Return the value of the property `property&apos; of the passed `object&apos;.
2579
 
2580
The `object&apos; argument may be a string, in which case the named PageItem
2581
is searched for. It may also be a PyCObject, which may point to any
2582
C++ QObject instance.
2583
 
2584
The `property&apos; argument must be a string, and is the name of the property
2585
to look up on `object&apos;.
2586
 
2587
The return value varies depending on the type of the property.
2588
</source>
2589
        <translation type="unfinished"></translation>
2590
    </message>
2591
    <message>
9729 cbradney 2592
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="166"/>
4310 cbradney 2593
        <source>setProperty(object, property, value)
2594
 
2595
Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
2596
compatible with the type of `property&apos;, an exception is raised. An exception may
2597
also be raised if the underlying setter fails.
2598
 
2599
See getProperty() for more information.
2600
</source>
2601
        <translation type="unfinished"></translation>
2602
    </message>
2603
    <message>
9729 cbradney 2604
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="185"/>
4310 cbradney 2605
        <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
2606
 
2607
Return a list of children of `object&apos;, possibly restricted to children
2608
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
2609
search recursively through children, grandchildren, etc.
2610
 
2611
See QObject::children() in the Qt docs for more information.
2612
</source>
2613
        <translation type="unfinished"></translation>
2614
    </message>
2615
    <message>
9729 cbradney 2616
        <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="202"/>
4310 cbradney 2617
        <source>getChild(object, childname, ofclass=None, recursive=True)
2618
 
2619
Return the first child of `object&apos; named `childname&apos;, possibly restricting
2620
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
2621
search recursively through children, grandchildren, etc.
2622
</source>
2623
        <translation type="unfinished"></translation>
2624
    </message>
2625
    <message>
9729 cbradney 2626
        <location filename="../plugins/scriptplugin/cmdmani.h" line="199"/>
4310 cbradney 2627
        <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
2628
 
2629
Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
2630
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
2631
Both `scaletoframe&apos; and `proportional&apos; are boolean.
2632
 
2633
May raise WrongFrameTypeError.
2634
</source>
2635
        <translation type="unfinished"></translation>
2636
    </message>
2637
    <message>
9729 cbradney 2638
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="62"/>
4310 cbradney 2639
        <source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
2640
 
2641
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
2642
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
2643
image data is returned as a string. The optional &quot;format&quot; argument
2644
specifies the image format to generate, and supports any format allowed
2645
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
2646
 
2647
May raise NotFoundError if the specified font can&apos;t be found.
2648
May raise ValueError if an empty sample or filename is passed.
2649
</source>
2650
        <translation type="unfinished"></translation>
2651
    </message>
2652
    <message>
9729 cbradney 2653
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="222"/>
4310 cbradney 2654
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
2655
 
2656
Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
2657
that the layer &quot;layer&quot; can be printed, a value of False means that printing
2658
the layer &quot;layer&quot; is disabled.
2659
 
2660
May raise NotFoundError if the layer can&apos;t be found.
2661
May raise ValueError if the layer name isn&apos;t acceptable.
2662
</source>
2663
        <translation type="unfinished"></translation>
2664
    </message>
2665
    <message>
9729 cbradney 2666
        <location filename="../plugins/scriptplugin/cmdpage.h" line="181"/>
4310 cbradney 2667
        <source>getPageMargins()
2668
 
2669
Returns the page margins as a (top, left, right, bottom) tuple in the current
2670
units. See UNIT_&lt;type&gt; constants and getPageSize().
2671
</source>
2672
        <translation type="unfinished"></translation>
2673
    </message>
2674
    <message>
9729 cbradney 2675
        <location filename="../plugins/scriptplugin/cmdtext.h" line="328"/>
4310 cbradney 2676
        <source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer
2677
 
2678
Returns the actual number of overflowing characters in text frame &quot;name&quot;.
2679
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
2680
use text frame linking. Without this parameter it search all linking chain.
2681
 
2682
May raise WrongFrameTypeError if the target frame is not an text frame
2683
</source>
2684
        <translation type="unfinished"></translation>
2685
    </message>
2686
    <message>
9729 cbradney 2687
        <location filename="../plugins/scriptplugin/cmdtext.h" line="342"/>
4310 cbradney 2688
        <source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
2689
 
2690
Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
2691
If &quot;name&quot; is not given the currently selected item is used.
2692
 
2693
May raise WrongFrameTypeError if the target frame is not a text frame
2694
</source>
2695
        <translation type="unfinished"></translation>
2696
    </message>
2697
    <message>
9729 cbradney 2698
        <location filename="../plugins/scriptplugin/cmdtext.h" line="354"/>
4310 cbradney 2699
        <source>isPDFBookmark([&quot;name&quot;]) -&gt; bool
2700
 
2701
Returns true if the text frame &quot;name&quot; is a PDF bookmark.
2702
If &quot;name&quot; is not given the currently selected item is used.
2703
 
2704
May raise WrongFrameTypeError if the target frame is not a text frame
2705
</source>
2706
        <translation type="unfinished"></translation>
2707
    </message>
2708
    <message>
9729 cbradney 2709
        <location filename="../plugins/scriptplugin/guiapp.h" line="95"/>
4310 cbradney 2710
        <source>zoomDocument(double)
2711
 
2712
Zoom the document in main GUI window. Actions have whole number
2713
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
2714
</source>
2715
        <translation type="unfinished"></translation>
2716
    </message>
6261 cbradney 2717
    <message>
9729 cbradney 2718
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="31"/>
6261 cbradney 2719
        <source>getFillTransparency([&quot;name&quot;]) -&gt; float
2720
 
2721
Returns the fill transparency of the object &quot;name&quot;. If &quot;name&quot;
2722
is not given the currently selected Item is used.
2723
</source>
2724
        <translation type="unfinished"></translation>
2725
    </message>
2726
    <message>
9729 cbradney 2727
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="41"/>
6261 cbradney 2728
        <source>getFillBlendmode([&quot;name&quot;]) -&gt; integer
2729
 
2730
Returns the fill blendmode of the object &quot;name&quot;. If &quot;name&quot;
2731
is not given the currently selected Item is used.
2732
</source>
2733
        <translation type="unfinished"></translation>
2734
    </message>
2735
    <message>
9729 cbradney 2736
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="61"/>
6261 cbradney 2737
        <source>getLineTransparency([&quot;name&quot;]) -&gt; float
2738
 
2739
Returns the line transparency of the object &quot;name&quot;. If &quot;name&quot;
2740
is not given the currently selected Item is used.
2741
</source>
2742
        <translation type="unfinished"></translation>
2743
    </message>
2744
    <message>
9729 cbradney 2745
        <location filename="../plugins/scriptplugin/cmdgetprop.h" line="71"/>
6261 cbradney 2746
        <source>getLineBlendmode([&quot;name&quot;]) -&gt; integer
2747
 
2748
Returns the line blendmode of the object &quot;name&quot;. If &quot;name&quot;
2749
is not given the currently selected Item is used.
2750
</source>
2751
        <translation type="unfinished"></translation>
2752
    </message>
2753
    <message>
9729 cbradney 2754
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="144"/>
6261 cbradney 2755
        <source>setLayerLocked(&quot;layer&quot;, locked)
2756
 
2757
Sets the layer &quot;layer&quot; to be locked or not. If locked is set to
2758
true the layer will be locked.
2759
 
2760
May raise NotFoundError if the layer can&apos;t be found.
2761
May raise ValueError if the layer name isn&apos;t acceptable.
2762
</source>
2763
        <translation type="unfinished"></translation>
2764
    </message>
2765
    <message>
9729 cbradney 2766
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="236"/>
6261 cbradney 2767
        <source>isLayerLocked(&quot;layer&quot;) -&gt; bool
2768
 
2769
Returns whether the layer &quot;layer&quot; is locked or not, a value of True means
2770
that the layer &quot;layer&quot; is editable, a value of False means that the layer
2771
&quot;layer&quot; is locked.
2772
 
2773
May raise NotFoundError if the layer can&apos;t be found.
2774
May raise ValueError if the layer name isn&apos;t acceptable.
2775
</source>
2776
        <translation type="unfinished"></translation>
2777
    </message>
2778
    <message>
9729 cbradney 2779
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="250"/>
6261 cbradney 2780
        <source>isLayerOutlined(&quot;layer&quot;) -&gt; bool
2781
 
2782
Returns whether the layer &quot;layer&quot; is outlined or not, a value of True means
2783
that the layer &quot;layer&quot; is outlined, a value of False means that the layer
2784
&quot;layer&quot; is normal.
2785
 
2786
May raise NotFoundError if the layer can&apos;t be found.
2787
May raise ValueError if the layer name isn&apos;t acceptable.
2788
</source>
2789
        <translation type="unfinished"></translation>
2790
    </message>
2791
    <message>
9729 cbradney 2792
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="263"/>
6261 cbradney 2793
        <source>isLayerFlow(&quot;layer&quot;) -&gt; bool
2794
 
2795
Returns whether text flows around objects on layer &quot;layer&quot;, a value of True means
2796
that text flows around, a value of False means that the text does not flow around.
2797
 
2798
May raise NotFoundError if the layer can&apos;t be found.
2799
May raise ValueError if the layer name isn&apos;t acceptable.
2800
</source>
2801
        <translation type="unfinished"></translation>
2802
    </message>
2803
    <message>
9729 cbradney 2804
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="275"/>
6261 cbradney 2805
        <source>getLayerBlendmode(&quot;layer&quot;) -&gt; int
2806
 
2807
Returns the &quot;layer&quot; layer blendmode,
2808
 
2809
May raise NotFoundError if the layer can&apos;t be found.
2810
May raise ValueError if the layer name isn&apos;t acceptable.
2811
</source>
2812
        <translation type="unfinished"></translation>
2813
    </message>
2814
    <message>
9729 cbradney 2815
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="287"/>
6261 cbradney 2816
        <source>getLayerTransparency(&quot;layer&quot;) -&gt; float
2817
 
2818
Returns the &quot;layer&quot; layer transparency,
2819
 
2820
May raise NotFoundError if the layer can&apos;t be found.
2821
May raise ValueError if the layer name isn&apos;t acceptable.
2822
</source>
2823
        <translation type="unfinished"></translation>
2824
    </message>
2825
    <message>
9729 cbradney 2826
        <location filename="../plugins/scriptplugin/cmdobj.h" line="193"/>
6261 cbradney 2827
        <source>textFlowMode(&quot;name&quot; [, state])
2828
 
2829
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
2830
Called with parameters string name and optional int &quot;state&quot; (0 &lt;= state &lt;= 3).
2831
Setting &quot;state&quot; to 0 will disable text flow.
2832
Setting &quot;state&quot; to 1 will make text flow around object frame.
2833
Setting &quot;state&quot; to 2 will make text flow around bounding box.
2834
Setting &quot;state&quot; to 3 will make text flow around contour line.
2835
If &quot;state&quot; is not passed, text flow is toggled.
2836
</source>
2837
        <translation type="unfinished"></translation>
2838
    </message>
2839
    <message>
9729 cbradney 2840
        <location filename="../plugins/scriptplugin/cmdobj.h" line="252"/>
6261 cbradney 2841
        <source>duplicateObject([&quot;name&quot;]) -&gt; string
2842
 
2843
creates a Duplicate of the selected Object (or Selection Group).
2844
</source>
2845
        <translation type="unfinished"></translation>
2846
    </message>
2847
    <message>
9729 cbradney 2848
        <location filename="../plugins/scriptplugin/cmddoc.h" line="162"/>
6434 cbradney 2849
        <source>setInfo(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
2850
 
2851
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
2852
strings.
2853
</source>
2854
        <translation type="unfinished"></translation>
2855
    </message>
2856
    <message>
9729 cbradney 2857
        <location filename="../plugins/scriptplugin/cmdpage.h" line="54"/>
6434 cbradney 2858
        <source>getPageType() -&gt; integer
2859
 
2860
Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page
2861
</source>
2862
        <translation type="unfinished"></translation>
2863
    </message>
2864
    <message>
9729 cbradney 2865
        <location filename="../plugins/scriptplugin/cmdtext.h" line="55"/>
6434 cbradney 2866
        <source>getTextLines([&quot;name&quot;]) -&gt; integer
2867
 
2868
Returns the number of lines of the text in the text frame &quot;name&quot;.
2869
If &quot;name&quot; is not given the currently selected item is used.
2870
</source>
2871
        <translation type="unfinished"></translation>
2872
    </message>
7508 cbradney 2873
    <message>
9729 cbradney 2874
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="131"/>
7508 cbradney 2875
        <source>setLayerPrintable(&quot;layer&quot;, printable)
2876
 
2877
Sets the layer &quot;layer&quot; to be printable or not. If is the
2878
printable set to false the layer won&apos;t be printed.
2879
 
2880
May raise NotFoundError if the layer can&apos;t be found.
2881
May raise ValueError if the layer name isn&apos;t acceptable.
2882
</source>
2883
        <translation type="unfinished"></translation>
2884
    </message>
2885
    <message>
9729 cbradney 2886
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="208"/>
7508 cbradney 2887
        <source>isLayerVisible(&quot;layer&quot;) -&gt; bool
2888
 
2889
Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
2890
that the layer &quot;layer&quot; is visible, a value of False means that the layer
2891
&quot;layer&quot; is invisible.
2892
 
2893
May raise NotFoundError if the layer can&apos;t be found.
2894
May raise ValueError if the layer name isn&apos;t acceptable.
2895
</source>
2896
        <translation type="unfinished"></translation>
2897
    </message>
2898
    <message>
9729 cbradney 2899
        <location filename="../plugins/scriptplugin/cmdtext.h" line="135"/>
7508 cbradney 2900
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
2901
 
2902
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
2903
Text must be UTF encoded (see setText() as reference) The first character has an
2904
index of 0. Inserting text at position -1 appends it to the frame. If &quot;name&quot; is
2905
not given the currently selected Item is used.
2906
 
2907
May throw IndexError for an insertion out of bounds.
2908
</source>
2909
        <translation type="unfinished"></translation>
2910
    </message>
9729 cbradney 2911
    <message>
2912
        <location filename="../plugins/fileloader/scribus12format/scribus12format.cpp" line="1593"/>
2913
        <source>Copy #%1 of </source>
2914
        <translation type="unfinished">Copy #%1 of </translation>
2915
    </message>
2916
    <message>
2917
        <location filename="../plugins/scriptplugin/cmddialog.h" line="46"/>
2918
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
2919
 
2920
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
2921
with the filter string &quot;filter&quot;. A default filename or file path can also
2922
supplied, leave this string empty when you don&apos;t want to use it.  A value of
2923
True for haspreview enables a small preview widget in the FileSelect box.  When
2924
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
2925
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
2926
the dialog shows and returns only directories. The default for all of the
2927
opional parameters is False.
2928
 
2929
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
2930
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
2931
 
2932
Refer to the Qt-Documentation for Q3FileDialog for details on filters.
2933
 
2934
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
2935
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
2936
</source>
2937
        <translation type="unfinished"></translation>
2938
    </message>
2939
    <message>
2940
        <location filename="../plugins/scriptplugin/cmddoc.h" line="173"/>
2941
        <source>setMargins(lr, rr, tr, br)
2942
 
2943
Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br)
2944
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
2945
constants.
2946
</source>
2947
        <translation type="unfinished"></translation>
2948
    </message>
2949
    <message>
2950
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="157"/>
2951
        <source>setLayerOutlined(&quot;layer&quot;, outline)
2952
 
2953
Sets the layer &quot;layer&quot; to be locked or not. If outline is set to
2954
true the layer will be displayed outlined.
2955
 
2956
May raise NotFoundError if the layer can&apos;t be found.
2957
May raise ValueError if the layer name isn&apos;t acceptable.
2958
</source>
2959
        <translation type="unfinished"></translation>
2960
    </message>
2961
    <message>
2962
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="170"/>
2963
        <source>setLayerFlow(&quot;layer&quot;, flow)
2964
 
2965
Sets the layers &quot;layer&quot;  flowcontrol to flow. If flow is set to
2966
true text in layers above this one will flow around objects on this layer.
2967
 
2968
May raise NotFoundError if the layer can&apos;t be found.
2969
May raise ValueError if the layer name isn&apos;t acceptable.
2970
</source>
2971
        <translation type="unfinished"></translation>
2972
    </message>
2973
    <message>
2974
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="182"/>
2975
        <source>setLayerBlendmode(&quot;layer&quot;, blend)
2976
 
2977
Sets the layers &quot;layer&quot;  blendmode to blend.
2978
 
2979
May raise NotFoundError if the layer can&apos;t be found.
2980
May raise ValueError if the layer name isn&apos;t acceptable.
2981
</source>
2982
        <translation type="unfinished"></translation>
2983
    </message>
2984
    <message>
2985
        <location filename="../plugins/scriptplugin/cmdmisc.h" line="194"/>
2986
        <source>setLayerTransparency(&quot;layer&quot;, trans)
2987
 
2988
Sets the layers &quot;layer&quot;  transparency to trans.
2989
 
2990
May raise NotFoundError if the layer can&apos;t be found.
2991
May raise ValueError if the layer name isn&apos;t acceptable.
2992
</source>
2993
        <translation type="unfinished"></translation>
2994
    </message>
2995
    <message>
2996
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="43"/>
2997
        <source>setFillTransparency(transparency, [&quot;name&quot;])
2998
 
2999
Sets the fill transparency of the object &quot;name&quot; to transparency
3000
If &quot;name&quot; is not given the currently selected item is used.
3001
</source>
3002
        <translation type="unfinished"></translation>
3003
    </message>
3004
    <message>
3005
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="53"/>
3006
        <source>setFillBlendmode(blendmode, [&quot;name&quot;])
3007
 
3008
Sets the fill blendmode of the object &quot;name&quot; to blendmode
3009
If &quot;name&quot; is not given the currently selected item is used.
3010
</source>
3011
        <translation type="unfinished"></translation>
3012
    </message>
3013
    <message>
3014
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="73"/>
3015
        <source>setLineTransparency(transparency, [&quot;name&quot;])
3016
 
3017
Sets the line transparency of the object &quot;name&quot; to transparency
3018
If &quot;name&quot; is not given the currently selected item is used.
3019
</source>
3020
        <translation type="unfinished"></translation>
3021
    </message>
3022
    <message>
3023
        <location filename="../plugins/scriptplugin/cmdsetprop.h" line="83"/>
3024
        <source>setLineBlendmode(blendmode, [&quot;name&quot;])
3025
 
3026
Sets the line blendmode of the object &quot;name&quot; to blendmode
3027
If &quot;name&quot; is not given the currently selected item is used.
3028
</source>
3029
        <translation type="unfinished"></translation>
3030
    </message>
3031
    <message>
3032
        <location filename="../plugins/scriptplugin/svgimport.h" line="33"/>
3033
        <source>placeEPS(&quot;filename&quot;, x, y)
3034
 
3035
Places the EPS &quot;filename&quot; onto the current page,
3036
x and y specify the coordinate of the topleft corner of the EPS placed on the page
3037
 
3038
If loading was successful, the selection contains the imported EPS
3039
</source>
3040
        <translation type="unfinished"></translation>
3041
    </message>
3042
    <message>
3043
        <location filename="../plugins/scriptplugin/svgimport.h" line="45"/>
3044
        <source>placeSXD(&quot;filename&quot;, x, y)
3045
 
3046
Places the SXD &quot;filename&quot; onto the current page,
3047
x and y specify the coordinate of the topleft corner of the SXD placed on the page
3048
 
3049
If loading was successful, the selection contains the imported SXD
3050
</source>
3051
        <translation type="unfinished"></translation>
3052
    </message>
3053
    <message>
3054
        <location filename="../plugins/scriptplugin/svgimport.h" line="57"/>
3055
        <source>placeODG(&quot;filename&quot;, x, y)
3056
 
3057
Places the ODG &quot;filename&quot; onto the current page,
3058
x and y specify the coordinate of the topleft corner of the ODG placed on the page
3059
 
3060
If loading was successful, the selection contains the imported ODG
3061
</source>
3062
        <translation type="unfinished"></translation>
3063
    </message>
4186 mrdocs 3064
</context>
3065
<context>
3066
    <name>About</name>
3067
    <message>
9729 cbradney 3068
        <location filename="" line="136953768"/>
4186 mrdocs 3069
        <source>%1. %2 %3 </source>
4310 cbradney 3070
        <translation type="obsolete">%1. %2 %3 </translation>
4186 mrdocs 3071
    </message>
3072
    <message>
9729 cbradney 3073
        <location filename="" line="136953768"/>
4186 mrdocs 3074
        <source>Scribus Version %1
3075
%2 %3</source>
4310 cbradney 3076
        <translation type="obsolete">Scribus Version %1
4186 mrdocs 3077
%2 %3</translation>
3078
    </message>
3079
    <message>
9729 cbradney 3080
        <location filename="" line="136953768"/>
4186 mrdocs 3081
        <source>Build-ID:</source>
4310 cbradney 3082
        <translation type="obsolete">Build-ID:</translation>
4186 mrdocs 3083
    </message>
3084
    <message>
9729 cbradney 3085
        <location filename="../about.cpp" line="152"/>
4186 mrdocs 3086
        <source>Contributions from:</source>
3087
        <translation type="unfinished">Contributions from:</translation>
3088
    </message>
3089
    <message>
9729 cbradney 3090
        <location filename="" line="136953768"/>
4186 mrdocs 3091
        <source>Windows port:</source>
4310 cbradney 3092
        <translation type="obsolete">Windows port:</translation>
4186 mrdocs 3093
    </message>
3094
    <message>
9729 cbradney 3095
        <location filename="" line="136953768"/>
4186 mrdocs 3096
        <source>German:</source>
4310 cbradney 3097
        <translation type="obsolete">German:</translation>
4186 mrdocs 3098
    </message>
3099
    <message>
9729 cbradney 3100
        <location filename="" line="136953768"/>
4186 mrdocs 3101
        <source>French:</source>
4310 cbradney 3102
        <translation type="obsolete">French:</translation>
4186 mrdocs 3103
    </message>
3104
    <message>
9729 cbradney 3105
        <location filename="" line="136953768"/>
4186 mrdocs 3106
        <source>Italian:</source>
4310 cbradney 3107
        <translation type="obsolete">Italian:</translation>
4186 mrdocs 3108
    </message>
3109
    <message>
9729 cbradney 3110
        <location filename="" line="136953768"/>
4186 mrdocs 3111
        <source>Hungarian:</source>
4310 cbradney 3112
        <translation type="obsolete">Hungarian:</translation>
4186 mrdocs 3113
    </message>
3114
    <message>
9729 cbradney 3115
        <location filename="" line="136953768"/>
4186 mrdocs 3116
        <source>Ukrainian:</source>
4310 cbradney 3117
        <translation type="obsolete">Ukrainian:</translation>
4186 mrdocs 3118
    </message>
3119
    <message>
9729 cbradney 3120
        <location filename="" line="136953768"/>
4186 mrdocs 3121
        <source>Bulgarian:</source>
4310 cbradney 3122
        <translation type="obsolete">Bulgarian:</translation>
4186 mrdocs 3123
    </message>
3124
    <message>
9729 cbradney 3125
        <location filename="" line="136953768"/>
4186 mrdocs 3126
        <source>Galician:</source>
4310 cbradney 3127
        <translation type="obsolete">Galician:</translation>
4186 mrdocs 3128
    </message>
3129
    <message>
9729 cbradney 3130
        <location filename="" line="136953768"/>
4186 mrdocs 3131
        <source>Turkish:</source>
4310 cbradney 3132
        <translation type="obsolete">Turkish:</translation>
4186 mrdocs 3133
    </message>
3134
    <message>
9729 cbradney 3135
        <location filename="" line="136953768"/>
4186 mrdocs 3136
        <source>Lithuanian:</source>
4310 cbradney 3137
        <translation type="obsolete">Lithuanian:</translation>
4186 mrdocs 3138
    </message>
3139
    <message>
9729 cbradney 3140
        <location filename="" line="136953768"/>
4186 mrdocs 3141
        <source>Polish:</source>
4310 cbradney 3142
        <translation type="obsolete">Polish:</translation>
4186 mrdocs 3143
    </message>
3144
    <message>
9729 cbradney 3145
        <location filename="" line="136953768"/>
4186 mrdocs 3146
        <source>Czech:</source>
4310 cbradney 3147
        <translation type="obsolete">Czech:</translation>
4186 mrdocs 3148
    </message>
3149
    <message>
9729 cbradney 3150
        <location filename="" line="136953768"/>
4186 mrdocs 3151
        <source>Slovak:</source>
4310 cbradney 3152
        <translation type="obsolete">Slovak:</translation>
4186 mrdocs 3153
    </message>
3154
    <message>
9729 cbradney 3155
        <location filename="" line="136953768"/>
4186 mrdocs 3156
        <source>Danish:</source>
4310 cbradney 3157
        <translation type="obsolete">Danish:</translation>
4186 mrdocs 3158
    </message>
3159
    <message>
9729 cbradney 3160
        <location filename="" line="136953768"/>
4186 mrdocs 3161
        <source>Norwegian:</source>
4310 cbradney 3162
        <translation type="obsolete">Norwegian:</translation>
4186 mrdocs 3163
    </message>
3164
    <message>
9729 cbradney 3165
        <location filename="" line="136953768"/>
4186 mrdocs 3166
        <source>Welsh:</source>
4310 cbradney 3167
        <translation type="obsolete">Welsh:</translation>
4186 mrdocs 3168
    </message>
3169
    <message>
9729 cbradney 3170
        <location filename="" line="136953768"/>
4186 mrdocs 3171
        <source>Russian:</source>
4310 cbradney 3172
        <translation type="obsolete">Russian:</translation>
4186 mrdocs 3173
    </message>
3174
    <message>
9729 cbradney 3175
        <location filename="" line="136953768"/>
4186 mrdocs 3176
        <source>Brazilian:</source>
4310 cbradney 3177
        <translation type="obsolete">Brazilian:</translation>
4186 mrdocs 3178
    </message>
3179
    <message>
9729 cbradney 3180
        <location filename="" line="136953768"/>
4186 mrdocs 3181
        <source>Finnish:</source>
4310 cbradney 3182
        <translation type="obsolete">Finnish:</translation>
4186 mrdocs 3183
    </message>
3184
    <message>
9729 cbradney 3185
        <location filename="" line="136953768"/>
4186 mrdocs 3186
        <source>Basque:</source>
4310 cbradney 3187
        <translation type="obsolete">Basque:</translation>
4186 mrdocs 3188
    </message>
3189
    <message>
9729 cbradney 3190
        <location filename="" line="136953768"/>
4186 mrdocs 3191
        <source>Slovenian:</source>
4310 cbradney 3192
        <translation type="obsolete">Slovenian:</translation>
4186 mrdocs 3193
    </message>
3194
    <message>
9729 cbradney 3195
        <location filename="" line="136953768"/>
4186 mrdocs 3196
        <source>This panel shows the version, build date and
3197
 compiled in library support in Scribus
3198
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
3199
Missing library support is indicated by a *</source>
4310 cbradney 3200
        <translation type="obsolete">This panel shows the version, build date and
4186 mrdocs 3201
 compiled in library support in Scribus
3202
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
3203
Missing library support is indicated by a *</translation>
3204
    </message>
3205
    <message>
9729 cbradney 3206
        <location filename="../about.cpp" line="134"/>
4186 mrdocs 3207
        <source>&amp;About</source>
3208
        <translation type="unfinished">&amp;About</translation>
3209
    </message>
3210
    <message>
9729 cbradney 3211
        <location filename="../about.cpp" line="205"/>
4186 mrdocs 3212
        <source>A&amp;uthors</source>
3213
        <translation type="unfinished">A&amp;uthors</translation>
3214
    </message>
3215
    <message>
9729 cbradney 3216
        <location filename="../about.cpp" line="381"/>
4186 mrdocs 3217
        <source>&amp;Translations</source>
3218
        <translation type="unfinished">&amp;Translations</translation>
3219
    </message>
3220
    <message>
9729 cbradney 3221
        <location filename="../about.cpp" line="402"/>
4186 mrdocs 3222
        <source>&amp;Online</source>
3223
        <translation type="unfinished">&amp;Online</translation>
3224
    </message>
3225
    <message>
9729 cbradney 3226
        <location filename="../about.cpp" line="421"/>
4186 mrdocs 3227
        <source>&amp;Close</source>
3228
        <translation type="unfinished">&amp;Close</translation>
3229
    </message>
3230
    <message>
9729 cbradney 3231
        <location filename="../about.cpp" line="140"/>
4186 mrdocs 3232
        <source>Development Team:</source>
3233
        <translation type="unfinished">Development Team:</translation>
3234
    </message>
3235
    <message>
9729 cbradney 3236
        <location filename="../about.cpp" line="183"/>
4186 mrdocs 3237
        <source>Official Documentation:</source>
3238
        <translation type="unfinished">Official Documentation:</translation>
3239
    </message>
3240
    <message>
9729 cbradney 3241
        <location filename="../about.cpp" line="191"/>
4186 mrdocs 3242
        <source>Other Documentation:</source>
3243
        <translation type="unfinished">Other Documentation:</translation>
3244
    </message>
3245
    <message>
9729 cbradney 3246
        <location filename="" line="136953768"/>
4186 mrdocs 3247
        <source>English (British):</source>
4310 cbradney 3248
        <translation type="obsolete">English (British):</translation>
4186 mrdocs 3249
    </message>
3250
    <message>
9729 cbradney 3251
        <location filename="" line="136953768"/>
4186 mrdocs 3252
        <source>Swedish:</source>
4310 cbradney 3253
        <translation type="obsolete">Swedish:</translation>
4186 mrdocs 3254
    </message>
3255
    <message>
9729 cbradney 3256
        <location filename="../about.cpp" line="387"/>
4186 mrdocs 3257
        <source>Homepage</source>
3258
        <translation type="unfinished">Homepage</translation>
3259
    </message>
3260
    <message>
9729 cbradney 3261
        <location filename="../about.cpp" line="389"/>
4186 mrdocs 3262
        <source>Online Reference</source>
3263
        <translation type="unfinished">Online Reference</translation>
3264
    </message>
3265
    <message>
9729 cbradney 3266
        <location filename="../about.cpp" line="393"/>
4186 mrdocs 3267
        <source>Bugs and Feature Requests</source>
3268
        <translation type="unfinished">Bugs and Feature Requests</translation>
3269
    </message>
3270
    <message>
9729 cbradney 3271
        <location filename="../about.cpp" line="395"/>
4186 mrdocs 3272
        <source>Mailing List</source>
3273
        <translation type="unfinished">Mailing List</translation>
3274
    </message>
3275
    <message>
9729 cbradney 3276
        <location filename="../about.cpp" line="213"/>
4186 mrdocs 3277
        <source>Official Translations and Translators:</source>
3278
        <translation type="unfinished">Official Translations and Translators:</translation>
3279
    </message>
3280
    <message>
9729 cbradney 3281
        <location filename="" line="136953768"/>
4186 mrdocs 3282
        <source>Esperanto:</source>
4310 cbradney 3283
        <translation type="obsolete">Esperanto:</translation>
4186 mrdocs 3284
    </message>
3285
    <message>
9729 cbradney 3286
        <location filename="" line="136953768"/>
4186 mrdocs 3287
        <source>Korean:</source>
4310 cbradney 3288
        <translation type="obsolete">Korean:</translation>
4186 mrdocs 3289
    </message>
3290
    <message>
9729 cbradney 3291
        <location filename="" line="136953768"/>
4186 mrdocs 3292
        <source>Serbian:</source>
4310 cbradney 3293
        <translation type="obsolete">Serbian:</translation>
4186 mrdocs 3294
    </message>
3295
    <message>
9729 cbradney 3296
        <location filename="" line="136953768"/>
4186 mrdocs 3297
        <source>Spanish:</source>
4310 cbradney 3298
        <translation type="obsolete">Spanish:</translation>
4186 mrdocs 3299
    </message>
3300
    <message>
9729 cbradney 3301
        <location filename="../about.cpp" line="340"/>
4186 mrdocs 3302
        <source>Previous Translation Contributors:</source>
3303
        <translation type="unfinished">Previous Translation Contributors:</translation>
3304
    </message>
3305
    <message>
9729 cbradney 3306
        <location filename="" line="136953768"/>
4186 mrdocs 3307
        <source>Catalan:</source>
4310 cbradney 3308
        <translation type="obsolete">Catalan:</translation>
4186 mrdocs 3309
    </message>
3310
    <message>
9729 cbradney 3311
        <location filename="../about.cpp" line="43"/>
4186 mrdocs 3312
        <source>About Scribus %1</source>
3313
        <translation type="unfinished">About Scribus %1</translation>
3314
    </message>
4310 cbradney 3315
    <message>
9729 cbradney 3316
        <location filename="../about.cpp" line="69"/>
4310 cbradney 3317
        <source>%1 %2 %3</source>
3318
        <translation type="unfinished"></translation>
3319
    </message>
3320
    <message>
9729 cbradney 3321
        <location filename="../about.cpp" line="77"/>
4310 cbradney 3322
        <source>%3-%2-%1 %4 %5</source>
3323
        <translation type="unfinished"></translation>
3324
    </message>
3325
    <message>
9729 cbradney 3326
        <location filename="../about.cpp" line="129"/>
4310 cbradney 3327
        <source>Using Ghostscript version %1</source>
3328
        <translation type="unfinished"></translation>
3329
    </message>
3330
    <message>
9729 cbradney 3331
        <location filename="../about.cpp" line="131"/>
4310 cbradney 3332
        <source>No Ghostscript version available</source>
3333
        <translation type="unfinished"></translation>
3334
    </message>
3335
    <message>
9729 cbradney 3336
        <location filename="../about.cpp" line="132"/>
4310 cbradney 3337
        <source>&lt;b&gt;Scribus Version %1&lt;/b&gt;&lt;p&gt;%2&lt;br/&gt;%3 %4&lt;br/&gt;%5&lt;/p&gt;</source>
3338
        <translation type="unfinished"></translation>
3339
    </message>
3340
    <message>
9729 cbradney 3341
        <location filename="../about.cpp" line="132"/>
4310 cbradney 3342
        <source>Build ID:</source>
3343
        <translation type="unfinished"></translation>
3344
    </message>
3345
    <message>
9729 cbradney 3346
        <location filename="../about.cpp" line="391"/>
4759 cbradney 3347
        <source>Wiki</source>
4310 cbradney 3348
        <translation type="unfinished"></translation>
3349
    </message>
3350
    <message>
9729 cbradney 3351
        <location filename="../about.cpp" line="171"/>
4870 mrdocs 3352
        <source>Mac OS&amp;#174; X Aqua Port:</source>
4310 cbradney 3353
        <translation type="unfinished"></translation>
3354
    </message>
3355
    <message>
9729 cbradney 3356
        <location filename="../about.cpp" line="179"/>
4870 mrdocs 3357
        <source>Windows&amp;#174; Port:</source>
4310 cbradney 3358
        <translation type="unfinished"></translation>
3359
    </message>
4759 cbradney 3360
    <message>
9729 cbradney 3361
        <location filename="../about.cpp" line="199"/>
5328 cbradney 3362
        <source>Tango Project Icons:</source>
3363
        <translation type="unfinished"></translation>
3364
    </message>
6261 cbradney 3365
    <message>
9729 cbradney 3366
        <location filename="../about.cpp" line="405"/>
6261 cbradney 3367
        <source>&amp;Updates</source>
3368
        <translation type="unfinished"></translation>
3369
    </message>
3370
    <message>
9729 cbradney 3371
        <location filename="../about.cpp" line="409"/>
6261 cbradney 3372
        <source>Check for &amp;Updates</source>
3373
        <translation type="unfinished"></translation>
3374
    </message>
3375
    <message>
9729 cbradney 3376
        <location filename="../about.cpp" line="434"/>
3377
        <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source>
6261 cbradney 3378
        <translation type="unfinished"></translation>
3379
    </message>
3380
    <message>
9729 cbradney 3381
        <location filename="../about.cpp" line="175"/>
3382
        <source>OS/2&amp;#174;/eComStation&amp;#8482; Port:</source>
6261 cbradney 3383
        <translation type="unfinished"></translation>
3384
    </message>
7716 cbradney 3385
    <message>
9729 cbradney 3386
        <location filename="../about.cpp" line="196"/>
3387
        <source>Splash Screen:</source>
7716 cbradney 3388
        <translation type="unfinished"></translation>
3389
    </message>
9729 cbradney 3390
    <message>
3391
        <location filename="../about.cpp" line="430"/>
3392
        <source>This panel shows the version, build date and compiled in library support in Scribus.</source>
3393
        <translation type="unfinished"></translation>
3394
    </message>
3395
    <message>
3396
        <location filename="../about.cpp" line="431"/>
3397
        <source>The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support.Last Letter is the renderer C=cairo or Q=Qt</source>
3398
        <translation type="unfinished"></translation>
3399
    </message>
3400
    <message>
3401
        <location filename="../about.cpp" line="432"/>
3402
        <source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
3403
        <translation type="unfinished"></translation>
3404
    </message>
3405
    <message>
3406
        <location filename="../about.cpp" line="433"/>
3407
        <source>The Windows version does not use fontconfig or CUPS libraries.</source>
3408
        <translation type="unfinished"></translation>
3409
    </message>
4186 mrdocs 3410
</context>
3411
<context>
4310 cbradney 3412
    <name>AboutPlugins</name>
3413
    <message>
9729 cbradney 3414
        <location filename="" line="136953768"/>
4310 cbradney 3415
        <source>Yes</source>
6769 cbradney 3416
        <translation type="obsolete">Yes</translation>
4310 cbradney 3417
    </message>
3418
    <message>
9729 cbradney 3419
        <location filename="" line="136953768"/>
4310 cbradney 3420
        <source>No</source>
6769 cbradney 3421
        <translation type="obsolete">No</translation>
4310 cbradney 3422
    </message>
3423
    <message>
9729 cbradney 3424
        <location filename="../aboutplugins.cpp" line="68"/>
4759 cbradney 3425
        <source>Filename:</source>
4310 cbradney 3426
        <translation type="unfinished"></translation>
3427
    </message>
3428
    <message>
9729 cbradney 3429
        <location filename="../aboutplugins.cpp" line="69"/>
4310 cbradney 3430
        <source>Version:</source>
3431
        <translation type="unfinished"></translation>
3432
    </message>
3433
    <message>
9729 cbradney 3434
        <location filename="../aboutplugins.cpp" line="72"/>
4310 cbradney 3435
        <source>Enabled:</source>
3436
        <translation type="unfinished"></translation>
3437
    </message>
3438
    <message>
9729 cbradney 3439
        <location filename="../aboutplugins.cpp" line="73"/>
4310 cbradney 3440
        <source>Release Date:</source>
3441
        <translation type="unfinished"></translation>
3442
    </message>
3443
    <message>
9729 cbradney 3444
        <location filename="../aboutplugins.cpp" line="80"/>
4759 cbradney 3445
        <source>Description:</source>
4310 cbradney 3446
        <translation type="unfinished"></translation>
3447
    </message>
3448
    <message>
9729 cbradney 3449
        <location filename="../aboutplugins.cpp" line="81"/>
4310 cbradney 3450
        <source>Author(s):</source>
3451
        <translation type="unfinished"></translation>
3452
    </message>
3453
    <message>
9729 cbradney 3454
        <location filename="../aboutplugins.cpp" line="82"/>
4759 cbradney 3455
        <source>Copyright:</source>
4310 cbradney 3456
        <translation type="unfinished"></translation>
3457
    </message>
3458
    <message>
9729 cbradney 3459
        <location filename="../aboutplugins.cpp" line="83"/>
4310 cbradney 3460
        <source>License:</source>
3461
        <translation type="unfinished"></translation>
3462
    </message>
3463
    <message>
9729 cbradney 3464
        <location filename="../aboutplugins.ui" line="13"/>
4759 cbradney 3465
        <source>Scribus: About Plug-ins</source>
3466
        <translation type="unfinished"></translation>
3467
    </message>
9729 cbradney 3468
</context>
3469
<context>
3470
    <name>AboutPluginsBase</name>
4759 cbradney 3471
    <message>
9729 cbradney 3472
        <location filename="" line="136953768"/>
4310 cbradney 3473
        <source>&amp;Close</source>
9729 cbradney 3474
        <translation type="obsolete">&amp;Close</translation>
4310 cbradney 3475
    </message>
3476
    <message>
9729 cbradney 3477
        <location filename="" line="136953768"/>
4310 cbradney 3478
        <source>Alt+C</source>
9729 cbradney 3479
        <translation type="obsolete">Alt+C</translation>
4310 cbradney 3480
    </message>
3481
</context>
3482
<context>
3483
    <name>ActionManager</name>
3484
    <message>
9729 cbradney 3485
        <location filename="../actionmanager.cpp" line="1169"/>
4310 cbradney 3486
        <source>&amp;New</source>
3487
        <translation type="unfinished">&amp;New</translation>
3488
    </message>
3489
    <message>
9729 cbradney 3490
        <location filename="../actionmanager.cpp" line="1170"/>
4310 cbradney 3491
        <source>&amp;Open...</source>
3492
        <translation type="unfinished">&amp;Open...</translation>
3493
    </message>
3494
    <message>
9729 cbradney 3495
        <location filename="../actionmanager.cpp" line="1171"/>
4310 cbradney 3496
        <source>&amp;Close</source>
3497
        <translation type="unfinished">&amp;Close</translation>
3498
    </message>
3499
    <message>
9729 cbradney 3500
        <location filename="../actionmanager.cpp" line="1172"/>
4310 cbradney 3501
        <source>&amp;Save</source>
3502
        <translation type="unfinished">&amp;Save</translation>
3503
    </message>
3504
    <message>
9729 cbradney 3505
        <location filename="../actionmanager.cpp" line="1173"/>
4310 cbradney 3506
        <source>Save &amp;As...</source>
3507
        <translation type="unfinished">Save &amp;As...</translation>
3508
    </message>
3509
    <message>
9729 cbradney 3510
        <location filename="../actionmanager.cpp" line="1174"/>
4310 cbradney 3511
        <source>Re&amp;vert to Saved</source>
3512
        <translation type="unfinished">Re&amp;vert to Saved</translation>
3513
    </message>
3514
    <message>
9729 cbradney 3515
        <location filename="../actionmanager.cpp" line="1175"/>
4310 cbradney 3516
        <source>Collect for O&amp;utput...</source>
3517
        <translation type="unfinished">Collect for O&amp;utput...</translation>
3518
    </message>
3519
    <message>
9729 cbradney 3520
        <location filename="../actionmanager.cpp" line="1176"/>
4310 cbradney 3521
        <source>Get Text...</source>
3522
        <translation type="unfinished">Get Text...</translation>
3523
    </message>
3524
    <message>
9729 cbradney 3525
        <location filename="../actionmanager.cpp" line="1177"/>
4310 cbradney 3526
        <source>Append &amp;Text...</source>
3527
        <translation type="unfinished">Append &amp;Text...</translation>
3528
    </message>
3529
    <message>
9729 cbradney 3530
        <location filename="../actionmanager.cpp" line="1178"/>
4310 cbradney 3531
        <source>Get Image...</source>
3532
        <translation type="unfinished"></translation>
3533
    </message>
3534
    <message>
9729 cbradney 3535
        <location filename="../actionmanager.cpp" line="1179"/>
4310 cbradney 3536
        <source>Save &amp;Text...</source>
3537
        <translation type="unfinished">Save &amp;Text...</translation>
3538
    </message>
3539
    <message>
9729 cbradney 3540
        <location filename="" line="136953768"/>
4310 cbradney 3541
        <source>Save Page as &amp;EPS...</source>
5485 cbradney 3542
        <translation type="obsolete">Save Page as &amp;EPS...</translation>
4310 cbradney 3543
    </message>
3544
    <message>
9729 cbradney 3545
        <location filename="../actionmanager.cpp" line="1181"/>
4310 cbradney 3546
        <source>Save as P&amp;DF...</source>
3547
        <translation type="unfinished">Save as P&amp;DF...</translation>
3548
    </message>
3549
    <message>
9729 cbradney 3550
        <location filename="../actionmanager.cpp" line="1182"/>
4310 cbradney 3551
        <source>Document &amp;Setup...</source>
3552
        <translation type="unfinished">Document &amp;Setup...</translation>
3553
    </message>
3554
    <message>
9729 cbradney 3555
        <location filename="../actionmanager.cpp" line="1184"/>
4310 cbradney 3556
        <source>&amp;Print...</source>
3557
        <translation type="unfinished">&amp;Print...</translation>
3558
    </message>
3559
    <message>
9729 cbradney 3560
        <location filename="../actionmanager.cpp" line="1185"/>
4310 cbradney 3561
        <source>Print Previe&amp;w</source>
3562
        <translation type="unfinished">Print Previe&amp;w</translation>
3563
    </message>
3564
    <message>
9729 cbradney 3565
        <location filename="../actionmanager.cpp" line="1186"/>
4310 cbradney 3566
        <source>&amp;Quit</source>
3567
        <translation type="unfinished">&amp;Quit</translation>
3568
    </message>
3569
    <message>
9729 cbradney 3570
        <location filename="../actionmanager.cpp" line="1188"/>
4310 cbradney 3571
        <source>&amp;Undo</source>
3572
        <translation type="unfinished">&amp;Undo</translation>
3573
    </message>
3574
    <message>
9729 cbradney 3575
        <location filename="../actionmanager.cpp" line="1189"/>
4310 cbradney 3576
        <source>&amp;Redo</source>
3577
        <translation type="unfinished"></translation>
3578
    </message>
3579
    <message>
9729 cbradney 3580
        <location filename="../actionmanager.cpp" line="1190"/>
4310 cbradney 3581
        <source>&amp;Item Action Mode</source>
3582
        <translation type="unfinished"></translation>
3583
    </message>
3584
    <message>
9729 cbradney 3585
        <location filename="../actionmanager.cpp" line="1191"/>
4310 cbradney 3586
        <source>Cu&amp;t</source>
3587
        <translation type="unfinished">Cu&amp;t</translation>
3588
    </message>
3589
    <message>
9729 cbradney 3590
        <location filename="../actionmanager.cpp" line="1194"/>
4310 cbradney 3591
        <source>&amp;Copy</source>
3592
        <translation type="unfinished">&amp;Copy</translation>
3593
    </message>
3594
    <message>
9729 cbradney 3595
        <location filename="../actionmanager.cpp" line="1195"/>
4310 cbradney 3596
        <source>&amp;Paste</source>
3597
        <translation type="unfinished">&amp;Paste</translation>
3598
    </message>
3599
    <message>
9729 cbradney 3600
        <location filename="" line="136953768"/>
4310 cbradney 3601
        <source>C&amp;lear Contents</source>
5328 cbradney 3602
        <translation type="obsolete">C&amp;lear Contents</translation>
4310 cbradney 3603
    </message>
3604
    <message>
9729 cbradney 3605
        <location filename="../actionmanager.cpp" line="1198"/>
4310 cbradney 3606
        <source>Select &amp;All</source>
3607
        <translation type="unfinished">Select &amp;All</translation>
3608
    </message>
3609
    <message>
9729 cbradney 3610
        <location filename="../actionmanager.cpp" line="1199"/>
4310 cbradney 3611
        <source>&amp;Deselect All</source>
3612
        <translation type="unfinished"></translation>
3613
    </message>
3614
    <message>
9729 cbradney 3615
        <location filename="../actionmanager.cpp" line="1200"/>
4310 cbradney 3616
        <source>&amp;Search/Replace...</source>
3617
        <translation type="unfinished">&amp;Search/Replace...</translation>
3618
    </message>
3619
    <message>
9729 cbradney 3620
        <location filename="../actionmanager.cpp" line="1201"/>
4310 cbradney 3621
        <source>Edit Image...</source>
3622
        <translation type="unfinished"></translation>
3623
    </message>
3624
    <message>
9729 cbradney 3625
        <location filename="../actionmanager.cpp" line="1202"/>
4310 cbradney 3626
        <source>C&amp;olors...</source>
3627
        <translation type="unfinished">C&amp;olours...</translation>
3628
    </message>
3629
    <message>
9729 cbradney 3630
        <location filename="" line="136953768"/>
4310 cbradney 3631
        <source>&amp;Paragraph Styles...</source>
9729 cbradney 3632
        <translation type="obsolete">&amp;Paragraph Styles...</translation>
4310 cbradney 3633
    </message>
3634
    <message>
9729 cbradney 3635
        <location filename="" line="136953768"/>
4310 cbradney 3636
        <source>&amp;Line Styles...</source>
9729 cbradney 3637
        <translation type="obsolete">&amp;Line Styles...</translation>
4310 cbradney 3638
    </message>
3639
    <message>
9729 cbradney 3640
        <location filename="../actionmanager.cpp" line="1205"/>
4310 cbradney 3641
        <source>&amp;Master Pages...</source>
3642
        <translation type="unfinished"></translation>
3643
    </message>
3644
    <message>
9729 cbradney 3645
        <location filename="../actionmanager.cpp" line="1206"/>
4310 cbradney 3646
        <source>&amp;JavaScripts...</source>
3647
        <translation type="unfinished"></translation>
3648
    </message>
3649
    <message>
9729 cbradney 3650
        <location filename="../actionmanager.cpp" line="1183"/>
4310 cbradney 3651
        <source>P&amp;references...</source>
3652
        <translation type="unfinished">P&amp;references...</translation>
3653
    </message>
3654
    <message>
9729 cbradney 3655
        <location filename="../actionmanager.cpp" line="1213"/>
4310 cbradney 3656
        <source>%1 pt</source>
3657
        <translation type="unfinished"></translation>
3658
    </message>
3659
    <message>
9729 cbradney 3660
        <location filename="../actionmanager.cpp" line="1228"/>
4310 cbradney 3661
        <source>&amp;Other...</source>
3662
        <translation type="unfinished">&amp;Other...</translation>
3663
    </message>
3664
    <message>
9729 cbradney 3665
        <location filename="../actionmanager.cpp" line="1216"/>
4310 cbradney 3666
        <source>&amp;Left</source>
3667
        <translation type="unfinished">&amp;Left</translation>
3668
    </message>
3669
    <message>
9729 cbradney 3670
        <location filename="../actionmanager.cpp" line="1217"/>
4310 cbradney 3671
        <source>&amp;Center</source>
3672
        <translation type="unfinished">&amp;Centre</translation>
3673
    </message>
3674
    <message>
9729 cbradney 3675
        <location filename="../actionmanager.cpp" line="1218"/>
4310 cbradney 3676
        <source>&amp;Right</source>
3677
        <translation type="unfinished">&amp;Right</translation>
3678
    </message>
3679
    <message>
9729 cbradney 3680
        <location filename="../actionmanager.cpp" line="1219"/>
4310 cbradney 3681
        <source>&amp;Block</source>
3682
        <translation type="unfinished">&amp;Block</translation>
3683
    </message>
3684
    <message>
9729 cbradney 3685
        <location filename="../actionmanager.cpp" line="1220"/>
4310 cbradney 3686
        <source>&amp;Forced</source>
3687
        <translation type="unfinished">&amp;Forced</translation>
3688
    </message>
3689
    <message>
9729 cbradney 3690
        <location filename="../actionmanager.cpp" line="1225"/>
4310 cbradney 3691
        <source>&amp;%1 %</source>
3692
        <translation type="unfinished"></translation>
3693
    </message>
3694
    <message>
9729 cbradney 3695
        <location filename="../actionmanager.cpp" line="1229"/>
4310 cbradney 3696
        <source>&amp;Normal</source>
3697
        <translation type="unfinished"></translation>
3698
    </message>
3699
    <message>
9729 cbradney 3700
        <location filename="../actionmanager.cpp" line="1230"/>
4310 cbradney 3701
        <source>&amp;Underline</source>
3702
        <translation type="unfinished"></translation>
3703
    </message>
3704
    <message>
9729 cbradney 3705
        <location filename="../actionmanager.cpp" line="1231"/>
4310 cbradney 3706
        <source>Underline &amp;Words</source>
3707
        <translation type="unfinished"></translation>
3708
    </message>
3709
    <message>
9729 cbradney 3710
        <location filename="../actionmanager.cpp" line="1232"/>
4310 cbradney 3711
        <source>&amp;Strike Through</source>
3712
        <translation type="unfinished"></translation>
3713
    </message>
3714
    <message>
9729 cbradney 3715
        <location filename="../actionmanager.cpp" line="1233"/>
4310 cbradney 3716
        <source>&amp;All Caps</source>
3717
        <translation type="unfinished"></translation>
3718
    </message>
3719
    <message>
9729 cbradney 3720
        <location filename="../actionmanager.cpp" line="1234"/>
4310 cbradney 3721
        <source>Small &amp;Caps</source>
3722
        <translation type="unfinished"></translation>
3723
    </message>
3724
    <message>
9729 cbradney 3725
        <location filename="../actionmanager.cpp" line="1235"/>
4310 cbradney 3726
        <source>Su&amp;perscript</source>
3727
        <translation type="unfinished"></translation>
3728
    </message>
3729
    <message>
9729 cbradney 3730
        <location filename="../actionmanager.cpp" line="1236"/>
4310 cbradney 3731
        <source>Su&amp;bscript</source>
3732
        <translation type="unfinished"></translation>
3733
    </message>
3734
    <message>
9729 cbradney 3735
        <location filename="" line="136953768"/>
4310 cbradney 3736
        <source>&amp;Outline</source>
4870 mrdocs 3737
        <translation type="obsolete">&amp;Outline</translation>
4310 cbradney 3738
    </message>
3739
    <message>
9729 cbradney 3740
        <location filename="../actionmanager.cpp" line="1238"/>
4310 cbradney 3741
        <source>S&amp;hadow</source>
3742
        <translation type="unfinished"></translation>
3743
    </message>
3744
    <message>
9729 cbradney 3745
        <location filename="../actionmanager.cpp" line="1240"/>
4310 cbradney 3746
        <source>&amp;Image Effects</source>
3747
        <translation type="unfinished"></translation>
3748
    </message>
3749
    <message>
9729 cbradney 3750
        <location filename="../actionmanager.cpp" line="1241"/>
4310 cbradney 3751
        <source>&amp;Tabulators...</source>
3752
        <translation type="unfinished">&amp;Tabulators...</translation>
3753
    </message>
3754
    <message>
9729 cbradney 3755
        <location filename="../actionmanager.cpp" line="1244"/>
4310 cbradney 3756
        <source>D&amp;uplicate</source>
3757
        <translation type="unfinished">D&amp;uplicate</translation>
3758
    </message>
3759
    <message>
9729 cbradney 3760
        <location filename="../actionmanager.cpp" line="1245"/>
4310 cbradney 3761
        <source>&amp;Multiple Duplicate</source>
3762
        <translation type="unfinished">&amp;Multiple Duplicate</translation>
3763
    </message>
3764
    <message>
9729 cbradney 3765
        <location filename="../actionmanager.cpp" line="1246"/>
4310 cbradney 3766
        <source>&amp;Delete</source>
3767
        <translation type="unfinished">&amp;Delete</translation>
3768
    </message>
3769
    <message>
9729 cbradney 3770
        <location filename="../actionmanager.cpp" line="1247"/>
4310 cbradney 3771
        <source>&amp;Group</source>
3772
        <translation type="unfinished">&amp;Group</translation>
3773
    </message>
3774
    <message>
9729 cbradney 3775
        <location filename="../actionmanager.cpp" line="1248"/>
4310 cbradney 3776
        <source>&amp;Ungroup</source>
3777
        <translation type="unfinished">&amp;Ungroup</translation>
3778
    </message>
3779
    <message>
9729