Subversion Repositories Scribus

Rev

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

Rev Author Line No. Line
4186 mrdocs 1
<!DOCTYPE TS><TS>
2
<context>
3
    <name></name>
4
    <message>
5
        <source>getFontSize([&quot;name&quot;]) -&gt; float
6
 
7
Returns the font size in points for the text frame &quot;name&quot;. If this text
8
frame has some text selected the value assigned to the first character of
9
the selection is returned.
10
If &quot;name&quot; is not given the currently selected item is used.
11
</source>
12
        <translation type="unfinished">getFontSize([&quot;name&quot;]) -&gt; float
13
 
14
Returns the font size in points for the text frame &quot;name&quot;. If this text
15
frame has some text selected the value assigned to the first character of
16
the selection is returned.
17
If &quot;name&quot; is not given the currently selected item is used.
18
</translation>
19
    </message>
20
    <message>
21
        <source>getColorNames() -&gt; list
22
 
23
Returns a list containing the names of all defined colors in the document.
24
If no document is open, returns a list of the default document colors.
25
</source>
26
        <translation type="unfinished">getColorNames() -&gt; list
27
 
28
Returns a list containing the names of all defined colours in the document.
29
If no document is open, returns a list of the default document colours.
30
</translation>
31
    </message>
32
    <message>
33
        <source>newDocDialog() -&gt; bool
34
 
35
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
36
accepts the settings. Does not create a document if the user presses cancel.
37
Returns true if a new document was created.
38
</source>
39
        <translation type="unfinished">newDocDialog() -&gt; bool
40
 
41
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
42
accepts the settings. Does not create a document if the user presses cancel.
43
Returns true if a new document was created.
44
</translation>
45
    </message>
46
    <message>
47
        <source>getFillColor([&quot;name&quot;]) -&gt; string
48
 
49
Returns the name of the fill color of the object &quot;name&quot;.
50
If &quot;name&quot; is not given the currently selected item is used.
51
</source>
52
        <translation type="unfinished">getFillColor([&quot;name&quot;]) -&gt; string
53
 
54
Returns the name of the fill colour of the object &quot;name&quot;.
55
If &quot;name&quot; is not given the currently selected item is used.
56
</translation>
57
    </message>
58
    <message>
59
        <source>moveObject(dx, dy [, &quot;name&quot;])
60
 
61
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
62
distances are expressed in the current measurement unit of the document (see
63
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
64
If the object &quot;name&quot; belongs to a group, the whole group is moved.
65
</source>
66
        <translation type="unfinished">moveObject(dx, dy [, &quot;name&quot;])
67
 
68
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
69
distances are expressed in the current measurement unit of the document (see
70
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
71
If the object &quot;name&quot; belongs to a group, the whole group is moved.
72
</translation>
73
    </message>
74
    <message>
75
        <source>setRedraw(bool)
76
 
77
Disables page redraw when bool = False, otherwise redrawing is enabled.
78
This change will persist even after the script exits, so make sure to call
79
setRedraw(True) in a finally: clause at the top level of your script.
80
</source>
81
        <translation type="unfinished">setRedraw(bool)
82
 
83
Disables page redraw when bool = False, otherwise redrawing is enabled.
84
This change will persist even after the script exits, so make sure to call
85
setRedraw(True) in a finally: clause at the top level of your script.
86
</translation>
87
    </message>
88
    <message>
89
        <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
90
 
91
Creates a new rectangle on the current page and returns its name. The
92
coordinates are given in the current measurement units of the document
93
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
94
because you need this name to reference that object in future. If &quot;name&quot;
95
is not given Scribus will create one for you.
96
 
97
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
98
</source>
99
        <translation type="unfinished">createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
100
 
101
Creates a new rectangle on the current page and returns its name. The
102
coordinates are given in the current measurement units of the document
103
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
104
because you need this name to reference that object in future. If &quot;name&quot;
105
is not given Scribus will create one for you.
106
 
107
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
108
</translation>
109
    </message>
110
    <message>
111
        <source>newPage(where [,&quot;template&quot;])
112
 
113
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
114
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
115
counted from 1 upwards, no matter what the displayed first page number of your
116
document is. The optional parameter &quot;template&quot; specifies the name of the
117
template page for the new page.
118
 
119
May raise IndexError if the page number is out of range
120
</source>
121
        <translation type="unfinished">newPage(where [,&quot;template&quot;])
122
 
123
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
124
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
125
counted from 1 upwards, no matter what the displayed first page number of your
126
document is. The optional parameter &quot;template&quot; specifies the name of the
127
template page for the new page.
128
 
129
May raise IndexError if the page number is out of range
130
</translation>
131
    </message>
132
    <message>
133
        <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
134
 
135
Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
136
the same as for setFillColor() and setFillShade(). See the constants for
137
available types (FILL_&lt;type&gt;).
138
</source>
139
        <translation type="unfinished">setGradientFill(type, &quot;colour1&quot;, shade1, &quot;colour2&quot;, shade2, [&quot;name&quot;])
140
 
141
Sets the gradient fill of the object &quot;name&quot; to type. Colour descriptions are
142
the same as for setFillColor() and setFillShade(). See the constants for
143
available types (FILL_&lt;type&gt;).
144
</translation>
145
    </message>
146
    <message>
147
        <source>messagebarText(&quot;string&quot;)
148
 
149
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
150
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
151
</source>
152
        <translation type="unfinished">messagebarText(&quot;string&quot;)
153
 
154
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
155
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
156
</translation>
157
    </message>
158
    <message>
159
        <source>newDoc(size, margins, orientation, firstPageNumber,
160
                   unit, facingPages, firstSideLeft) -&gt; bool
161
 
162
Creates a new document and returns true if successful. The parameters have the
163
following meaning:
164
 
165
    size = A tuple (width, height) describing the size of the document. You can
166
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
167
 
168
    margins = A tuple (left, right, top, bottom) describing the document
169
    margins
170
 
171
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
172
 
173
    firstPageNumber = is the number of the first page in the document used for
174
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
175
    numbers if you&apos;re creating a document in several parts.
176
 
177
    unit: this value sets the measurement units used by the document. Use a
178
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
179
    UNIT_PICAS, UNIT_POINTS.
180
 
181
    facingPages = FACINGPAGES, NOFACINGPAGES
182
 
183
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
184
 
185
The values for width, height and the margins are expressed in the given unit
186
for the document. PAPER_* constants are expressed in points. If your document
187
is not in points, make sure to account for this.
188
 
189
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
190
                FACINGPAGES, FIRSTPAGERIGHT)
191
</source>
192
        <translation type="unfinished">newDoc(size, margins, orientation, firstPageNumber,
193
                   unit, facingPages, firstSideLeft) -&gt; bool
194
 
195
Creates a new document and returns true if successful. The parameters have the
196
following meaning:
197
 
198
    size = A tuple (width, height) describing the size of the document. You can
199
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
200
 
201
    margins = A tuple (left, right, top, bottom) describing the document
202
    margins
203
 
204
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
205
 
206
    firstPageNumber = is the number of the first page in the document used for
207
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
208
    numbers if you&apos;re creating a document in several parts.
209
 
210
    unit: this value sets the measurement units used by the document. Use a
211
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
212
    UNIT_PICAS, UNIT_POINTS.
213
 
214
    facingPages = FACINGPAGES, NOFACINGPAGES
215
 
216
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
217
 
218
The values for width, height and the margins are expressed in the given unit
219
for the document. PAPER_* constants are expressed in points. If your document
220
is not in points, make sure to account for this.
221
 
222
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
223
                FACINGPAGES, FIRSTPAGERIGHT)
224
</translation>
225
    </message>
226
</context>
227
<context>
228
    <name>@default</name>
229
    <message>
230
        <source>getFont([&quot;name&quot;]) -&gt; string
231
 
232
Returns the font name for the text frame &quot;name&quot;. If this text frame
233
has some text selected the value assigned to the first character
234
of the selection is returned. If &quot;name&quot; is not given the currently
235
selected item is used.
236
</source>
237
        <translation type="unfinished">getFont([&quot;name&quot;]) -&gt; string
238
 
239
Returns the font name for the text frame &quot;name&quot;. If this text frame
240
has some text selected the value assigned to the first character
241
of the selection is returned. If &quot;name&quot; is not given the currently
242
selected item is used.
243
</translation>
244
    </message>
245
    <message>
246
        <source>getTextLength([&quot;name&quot;]) -&gt; integer
247
 
248
Returns the length of the text in the text frame &quot;name&quot;.
249
If &quot;name&quot; is not given the currently selected item is used.
250
</source>
251
        <translation type="unfinished">getTextLength([&quot;name&quot;]) -&gt; integer
252
 
253
Returns the length of the text in the text frame &quot;name&quot;.
254
If &quot;name&quot; is not given the currently selected item is used.
255
</translation>
256
    </message>
257
    <message>
258
        <source>getText([&quot;name&quot;]) -&gt; string
259
 
260
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
261
selected, the selected text is returned. All text in the frame, not just
262
currently visible text, is returned. If &quot;name&quot; is not given the currently
263
selected item is used.
264
</source>
265
        <translation type="unfinished">getText([&quot;name&quot;]) -&gt; string
266
 
267
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
268
selected, the selected text is returned. All text in the frame, not just
269
currently visible text, is returned. If &quot;name&quot; is not given the currently
270
selected item is used.
271
</translation>
272
    </message>
273
    <message>
274
        <source>getAllText([&quot;name&quot;]) -&gt; string
275
 
276
Returns the text of the text frame &quot;name&quot; and of all text frames which are
277
linked with this frame. If this textframe has some text selected, the selected
278
text is returned. If &quot;name&quot; is not given the currently selected item is
279
used.
280
</source>
281
        <translation type="unfinished">getAllText([&quot;name&quot;]) -&gt; string
282
 
283
Returns the text of the text frame &quot;name&quot; and of all text frames which are
284
linked with this frame. If this textframe has some text selected, the selected
285
text is returned. If &quot;name&quot; is not given the currently selected item is
286
used.
287
</translation>
288
    </message>
289
    <message>
290
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float
291
 
292
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
293
points. If &quot;name&quot; is not given the currently selected item is used.
294
</source>
295
        <translation type="unfinished">getLineSpacing([&quot;name&quot;]) -&gt; float
296
 
297
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
298
points. If &quot;name&quot; is not given the currently selected item is used.
299
</translation>
300
    </message>
301
    <message>
302
        <source>getColumnGap([&quot;name&quot;]) -&gt; float
303
 
304
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
305
&quot;name&quot; is not given the currently selected item is used.
306
</source>
307
        <translation type="unfinished">getColumnGap([&quot;name&quot;]) -&gt; float
308
 
309
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
310
&quot;name&quot; is not given the currently selected item is used.
311
</translation>
312
    </message>
313
    <message>
314
        <source>getColumns([&quot;name&quot;]) -&gt; integer
315
 
316
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
317
given the currently selected item is used.
318
</source>
319
        <translation type="unfinished">getColumns([&quot;name&quot;]) -&gt; integer
320
 
321
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
322
given the currently selected item is used.
323
</translation>
324
    </message>
325
    <message>
326
        <source>setText(&quot;text&quot;, [&quot;name&quot;])
327
 
328
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
329
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
330
for more details. If &quot;name&quot; is not given the currently selected item is
331
used.
332
</source>
333
        <translation type="unfinished">setText(&quot;text&quot;, [&quot;name&quot;])
334
 
335
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
336
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
337
for more details. If &quot;name&quot; is not given the currently selected item is
338
used.
339
</translation>
340
    </message>
341
    <message>
342
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
343
 
344
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame. Text
345
must be UTF encoded (see setText() as reference) The first character has an
346
index of 0. &quot;name&quot; If &quot;name&quot; is not given the currently selected Item is
347
used.
348
 
349
May throw IndexError for an insertion out of bounds.
350
</source>
351
        <translation type="unfinished">insertText(&quot;text&quot;, pos, [&quot;name&quot;])
352
 
353
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame. Text
354
must be UTF encoded (see setText() as reference) The first character has an
355
index of 0. &quot;name&quot; If &quot;name&quot; is not given the currently selected Item is
356
used.
357
 
358
May throw IndexError for an insertion out of bounds.
359
</translation>
360
    </message>
361
    <message>
362
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])
363
 
364
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
365
selected only the selected text is changed.  If &quot;name&quot; is not given the
366
currently selected item is used.
367
 
368
May throw ValueError if the font cannot be found.
369
</source>
370
        <translation type="unfinished">setFont(&quot;font&quot;, [&quot;name&quot;])
371
 
372
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
373
selected only the selected text is changed.  If &quot;name&quot; is not given the
374
currently selected item is used.
375
 
376
May throw ValueError if the font cannot be found.
377
</translation>
378
    </message>
379
    <message>
380
        <source>setFontSize(size, [&quot;name&quot;])
381
 
382
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
383
as a value in points. If there is some text selected only the selected text is
384
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
385
currently selected item is used.
386
 
387
May throw ValueError for a font size that&apos;s out of bounds.
388
</source>
389
        <translation type="unfinished">setFontSize(size, [&quot;name&quot;])
390
 
391
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
392
as a value in points. If there is some text selected only the selected text is
393
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
394
currently selected item is used.
395
 
396
May throw ValueError for a font size that&apos;s out of bounds.
397
</translation>
398
    </message>
399
    <message>
400
        <source>setLineSpacing(size, [&quot;name&quot;])
401
 
402
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
403
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
404
item is used.
405
 
406
May throw ValueError if the line spacing is out of bounds.
407
</source>
408
        <translation type="unfinished">setLineSpacing(size, [&quot;name&quot;])
409
 
410
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
411
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
412
item is used.
413
 
414
May throw ValueError if the line spacing is out of bounds.
415
</translation>
416
    </message>
417
    <message>
418
        <source>setColumnGap(size, [&quot;name&quot;])
419
 
420
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
421
&quot;name&quot; is not given the currently selected item is used.
422
 
423
May throw ValueError if the column gap is out of bounds (must be positive).
424
</source>
425
        <translation type="unfinished">setColumnGap(size, [&quot;name&quot;])
426
 
427
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
428
&quot;name&quot; is not given the currently selected item is used.
429
 
430
May throw ValueError if the column gap is out of bounds (must be positive).
431
</translation>
432
    </message>
433
    <message>
434
        <source>setColumns(nr, [&quot;name&quot;])
435
 
436
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
437
If &quot;name&quot; is not given the currently selected item is used.
438
 
439
May throw ValueError if number of columns is not at least one.
440
</source>
441
        <translation type="unfinished">setColumns(nr, [&quot;name&quot;])
442
 
443
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
444
If &quot;name&quot; is not given the currently selected item is used.
445
 
446
May throw ValueError if number of columns is not at least one.
447
</translation>
448
    </message>
449
    <message>
450
        <source>setTextAlignment(align, [&quot;name&quot;])
451
 
452
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
453
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
454
be one of the ALIGN_ constants defined in this module - see dir(scribus).
455
 
456
May throw ValueError for an invalid alignment constant.
457
</source>
458
        <translation type="unfinished">setTextAlignment(align, [&quot;name&quot;])
459
 
460
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
461
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
462
be one of the ALIGN_ constants defined in this module - see dir(scribus).
463
 
464
May throw ValueError for an invalid alignment constant.
465
</translation>
466
    </message>
467
    <message>
468
        <source>selectText(start, count, [&quot;name&quot;])
469
 
470
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
471
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
472
text selection will be cleared.  If &quot;name&quot; is not given the currently
473
selected item is used.
474
 
475
May throw IndexError if the selection is outside the bounds of the text.
476
</source>
477
        <translation type="unfinished">selectText(start, count, [&quot;name&quot;])
478
 
479
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
480
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
481
text selection will be cleared.  If &quot;name&quot; is not given the currently
482
selected item is used.
483
 
484
May throw IndexError if the selection is outside the bounds of the text.
485
</translation>
486
    </message>
487
    <message>
488
        <source>deleteText([&quot;name&quot;])
489
 
490
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
491
only the selected text will be deleted. If &quot;name&quot; is not given the currently
492
selected item is used.
493
</source>
494
        <translation type="unfinished">deleteText([&quot;name&quot;])
495
 
496
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
497
only the selected text will be deleted. If &quot;name&quot; is not given the currently
498
selected item is used.
499
</translation>
500
    </message>
501
    <message>
502
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
503
 
504
Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
505
is some text selected only the selected text is changed. If &quot;name&quot; is not
506
given the currently selected item is used.
507
</source>
508
        <translation type="unfinished">setTextColor(&quot;colour&quot;, [&quot;name&quot;])
509
 
510
Sets the text colour of the text frame &quot;name&quot; to the colour &quot;colour&quot;. If there
511
is some text selected only the selected text is changed. If &quot;name&quot; is not
512
given the currently selected item is used.
513
</translation>
514
    </message>
515
    <message>
516
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
517
 
518
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
519
selected item is used.
520
</source>
521
        <translation type="unfinished">setTextStroke(&quot;colour&quot;, [&quot;name&quot;])
522
 
523
Set &quot;colour&quot; of the text stroke. If &quot;name&quot; is not given the currently
524
selected item is used.
525
</translation>
526
    </message>
527
    <message>
528
        <source>setTextShade(shade, [&quot;name&quot;])
529
 
530
Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
531
there is some text selected only the selected text is changed. &quot;shade&quot; must
532
be an integer value in the range from 0 (lightest) to 100 (full color
533
intensity). If &quot;name&quot; is not given the currently selected item is
534
used.
535
</source>
536
        <translation type="unfinished">setTextShade(shade, [&quot;name&quot;])
537
 
538
Sets the shading of the text colour of the object &quot;name&quot; to &quot;shade&quot;. If
539
there is some text selected only the selected text is changed. &quot;shade&quot; must
540
be an integer value in the range from 0 (lightest) to 100 (full colour
541
intensity). If &quot;name&quot; is not given the currently selected item is
542
used.
543
</translation>
544
    </message>
545
    <message>
546
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
547
 
548
Link two text frames. The frame named &quot;fromname&quot; is linked to the
549
frame named &quot;toname&quot;. The target frame must be an empty text frame
550
and must not link to or be linked from any other frames already.
551
 
552
May throw ScribusException if linking rules are violated.
553
</source>
554
        <translation type="unfinished">linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
555
 
556
Link two text frames. The frame named &quot;fromname&quot; is linked to the
557
frame named &quot;toname&quot;. The target frame must be an empty text frame
558
and must not link to or be linked from any other frames already.
559
 
560
May throw ScribusException if linking rules are violated.
561
</translation>
562
    </message>
563
    <message>
564
        <source>unlinkTextFrames(&quot;name&quot;)
565
 
566
Remove the specified (named) object from the text frame flow/linkage. If the
567
frame was in the middle of a chain, the previous and next frames will be
568
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
569
 
570
May throw ScribusException if linking rules are violated.
571
</source>
572
        <translation type="unfinished">unlinkTextFrames(&quot;name&quot;)
573
 
574
Remove the specified (named) object from the text frame flow/linkage. If the
575
frame was in the middle of a chain, the previous and next frames will be
576
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
577
 
578
May throw ScribusException if linking rules are violated.
579
</translation>
580
    </message>
581
    <message>
582
        <source>traceText([&quot;name&quot;])
583
 
584
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
585
currently selected item is used.</source>
586
        <translation type="unfinished">traceText([&quot;name&quot;])
587
 
588
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
589
currently selected item is used.</translation>
590
    </message>
591
    <message>
592
        <source>getColor(&quot;name&quot;) -&gt; tuple
593
 
594
Returns a tuple (C, M, Y, K) containing the four color components of the
595
color &quot;name&quot; from the current document. If no document is open, returns
596
the value of the named color from the default document colors.
597
 
598
May raise NotFoundError if the named color wasn&apos;t found.
599
May raise ValueError if an invalid color name is specified.
600
</source>
601
        <translation type="unfinished">getColor(&quot;name&quot;) -&gt; tuple
602
 
603
Returns a tuple (C, M, Y, K) containing the four colour components of the
604
colour &quot;name&quot; from the current document. If no document is open, returns
605
the value of the named colour from the default document colours.
606
 
607
May raise NotFoundError if the named colour wasn&apos;t found.
608
May raise ValueError if an invalid colour name is specified.
609
</translation>
610
    </message>
611
    <message>
612
        <source>changeColor(&quot;name&quot;, c, m, y, k)
613
 
614
Changes the color &quot;name&quot; to the specified CMYK value. The color value is
615
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
616
Color components should be in the range from 0 to 255.
617
 
618
May raise NotFoundError if the named color wasn&apos;t found.
619
May raise ValueError if an invalid color name is specified.
620
</source>
621
        <translation type="unfinished">changeColor(&quot;name&quot;, c, m, y, k)
622
 
623
Changes the colour &quot;name&quot; to the specified CMYK value. The colour value is
624
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
625
Colour components should be in the range from 0 to 255.
626
 
627
May raise NotFoundError if the named colour wasn&apos;t found.
628
May raise ValueError if an invalid colour name is specified.
629
</translation>
630
    </message>
631
    <message>
632
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
633
 
634
Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
635
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
636
&quot;None&quot; - transparent.
637
 
638
deleteColor works on the default document colors if there is no document open.
639
In that case, &quot;replace&quot;, if specified, has no effect.
640
 
641
May raise NotFoundError if a named color wasn&apos;t found.
642
May raise ValueError if an invalid color name is specified.
643
</source>
644
        <translation type="unfinished">deleteColor(&quot;name&quot;, &quot;replace&quot;)
645
 
646
Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
647
colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
648
&quot;None&quot; - transparent.
649
 
650
deleteColor works on the default document colours if there is no document open.
651
In that case, &quot;replace&quot;, if specified, has no effect.
652
 
653
May raise NotFoundError if a named colour wasn&apos;t found.
654
May raise ValueError if an invalid colour name is specified.
655
</translation>
656
    </message>
657
    <message>
658
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
659
 
660
Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
661
 
662
May raise NotFoundError if a named color wasn&apos;t found.
663
May raise ValueError if an invalid color name is specified.
664
</source>
665
        <translation type="unfinished">replaceColor(&quot;name&quot;, &quot;replace&quot;)
666
 
667
Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.
668
 
669
May raise NotFoundError if a named colour wasn&apos;t found.
670
May raise ValueError if an invalid colour name is specified.
671
</translation>
672
    </message>
673
    <message>
674
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot; ,haspreview, issave]) -&gt; string with filename
675
 
676
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
677
with the filter string &quot;filter&quot;. A default filename or file path can also
678
supplied, leave this string empty when you don&apos;t want to use it.  A value of
679
True for haspreview enables a small preview widget in the FileSelect box.  When
680
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
681
otherwise it acts like a &quot;File Open Dialog&quot;. The default for both of the
682
opional parameters is False.
683
 
684
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
685
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
686
 
687
Refer to the Qt-Documentation for QFileDialog for details on filters.
688
 
689
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
690
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
691
</source>
692
        <translation type="unfinished">fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot; ,haspreview, issave]) -&gt; string with filename
693
 
694
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
695
with the filter string &quot;filter&quot;. A default filename or file path can also
696
supplied, leave this string empty when you don&apos;t want to use it.  A value of
697
True for haspreview enables a small preview widget in the FileSelect box.  When
698
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
699
otherwise it acts like a &quot;File Open Dialog&quot;. The default for both of the
700
opional parameters is False.
701
 
702
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
703
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
704
 
705
Refer to the Qt-Documentation for QFileDialog for details on filters.
706
 
707
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
708
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
709
</translation>
710
    </message>
711
    <message>
712
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
713
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
714
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
715
 
716
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
717
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
718
button, OK, is displayed. Only the caption and message arguments are required,
719
though setting an icon and appropriate button(s) is strongly
720
recommended. The message text may contain simple HTML-like markup.
721
 
722
Returns the number of the button the user pressed. Button numbers start
723
at 1.
724
 
725
For the icon and the button parameters there are predefined constants available
726
with the same names as in the Qt Documentation. These are the BUTTON_* and
727
ICON_* constants defined in the module. There are also two extra constants that
728
can be binary-ORed with button constants:
729
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
730
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
731
 
732
Usage examples:
733
result = messageBox(&apos;Script failed&apos;,
734
                    &apos;This script only works when you have a text frame selected.&apos;,
735
                    ICON_ERROR)
736
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
737
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
738
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
739
 
740
Defined button and icon constants:
741
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
742
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
743
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
744
</source>
745
        <translation type="unfinished">messageBox(&quot;caption&quot;, &quot;message&quot;,
746
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
747
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
748
 
749
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
750
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
751
button, OK, is displayed. Only the caption and message arguments are required,
752
though setting an icon and appropriate button(s) is strongly
753
recommended. The message text may contain simple HTML-like markup.
754
 
755
Returns the number of the button the user pressed. Button numbers start
756
at 1.
757
 
758
For the icon and the button parameters there are predefined constants available
759
with the same names as in the Qt Documentation. These are the BUTTON_* and
760
ICON_* constants defined in the module. There are also two extra constants that
761
can be binary-ORed with button constants:
762
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
763
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
764
 
765
Usage examples:
766
result = messageBox(&apos;Script failed&apos;,
767
                    &apos;This script only works when you have a text frame selected.&apos;,
768
                    ICON_ERROR)
769
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
770
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
771
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
772
 
773
Defined button and icon constants:
774
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
775
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
776
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
777
</translation>
778
    </message>
779
    <message>
780
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string
781
 
782
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
783
Parameters: window title, text in the window and optional &apos;default&apos; value.
784
 
785
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
786
</source>
787
        <translation type="unfinished">valueDialog(caption, message [,defaultvalue]) -&gt; string
788
 
789
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
790
Parameters: window title, text in the window and optional &apos;default&apos; value.
791
 
792
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
793
</translation>
794
    </message>
795
    <message>
796
        <source>closeDoc()
797
 
798
Closes the current document without prompting to save.
799
 
800
May throw NoDocOpenError if there is no document to close
801
</source>
802
        <translation type="unfinished">closeDoc()
803
 
804
Closes the current document without prompting to save.
805
 
806
May throw NoDocOpenError if there is no document to close
807
</translation>
808
    </message>
809
    <message>
810
        <source>haveDoc() -&gt; bool
811
 
812
Returns true if there is a document open.
813
</source>
814
        <translation type="unfinished">haveDoc() -&gt; bool
815
 
816
Returns true if there is a document open.
817
</translation>
818
    </message>
819
    <message>
820
        <source>openDoc(&quot;name&quot;)
821
 
822
Opens the document &quot;name&quot;.
823
 
824
May raise ScribusError if the document could not be opened.
825
</source>
826
        <translation type="unfinished">openDoc(&quot;name&quot;)
827
 
828
Opens the document &quot;name&quot;.
829
 
830
May raise ScribusError if the document could not be opened.
831
</translation>
832
    </message>
833
    <message>
834
        <source>saveDoc()
835
 
836
Saves the current document with its current name, returns true if successful.
837
If the document has not already been saved, this may bring up an interactive
838
save file dialog.
839
 
840
If the save fails, there is currently no way to tell.
841
</source>
842
        <translation type="unfinished">saveDoc()
843
 
844
Saves the current document with its current name, returns true if successful.
845
If the document has not already been saved, this may bring up an interactive
846
save file dialog.
847
 
848
If the save fails, there is currently no way to tell.
849
</translation>
850
    </message>
851
    <message>
852
        <source>saveDocAs(&quot;name&quot;)
853
 
854
Saves the current document under the new name &quot;name&quot; (which may be a full or
855
relative path).
856
 
857
May raise ScribusError if the save fails.
858
</source>
859
        <translation type="unfinished">saveDocAs(&quot;name&quot;)
860
 
861
Saves the current document under the new name &quot;name&quot; (which may be a full or
862
relative path).
863
 
864
May raise ScribusError if the save fails.
865
</translation>
866
    </message>
867
    <message>
868
        <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
869
 
870
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
871
strings.
872
</source>
873
        <translation type="unfinished">saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
874
 
875
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
876
strings.
877
</translation>
878
    </message>
879
    <message>
880
        <source>setMargins(lr, rr, tr, br)
881
 
882
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
883
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
884
constants.
885
</source>
886
        <translation type="unfinished">setMargins(lr, rr, tr, br)
887
 
888
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
889
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
890
constants.
891
</translation>
892
    </message>
893
    <message>
894
        <source>setUnit(type)
895
 
896
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
897
defined as constants UNIT_&lt;type&gt;.
898
 
899
May raise ValueError if an invalid unit is passed.
900
</source>
901
        <translation type="unfinished">setUnit(type)
902
 
903
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
904
defined as constants UNIT_&lt;type&gt;.
905
 
906
May raise ValueError if an invalid unit is passed.
907
</translation>
908
    </message>
909
    <message>
910
        <source>getUnit() -&gt; integer (Scribus unit constant)
911
 
912
Returns the measurement units of the document. The returned value will be one
913
of the UNIT_* constants:
914
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
915
</source>
916
        <translation type="unfinished">getUnit() -&gt; integer (Scribus unit constant)
917
 
918
Returns the measurement units of the document. The returned value will be one
919
of the UNIT_* constants:
920
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
921
</translation>
922
    </message>
923
    <message>
924
        <source>loadStylesFromFile(&quot;filename&quot;)
925
 
926
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
927
current document.
928
</source>
929
        <translation type="unfinished">loadStylesFromFile(&quot;filename&quot;)
930
 
931
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
932
current document.
933
</translation>
934
    </message>
935
    <message>
936
        <source>setDocType(facingPages, firstPageLeft)
937
 
938
Sets the document type. To get facing pages set the first parameter to
939
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
940
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
941
a right page use FIRSTPAGERIGHT.
942
</source>
943
        <translation type="unfinished">setDocType(facingPages, firstPageLeft)
944
 
945
Sets the document type. To get facing pages set the first parameter to
946
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
947
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
948
a right page use FIRSTPAGERIGHT.
949
</translation>
950
    </message>
951
    <message>
952
        <source>getLineColor([&quot;name&quot;]) -&gt; string
953
 
954
Returns the name of the line color of the object &quot;name&quot;.
955
If &quot;name&quot; is not given the currently selected item is used.
956
</source>
957
        <translation type="unfinished">getLineColor([&quot;name&quot;]) -&gt; string
958
 
959
Returns the name of the line colour of the object &quot;name&quot;.
960
If &quot;name&quot; is not given the currently selected item is used.
961
</translation>
962
    </message>
963
    <message>
964
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer
965
 
966
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
967
is not given the currently selected Item is used.
968
</source>
969
        <translation type="unfinished">getLineWidth([&quot;name&quot;]) -&gt; integer
970
 
971
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
972
is not given the currently selected Item is used.
973
</translation>
974
    </message>
975
    <message>
976
        <source>getLineShade([&quot;name&quot;]) -&gt; integer
977
 
978
Returns the shading value of the line color of the object &quot;name&quot;.
979
If &quot;name&quot; is not given the currently selected item is used.
980
</source>
981
        <translation type="unfinished">getLineShade([&quot;name&quot;]) -&gt; integer
982
 
983
Returns the shading value of the line colour of the object &quot;name&quot;.
984
If &quot;name&quot; is not given the currently selected item is used.
985
</translation>
986
    </message>
987
    <message>
988
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
989
 
990
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
991
the currently selected item is used.  The join types are:
992
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
993
</source>
994
        <translation type="unfinished">getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
995
 
996
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
997
the currently selected item is used.  The join types are:
998
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
999
</translation>
1000
    </message>
1001
    <message>
1002
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
1003
 
1004
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1005
currently selected item is used. The cap types are:
1006
CAP_FLAT, CAP_ROUND, CAP_SQUARE
1007
</source>
1008
        <translation type="unfinished">getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
1009
 
1010
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1011
currently selected item is used. The cap types are:
1012
CAP_FLAT, CAP_ROUND, CAP_SQUARE
1013
</translation>
1014
    </message>
1015
    <message>
1016
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
1017
 
1018
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1019
currently selected item is used. Line style constants are:
1020
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
1021
</source>
1022
        <translation type="unfinished">getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
1023
 
1024
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
1025
currently selected item is used. Line style constants are:
1026
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
1027
</translation>
1028
    </message>
1029
    <message>
1030
        <source>getFillShade([&quot;name&quot;]) -&gt; integer
1031
 
1032
Returns the shading value of the fill color of the object &quot;name&quot;.
1033
If &quot;name&quot; is not given the currently selected item is used.
1034
</source>
1035
        <translation type="unfinished">getFillShade([&quot;name&quot;]) -&gt; integer
1036
 
1037
Returns the shading value of the fill colour of the object &quot;name&quot;.
1038
If &quot;name&quot; is not given the currently selected item is used.
1039
</translation>
1040
    </message>
1041
    <message>
1042
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
1043
 
1044
Returns a (x, y) tuple containing the scaling values of the image frame
1045
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
1046
</source>
1047
        <translation type="unfinished">getImageScale([&quot;name&quot;]) -&gt; (x,y)
1048
 
1049
Returns a (x, y) tuple containing the scaling values of the image frame
1050
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
1051
</translation>
1052
    </message>
1053
    <message>
1054
        <source>getImageName([&quot;name&quot;]) -&gt; string
1055
 
1056
Returns the filename for the image in the image frame. If &quot;name&quot; is not
1057
given the currently selected item is used.
1058
</source>
1059
        <translation type="unfinished">getImageName([&quot;name&quot;]) -&gt; string
1060
 
1061
Returns the filename for the image in the image frame. If &quot;name&quot; is not
1062
given the currently selected item is used.
1063
</translation>
1064
    </message>
1065
    <message>
1066
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)
1067
 
1068
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
1069
If &quot;name&quot; is not given the currently selected item is used. The size is
1070
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
1071
for reference.
1072
</source>
1073
        <translation type="unfinished">getSize([&quot;name&quot;]) -&gt; (width,height)
1074
 
1075
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
1076
If &quot;name&quot; is not given the currently selected item is used. The size is
1077
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
1078
for reference.
1079
</translation>
1080
    </message>
1081
    <message>
1082
        <source>getRotation([&quot;name&quot;]) -&gt; integer
1083
 
1084
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
1085
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
1086
is used.
1087
</source>
1088
        <translation type="unfinished">getRotation([&quot;name&quot;]) -&gt; integer
1089
 
1090
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
1091
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
1092
is used.
1093
</translation>
1094
    </message>
1095
    <message>
1096
        <source>getAllObjects() -&gt; list
1097
 
1098
Returns a list containing the names of all objects on the current page.
1099
</source>
1100
        <translation type="unfinished">getAllObjects() -&gt; list
1101
 
1102
Returns a list containing the names of all objects on the current page.
1103
</translation>
1104
    </message>
1105
    <message>
1106
        <source>moveObjectAbs(x, y [, &quot;name&quot;])
1107
 
1108
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
1109
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
1110
is not given the currently selected item is used.  If the object &quot;name&quot;
1111
belongs to a group, the whole group is moved.
1112
</source>
1113
        <translation type="unfinished">moveObjectAbs(x, y [, &quot;name&quot;])
1114
 
1115
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
1116
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
1117
is not given the currently selected item is used.  If the object &quot;name&quot;
1118
belongs to a group, the whole group is moved.
1119
</translation>
1120
    </message>
1121
    <message>
1122
        <source>rotateObject(rot [, &quot;name&quot;])
1123
 
1124
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
1125
rotated by the vertex that is currently selected as the rotation point - by
1126
default, the top left vertext at zero rotation. Positive values mean counter
1127
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
1128
given the currently selected item is used.
1129
</source>
1130
        <translation type="unfinished">rotateObject(rot [, &quot;name&quot;])
1131
 
1132
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
1133
rotated by the vertex that is currently selected as the rotation point - by
1134
default, the top left vertext at zero rotation. Positive values mean counter
1135
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
1136
given the currently selected item is used.
1137
</translation>
1138
    </message>
1139
    <message>
1140
        <source>sizeObject(width, height [, &quot;name&quot;])
1141
 
1142
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
1143
is not given the currently selected item is used.
1144
</source>
1145
        <translation type="unfinished">sizeObject(width, height [, &quot;name&quot;])
1146
 
1147
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
1148
is not given the currently selected item is used.
1149
</translation>
1150
    </message>
1151
    <message>
1152
        <source>getSelectedObject([nr]) -&gt; string
1153
 
1154
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
1155
of the selected object, e.g. 0 means the first selected object, 1 means the
1156
second selected Object and so on.
1157
</source>
1158
        <translation type="unfinished">getSelectedObject([nr]) -&gt; string
1159
 
1160
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
1161
of the selected object, e.g. 0 means the first selected object, 1 means the
1162
second selected Object and so on.
1163
</translation>
1164
    </message>
1165
    <message>
1166
        <source>selectionCount() -&gt; integer
1167
 
1168
Returns the number of selected objects.
1169
</source>
1170
        <translation type="unfinished">selectionCount() -&gt; integer
1171
 
1172
Returns the number of selected objects.
1173
</translation>
1174
    </message>
1175
    <message>
1176
        <source>selectObject(&quot;name&quot;)
1177
 
1178
Selects the object with the given &quot;name&quot;.
1179
</source>
1180
        <translation type="unfinished">selectObject(&quot;name&quot;)
1181
 
1182
Selects the object with the given &quot;name&quot;.
1183
</translation>
1184
    </message>
1185
    <message>
1186
        <source>deselectAll()
1187
 
1188
Deselects all objects in the whole document.
1189
</source>
1190
        <translation type="unfinished">deselectAll()
1191
 
1192
Deselects all objects in the whole document.
1193
</translation>
1194
    </message>
1195
    <message>
1196
        <source>groupObjects(list)
1197
 
1198
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
1199
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
1200
items are used.
1201
</source>
1202
        <translation type="unfinished">groupObjects(list)
1203
 
1204
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
1205
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
1206
items are used.
1207
</translation>
1208
    </message>
1209
    <message>
1210
        <source>unGroupObjects(&quot;name&quot;)
1211
 
1212
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
1213
        <translation type="unfinished">unGroupObjects(&quot;name&quot;)
1214
 
1215
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
1216
    </message>
1217
    <message>
1218
        <source>scaleGroup(factor [,&quot;name&quot;])
1219
 
1220
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
1221
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1222
scales the group to 50 % of its original size, a value of 1.5 scales the group
1223
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
1224
0. If &quot;name&quot; is not given the currently selected item is used.
1225
 
1226
May raise ValueError if an invalid scale factor is passed.
1227
</source>
1228
        <translation type="unfinished">scaleGroup(factor [,&quot;name&quot;])
1229
 
1230
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
1231
the group, values smaller than 1 make the group smaller e.g a value of 0.5
1232
scales the group to 50 % of its original size, a value of 1.5 scales the group
1233
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
1234
0. If &quot;name&quot; is not given the currently selected item is used.
1235
 
1236
May raise ValueError if an invalid scale factor is passed.
1237
</translation>
1238
    </message>
1239
    <message>
1240
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
1241
 
1242
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
1243
not given the currently selected item is used.
1244
 
1245
May raise WrongFrameTypeError if the target frame is not an image frame
1246
</source>
1247
        <translation type="unfinished">loadImage(&quot;filename&quot; [, &quot;name&quot;])
1248
 
1249
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
1250
not given the currently selected item is used.
1251
 
1252
May raise WrongFrameTypeError if the target frame is not an image frame
1253
</translation>
1254
    </message>
1255
    <message>
1256
        <source>scaleImage(x, y [, &quot;name&quot;])
1257
 
1258
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
1259
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1260
means 100 %.
1261
 
1262
May raise WrongFrameTypeError if the target frame is not an image frame
1263
</source>
1264
        <translation type="unfinished">scaleImage(x, y [, &quot;name&quot;])
1265
 
1266
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
1267
If &quot;name&quot; is not given the currently selected item is used. A number of 1
1268
means 100 %.
1269
 
1270
May raise WrongFrameTypeError if the target frame is not an image frame
1271
</translation>
1272
    </message>
1273
    <message>
1274
        <source>lockObject([&quot;name&quot;]) -&gt; bool
1275
 
1276
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
1277
If &quot;name&quot; is not given the currently selected item is used. Returns true
1278
if locked.
1279
</source>
1280
        <translation type="unfinished">lockObject([&quot;name&quot;]) -&gt; bool
1281
 
1282
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
1283
If &quot;name&quot; is not given the currently selected item is used. Returns true
1284
if locked.
1285
</translation>
1286
    </message>
1287
    <message>
1288
        <source>isLocked([&quot;name&quot;]) -&gt; bool
1289
 
1290
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
1291
currently selected item is used.
1292
</source>
1293
        <translation type="unfinished">isLocked([&quot;name&quot;]) -&gt; bool
1294
 
1295
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
1296
currently selected item is used.
1297
</translation>
1298
    </message>
1299
    <message>
1300
        <source>getFontNames() -&gt; list
1301
 
1302
Returns a list with the names of all available fonts.
1303
</source>
1304
        <translation type="unfinished">getFontNames() -&gt; list
1305
 
1306
Returns a list with the names of all available fonts.
1307
</translation>
1308
    </message>
1309
    <message>
1310
        <source>getXFontNames() -&gt; list of tuples
1311
 
1312
Returns a larger font info. It&apos;s a list of the tuples with:
1313
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1314
</source>
1315
        <translation type="unfinished">getXFontNames() -&gt; list of tuples
1316
 
1317
Returns a larger font info. It&apos;s a list of the tuples with:
1318
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1319
</translation>
1320
    </message>
1321
    <message>
1322
        <source>rendeFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size) -&gt; bool
1323
 
1324
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1325
Image is saved into &quot;filename&quot;. Returns true when success.
1326
 
1327
May raise NotFoundError if the specified font can&apos;t be found.
1328
May raise ValueError if an empty sample or filename is passed.
1329
</source>
1330
        <translation type="unfinished">rendeFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size) -&gt; bool
1331
 
1332
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1333
Image is saved into &quot;filename&quot;. Returns true when success.
1334
 
1335
May raise NotFoundError if the specified font can&apos;t be found.
1336
May raise ValueError if an empty sample or filename is passed.
1337
</translation>
1338
    </message>
1339
    <message>
1340
        <source>getLayers() -&gt; list
1341
 
1342
Returns a list with the names of all defined layers.
1343
</source>
1344
        <translation type="unfinished">getLayers() -&gt; list
1345
 
1346
Returns a list with the names of all defined layers.
1347
</translation>
1348
    </message>
1349
    <message>
1350
        <source>setActiveLayer(&quot;name&quot;)
1351
 
1352
Sets the active layer to the layer named &quot;name&quot;.
1353
 
1354
May raise NotFoundError if the layer can&apos;t be found.
1355
May raise ValueError if the layer name isn&apos;t acceptable.
1356
</source>
1357
        <translation type="unfinished">setActiveLayer(&quot;name&quot;)
1358
 
1359
Sets the active layer to the layer named &quot;name&quot;.
1360
 
1361
May raise NotFoundError if the layer can&apos;t be found.
1362
May raise ValueError if the layer name isn&apos;t acceptable.
1363
</translation>
1364
    </message>
1365
    <message>
1366
        <source>getActiveLayer() -&gt; string
1367
 
1368
Returns the name of the current active layer.
1369
</source>
1370
        <translation type="unfinished">getActiveLayer() -&gt; string
1371
 
1372
Returns the name of the current active layer.
1373
</translation>
1374
    </message>
1375
    <message>
1376
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
1377
 
1378
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
1379
If &quot;name&quot; is not given the currently selected item is used.
1380
 
1381
May raise NotFoundError if the layer can&apos;t be found.
1382
May raise ValueError if the layer name isn&apos;t acceptable.
1383
</source>
1384
        <translation type="unfinished">sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
1385
 
1386
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
1387
If &quot;name&quot; is not given the currently selected item is used.
1388
 
1389
May raise NotFoundError if the layer can&apos;t be found.
1390
May raise ValueError if the layer name isn&apos;t acceptable.
1391
</translation>
1392
    </message>
1393
    <message>
1394
        <source>setLayerVisible(&quot;layer&quot;, visible)
1395
 
1396
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
1397
the layer is invisible.
1398
 
1399
May raise NotFoundError if the layer can&apos;t be found.
1400
May raise ValueError if the layer name isn&apos;t acceptable.
1401
</source>
1402
        <translation type="unfinished">setLayerVisible(&quot;layer&quot;, visible)
1403
 
1404
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
1405
the layer is invisible.
1406
 
1407
May raise NotFoundError if the layer can&apos;t be found.
1408
May raise ValueError if the layer name isn&apos;t acceptable.
1409
</translation>
1410
    </message>
1411
    <message>
1412
        <source>setLayerPrintable(&quot;layer&quot;, printable)
1413
 
1414
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
1415
false the layer won&apos;t be printed.
1416
 
1417
May raise NotFoundError if the layer can&apos;t be found.
1418
May raise ValueError if the layer name isn&apos;t acceptable.
1419
</source>
1420
        <translation type="unfinished">setLayerPrintable(&quot;layer&quot;, printable)
1421
 
1422
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
1423
false the layer won&apos;t be printed.
1424
 
1425
May raise NotFoundError if the layer can&apos;t be found.
1426
May raise ValueError if the layer name isn&apos;t acceptable.
1427
</translation>
1428
    </message>
1429
    <message>
1430
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1431
 
1432
Returns wether the Layer &quot;layer&quot; is visible or not, a value of True means
1433
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1434
&quot;layer&quot; is invisible.
1435
 
1436
May raise NotFoundError if the layer can&apos;t be found.
1437
May raise ValueError if the layer name isn&apos;t acceptable.
1438
</source>
1439
        <translation type="unfinished">isLayerPrintable(&quot;layer&quot;) -&gt; bool
1440
 
1441
Returns wether the Layer &quot;layer&quot; is visible or not, a value of True means
1442
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1443
&quot;layer&quot; is invisible.
1444
 
1445
May raise NotFoundError if the layer can&apos;t be found.
1446
May raise ValueError if the layer name isn&apos;t acceptable.
1447
</translation>
1448
    </message>
1449
    <message>
1450
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1451
 
1452
Returns wether the layer &quot;layer&quot; is printable or not, a value of True means
1453
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1454
the layer &quot;layer&quot; is disabled.
1455
 
1456
May raise NotFoundError if the layer can&apos;t be found.
1457
May raise ValueError if the layer name isn&apos;t acceptable.
1458
</source>
1459
        <translation type="unfinished">isLayerPrintable(&quot;layer&quot;) -&gt; bool
1460
 
1461
Returns wether the layer &quot;layer&quot; is printable or not, a value of True means
1462
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1463
the layer &quot;layer&quot; is disabled.
1464
 
1465
May raise NotFoundError if the layer can&apos;t be found.
1466
May raise ValueError if the layer name isn&apos;t acceptable.
1467
</translation>
1468
    </message>
1469
    <message>
1470
        <source>deleteLayer(&quot;layer&quot;)
1471
 
1472
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
1473
exists or if it&apos;s the only layer in the document.
1474
 
1475
May raise NotFoundError if the layer can&apos;t be found.
1476
May raise ValueError if the layer name isn&apos;t acceptable.
1477
</source>
1478
        <translation type="unfinished">deleteLayer(&quot;layer&quot;)
1479
 
1480
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
1481
exists or if it&apos;s the only layer in the document.
1482
 
1483
May raise NotFoundError if the layer can&apos;t be found.
1484
May raise ValueError if the layer name isn&apos;t acceptable.
1485
</translation>
1486
    </message>
1487
    <message>
1488
        <source>createLayer(layer)
1489
 
1490
Creates a new layer with the name &quot;name&quot;.
1491
 
1492
May raise ValueError if the layer name isn&apos;t acceptable.
1493
</source>
1494
        <translation type="unfinished">createLayer(layer)
1495
 
1496
Creates a new layer with the name &quot;name&quot;.
1497
 
1498
May raise ValueError if the layer name isn&apos;t acceptable.
1499
</translation>
1500
    </message>
1501
    <message>
1502
        <source>getGuiLanguage() -&gt; string
1503
 
1504
Returns a string with the -lang value.
1505
</source>
1506
        <translation type="unfinished">getGuiLanguage() -&gt; string
1507
 
1508
Returns a string with the -lang value.
1509
</translation>
1510
    </message>
1511
    <message>
1512
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
1513
 
1514
Creates a new ellipse on the current page and returns its name.
1515
The coordinates are given in the current measurement units of the document
1516
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
1517
because you need this name for further referencing of that object. If &quot;name&quot;
1518
is not given Scribus will create one for you.
1519
 
1520
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1521
</source>
1522
        <translation type="unfinished">createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
1523
 
1524
Creates a new ellipse on the current page and returns its name.
1525
The coordinates are given in the current measurement units of the document
1526
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
1527
because you need this name for further referencing of that object. If &quot;name&quot;
1528
is not given Scribus will create one for you.
1529
 
1530
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1531
</translation>
1532
    </message>
1533
    <message>
1534
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
1535
 
1536
Creates a new picture frame on the current page and returns its name. The
1537
coordinates are given in the current measurement units of the document.
1538
&quot;name&quot; should be a unique identifier for the object because you need this
1539
name for further access to that object. If &quot;name&quot; is not given Scribus will
1540
create one for you.
1541
 
1542
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1543
</source>
1544
        <translation type="unfinished">createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
1545
 
1546
Creates a new picture frame on the current page and returns its name. The
1547
coordinates are given in the current measurement units of the document.
1548
&quot;name&quot; should be a unique identifier for the object because you need this
1549
name for further access to that object. If &quot;name&quot; is not given Scribus will
1550
create one for you.
1551
 
1552
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1553
</translation>
1554
    </message>
1555
    <message>
1556
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
1557
 
1558
Creates a new text frame on the actual page and returns its name.
1559
The coordinates are given in the actual measurement unit of the document (see
1560
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1561
you need this name for further referencing of that object. If &quot;name&quot; is not
1562
given Scribus will create one for you.
1563
 
1564
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1565
</source>
1566
        <translation type="unfinished">createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
1567
 
1568
Creates a new text frame on the actual page and returns its name.
1569
The coordinates are given in the actual measurement unit of the document (see
1570
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1571
you need this name for further referencing of that object. If &quot;name&quot; is not
1572
given Scribus will create one for you.
1573
 
1574
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1575
</translation>
1576
    </message>
1577
    <message>
1578
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
1579
 
1580
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1581
its name. The coordinates are given in the current measurement unit of the
1582
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
1583
object because you need this name for further access to that object. If
1584
&quot;name&quot; is not given Scribus will create one for you.
1585
 
1586
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1587
</source>
1588
        <translation type="unfinished">createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
1589
 
1590
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1591
its name. The coordinates are given in the current measurement unit of the
1592
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
1593
object because you need this name for further access to that object. If
1594
&quot;name&quot; is not given Scribus will create one for you.
1595
 
1596
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1597
</translation>
1598
    </message>
1599
    <message>
1600
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
1601
 
1602
Creates a new polyline and returns its name. The points for the polyline are
1603
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1604
The coordinates are given in the current measurement units of the document (see
1605
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1606
you need this name for further access to that object. If &quot;name&quot; is not given
1607
Scribus will create one for you.
1608
 
1609
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1610
May raise ValueError if an insufficient number of points is passed or if
1611
the number of values passed don&apos;t group into points without leftovers.
1612
</source>
1613
        <translation type="unfinished">createPolyLine(list, [&quot;name&quot;]) -&gt; string
1614
 
1615
Creates a new polyline and returns its name. The points for the polyline are
1616
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1617
The coordinates are given in the current measurement units of the document (see
1618
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
1619
you need this name for further access to that object. If &quot;name&quot; is not given
1620
Scribus will create one for you.
1621
 
1622
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1623
May raise ValueError if an insufficient number of points is passed or if
1624
the number of values passed don&apos;t group into points without leftovers.
1625
</translation>
1626
    </message>
1627
    <message>
1628
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
1629
 
1630
Creates a new polygon and returns its name. The points for the polygon are
1631
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1632
At least three points are required. There is no need to repeat the first point
1633
to close the polygon. The polygon is automatically closed by connecting the
1634
first and the last point.  The coordinates are given in the current measurement
1635
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
1636
identifier for the object because you need this name for further access to that
1637
object. If &quot;name&quot; is not given Scribus will create one for you.
1638
 
1639
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1640
May raise ValueError if an insufficient number of points is passed or if
1641
the number of values passed don&apos;t group into points without leftovers.
1642
</source>
1643
        <translation type="unfinished">createPolygon(list, [&quot;name&quot;]) -&gt; string
1644
 
1645
Creates a new polygon and returns its name. The points for the polygon are
1646
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
1647
At least three points are required. There is no need to repeat the first point
1648
to close the polygon. The polygon is automatically closed by connecting the
1649
first and the last point.  The coordinates are given in the current measurement
1650
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
1651
identifier for the object because you need this name for further access to that
1652
object. If &quot;name&quot; is not given Scribus will create one for you.
1653
 
1654
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1655
May raise ValueError if an insufficient number of points is passed or if
1656
the number of values passed don&apos;t group into points without leftovers.
1657
</translation>
1658
    </message>
1659
    <message>
1660
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
1661
 
1662
Creates a new bezier curve and returns its name. The points for the bezier
1663
curve are stored in the list &quot;list&quot; in the following order:
1664
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1665
In the points list, x and y mean the x and y coordinates of the point and kx
1666
and ky meaning the control point for the curve.  The coordinates are given in
1667
the current measurement units of the document (see UNIT constants). &quot;name&quot;
1668
should be a unique identifier for the object because you need this name for
1669
further access to that object. If &quot;name&quot; is not given Scribus will create one
1670
for you.
1671
 
1672
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1673
May raise ValueError if an insufficient number of points is passed or if
1674
the number of values passed don&apos;t group into points without leftovers.
1675
</source>
1676
        <translation type="unfinished">createBezierLine(list, [&quot;name&quot;]) -&gt; string
1677
 
1678
Creates a new bezier curve and returns its name. The points for the bezier
1679
curve are stored in the list &quot;list&quot; in the following order:
1680
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1681
In the points list, x and y mean the x and y coordinates of the point and kx
1682
and ky meaning the control point for the curve.  The coordinates are given in
1683
the current measurement units of the document (see UNIT constants). &quot;name&quot;
1684
should be a unique identifier for the object because you need this name for
1685
further access to that object. If &quot;name&quot; is not given Scribus will create one
1686
for you.
1687
 
1688
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1689
May raise ValueError if an insufficient number of points is passed or if
1690
the number of values passed don&apos;t group into points without leftovers.
1691
</translation>
1692
    </message>
1693
    <message>
1694
        <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
1695
 
1696
Creates a new pathText by merging the two objects &quot;textbox&quot; and
1697
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1698
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
1699
unique identifier for the object because you need this name for further access
1700
to that object. If &quot;name&quot; is not given Scribus will create one for you.
1701
 
1702
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1703
May raise NotFoundError if one or both of the named base object don&apos;t exist.
1704
</source>
1705
        <translation type="unfinished">createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
1706
 
1707
Creates a new pathText by merging the two objects &quot;textbox&quot; and
1708
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
1709
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
1710
unique identifier for the object because you need this name for further access
1711
to that object. If &quot;name&quot; is not given Scribus will create one for you.
1712
 
1713
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
1714
May raise NotFoundError if one or both of the named base object don&apos;t exist.
1715
</translation>
1716
    </message>
1717
    <message>
1718
        <source>deleteObject([&quot;name&quot;])
1719
 
1720
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
1721
selected item is deleted.
1722
</source>
1723
        <translation type="unfinished">deleteObject([&quot;name&quot;])
1724
 
1725
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
1726
selected item is deleted.
1727
</translation>
1728
    </message>
1729
    <message>
1730
        <source>textFlowsAroundFrame(&quot;name&quot; [, state])
1731
 
1732
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1733
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1734
is not passed, text flow is toggled.
1735
</source>
1736
        <translation type="unfinished">textFlowsAroundFrame(&quot;name&quot; [, state])
1737
 
1738
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1739
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1740
is not passed, text flow is toggled.
1741
</translation>
1742
    </message>
1743
    <message>
1744
        <source>objectExists([&quot;name&quot;]) -&gt; bool
1745
 
1746
Test if an object with specified name really exists in the document.
1747
The optional parameter is the object name. When no object name is given,
1748
returns True if there is something selected.
1749
</source>
1750
        <translation type="unfinished">objectExists([&quot;name&quot;]) -&gt; bool
1751
 
1752
Test if an object with specified name really exists in the document.
1753
The optional parameter is the object name. When no object name is given,
1754
returns True if there is something selected.
1755
</translation>
1756
    </message>
1757
    <message>
1758
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])
1759
 
1760
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1761
given, it&apos;s applied on the selected object.
1762
</source>
1763
        <translation type="unfinished">setStyle(&quot;style&quot; [, &quot;name&quot;])
1764
 
1765
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1766
given, it&apos;s applied on the selected object.
1767
</translation>
1768
    </message>
1769
    <message>
1770
        <source>getAllStyles() -&gt; list
1771
 
1772
Return a list of the names of all paragraph styles in the current document.
1773
</source>
1774
        <translation type="unfinished">getAllStyles() -&gt; list
1775
 
1776
Return a list of the names of all paragraph styles in the current document.
1777
</translation>
1778
    </message>
1779
    <message>
1780
        <source>currentPage() -&gt; integer
1781
 
1782
Returns the number of the current working page. Page numbers are counted from 1
1783
upwards, no matter what the displayed first page number of your document is.
1784
</source>
1785
        <translation type="unfinished">currentPage() -&gt; integer
1786
 
1787
Returns the number of the current working page. Page numbers are counted from 1
1788
upwards, no matter what the displayed first page number of your document is.
1789
</translation>
1790
    </message>
1791
    <message>
1792
        <source>redrawAll()
1793
 
1794
Redraws all pages.
1795
</source>
1796
        <translation type="unfinished">redrawAll()
1797
 
1798
Redraws all pages.
1799
</translation>
1800
    </message>
1801
    <message>
1802
        <source>savePageAsEPS(&quot;name&quot;)
1803
 
1804
Saves the current page as an EPS to the file &quot;name&quot;.
1805
 
1806
May raise ScribusError if the save failed.
1807
</source>
1808
        <translation type="unfinished">savePageAsEPS(&quot;name&quot;)
1809
 
1810
Saves the current page as an EPS to the file &quot;name&quot;.
1811
 
1812
May raise ScribusError if the save failed.
1813
</translation>
1814
    </message>
1815
    <message>
1816
        <source>deletePage(nr)
1817
 
1818
Deletes the given page. Does nothing if the document contains only one page.
1819
Page numbers are counted from 1 upwards, no matter what the displayed first
1820
page number is.
1821
 
1822
May raise IndexError if the page number is out of range
1823
</source>
1824
        <translation type="unfinished">deletePage(nr)
1825
 
1826
Deletes the given page. Does nothing if the document contains only one page.
1827
Page numbers are counted from 1 upwards, no matter what the displayed first
1828
page number is.
1829
 
1830
May raise IndexError if the page number is out of range
1831
</translation>
1832
    </message>
1833
    <message>
1834
        <source>gotoPage(nr)
1835
 
1836
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
1837
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
1838
just sets the page that script commands will operates on.
1839
 
1840
May raise IndexError if the page number is out of range.
1841
</source>
1842
        <translation type="unfinished">gotoPage(nr)
1843
 
1844
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
1845
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
1846
just sets the page that script commands will operates on.
1847
 
1848
May raise IndexError if the page number is out of range.
1849
</translation>
1850
    </message>
1851
    <message>
1852
        <source>pageCount() -&gt; integer
1853
 
1854
Returns the number of pages in the document.
1855
</source>
1856
        <translation type="unfinished">pageCount() -&gt; integer
1857
 
1858
Returns the number of pages in the document.
1859
</translation>
1860
    </message>
1861
    <message>
1862
        <source>getHGuides() -&gt; list
1863
 
1864
Returns a list containing positions of the horizontal guides. Values are in the
1865
document&apos;s current units - see UNIT_&lt;type&gt; constants.
1866
</source>
1867
        <translation type="unfinished">getHGuides() -&gt; list
1868
 
1869
Returns a list containing positions of the horizontal guides. Values are in the
1870
document&apos;s current units - see UNIT_&lt;type&gt; constants.
1871
</translation>
1872
    </message>
1873
    <message>
1874
        <source>setHGuides(list)
1875
 
1876
Sets horizontal guides. Input parameter must be a list of guide positions
1877
measured in the current document units - see UNIT_&lt;type&gt; constants.
1878
 
1879
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
1880
         setHGuides([90,250]) # replace current guides entirely
1881
</source>
1882
        <translation type="unfinished">setHGuides(list)
1883
 
1884
Sets horizontal guides. Input parameter must be a list of guide positions
1885
measured in the current document units - see UNIT_&lt;type&gt; constants.
1886
 
1887
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
1888
         setHGuides([90,250]) # replace current guides entirely
1889
</translation>
1890
    </message>
1891
    <message>
1892
        <source>getVGuides()
1893
 
1894
See getHGuides.
1895
</source>
1896
        <translation type="unfinished">getVGuides()
1897
 
1898
See getHGuides.
1899
</translation>
1900
    </message>
1901
    <message>
1902
        <source>setVGuides()
1903
 
1904
See setHGuides.
1905
</source>
1906
        <translation type="unfinished">setVGuides()
1907
 
1908
See setHGuides.
1909
</translation>
1910
    </message>
1911
    <message>
1912
        <source>getPageSize() -&gt; tuple
1913
 
1914
Returns a tuple with page dimensions measured in the document&apos;s current units.
1915
See UNIT_&lt;type&gt; constants and getPageMargins()
1916
</source>
1917
        <translation type="unfinished">getPageSize() -&gt; tuple
1918
 
1919
Returns a tuple with page dimensions measured in the document&apos;s current units.
1920
See UNIT_&lt;type&gt; constants and getPageMargins()
1921
</translation>
1922
    </message>
1923
    <message>
1924
        <source>getPageItems() -&gt; list
1925
 
1926
Returns a list of tuples with items on the current page. The tuple is:
1927
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
1928
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
1929
the page...
1930
</source>
1931
        <translation type="unfinished">getPageItems() -&gt; list
1932
 
1933
Returns a list of tuples with items on the current page. The tuple is:
1934
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
1935
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
1936
the page...
1937
</translation>
1938
    </message>
1939
    <message>
1940
        <source>getPageMargins()
1941
 
1942
Returns the page margins as a (left, right, top, bottom) tuple in the current
1943
units. See UNIT_&lt;type&gt; constants and getPageSize().
1944
</source>
1945
        <translation type="unfinished">getPageMargins()
1946
 
1947
Returns the page margins as a (left, right, top, bottom) tuple in the current
1948
units. See UNIT_&lt;type&gt; constants and getPageSize().
1949
</translation>
1950
    </message>
1951
    <message>
1952
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
1953
 
1954
Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
1955
is the name of one of the defined colors. If &quot;name&quot; is not given the
1956
currently selected item is used.
1957
</source>
1958
        <translation type="unfinished">setFillColor(&quot;colour&quot;, [&quot;name&quot;])
1959
 
1960
Sets the fill colour of the object &quot;name&quot; to the colour &quot;colour&quot;. &quot;colour&quot;
1961
is the name of one of the defined colours. If &quot;name&quot; is not given the
1962
currently selected item is used.
1963
</translation>
1964
    </message>
1965
    <message>
1966
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
1967
 
1968
Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
1969
is not given the currently selected item is used.
1970
</source>
1971
        <translation type="unfinished">setLineColor(&quot;colour&quot;, [&quot;name&quot;])
1972
 
1973
Sets the line colour of the object &quot;name&quot; to the colour &quot;colour&quot;. If &quot;name&quot;
1974
is not given the currently selected item is used.
1975
</translation>
1976
    </message>
1977
    <message>
1978
        <source>setLineWidth(width, [&quot;name&quot;])
1979
 
1980
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
1981
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1982
given the currently selected item is used.
1983
 
1984
May raise ValueError if the line width is out of bounds.
1985
</source>
1986
        <translation type="unfinished">setLineWidth(width, [&quot;name&quot;])
1987
 
1988
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
1989
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1990
given the currently selected item is used.
1991
 
1992
May raise ValueError if the line width is out of bounds.
1993
</translation>
1994
    </message>
1995
    <message>
1996
        <source>setLineShade(shade, [&quot;name&quot;])
1997
 
1998
Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
1999
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2000
(full color intensity). If &quot;name&quot; is not given the currently selected item
2001
is used.
2002
 
2003
May raise ValueError if the line shade is out of bounds.
2004
</source>
2005
        <translation type="unfinished">setLineShade(shade, [&quot;name&quot;])
2006
 
2007
Sets the shading of the line colour of the object &quot;name&quot; to &quot;shade&quot;.
2008
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2009
(full colour intensity). If &quot;name&quot; is not given the currently selected item
2010
is used.
2011
 
2012
May raise ValueError if the line shade is out of bounds.
2013
</translation>
2014
    </message>
2015
    <message>
2016
        <source>setLineJoin(join, [&quot;name&quot;])
2017
 
2018
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
2019
If &quot;name&quot; is not given the currently selected item is used. There are
2020
predefined constants for join - JOIN_&lt;type&gt;.
2021
</source>
2022
        <translation type="unfinished">setLineJoin(join, [&quot;name&quot;])
2023
 
2024
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
2025
If &quot;name&quot; is not given the currently selected item is used. There are
2026
predefined constants for join - JOIN_&lt;type&gt;.
2027
</translation>
2028
    </message>
2029
    <message>
2030
        <source>setLineEnd(endtype, [&quot;name&quot;])
2031
 
2032
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
2033
If &quot;name&quot; is not given the currently selected item is used. There are
2034
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
2035
</source>
2036
        <translation type="unfinished">setLineEnd(endtype, [&quot;name&quot;])
2037
 
2038
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
2039
If &quot;name&quot; is not given the currently selected item is used. There are
2040
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
2041
</translation>
2042
    </message>
2043
    <message>
2044
        <source>setLineStyle(style, [&quot;name&quot;])
2045
 
2046
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
2047
is not given the currently selected item is used. There are predefined
2048
constants for &quot;style&quot; - LINE_&lt;style&gt;.
2049
</source>
2050
        <translation type="unfinished">setLineStyle(style, [&quot;name&quot;])
2051
 
2052
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
2053
is not given the currently selected item is used. There are predefined
2054
constants for &quot;style&quot; - LINE_&lt;style&gt;.
2055
</translation>
2056
    </message>
2057
    <message>
2058
        <source>setFillShade(shade, [&quot;name&quot;])
2059
 
2060
Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
2061
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2062
(full Color intensity). If &quot;name&quot; is not given the currently selected
2063
Item is used.
2064
 
2065
May raise ValueError if the fill shade is out of bounds.
2066
</source>
2067
        <translation type="unfinished">setFillShade(shade, [&quot;name&quot;])
2068
 
2069
Sets the shading of the fill colour of the object &quot;name&quot; to &quot;shade&quot;.
2070
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
2071
(full Colour intensity). If &quot;name&quot; is not given the currently selected
2072
Item is used.
2073
 
2074
May raise ValueError if the fill shade is out of bounds.
2075
</translation>
2076
    </message>
2077
    <message>
2078
        <source>setCornerRadius(radius, [&quot;name&quot;])
2079
 
2080
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
2081
in points. If &quot;name&quot; is not given the currently selected item is used.
2082
 
2083
May raise ValueError if the corner radius is negative.
2084
</source>
2085
        <translation type="unfinished">setCornerRadius(radius, [&quot;name&quot;])
2086
 
2087
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
2088
in points. If &quot;name&quot; is not given the currently selected item is used.
2089
 
2090
May raise ValueError if the corner radius is negative.
2091
</translation>
2092
    </message>
2093
    <message>
2094
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
2095
 
2096
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
2097
If &quot;name&quot; is not given the currently selected item is used.
2098
 
2099
May raise NotFoundError if the line style doesn&apos;t exist.
2100
</source>
2101
        <translation type="unfinished">setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
2102
 
2103
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
2104
If &quot;name&quot; is not given the currently selected item is used.
2105
 
2106
May raise NotFoundError if the line style doesn&apos;t exist.
2107
</translation>
2108
    </message>
2109
    <message>
2110
        <source>progressReset()
2111
 
2112
Cleans up the Scribus progress bar previous settings. It is called before the
2113
new progress bar use. See progressSet.
2114
</source>
2115
        <translation type="unfinished">progressReset()
2116
 
2117
Cleans up the Scribus progress bar previous settings. It is called before the
2118
new progress bar use. See progressSet.
2119
</translation>
2120
    </message>
2121
    <message>
2122
        <source>progressTotal(max)
2123
 
2124
Sets the progress bar&apos;s maximum steps value to the specified number.
2125
See progressSet.
2126
</source>
2127
        <translation type="unfinished">progressTotal(max)
2128
 
2129
Sets the progress bar&apos;s maximum steps value to the specified number.
2130
See progressSet.
2131
</translation>
2132
    </message>
2133
    <message>
2134
        <source>progressSet(nr)
2135
 
2136
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
2137
progressTotal. The progress bar uses the concept of steps; you give it the
2138
total number of steps and the number of steps completed so far and it will
2139
display the percentage of steps that have been completed. You can specify the
2140
total number of steps with progressTotal(). The current number of steps is set
2141
with progressSet(). The progress bar can be rewound to the beginning with
2142
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
2143
</source>
2144
        <translation type="unfinished">progressSet(nr)
2145
 
2146
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
2147
progressTotal. The progress bar uses the concept of steps; you give it the
2148
total number of steps and the number of steps completed so far and it will
2149
display the percentage of steps that have been completed. You can specify the
2150
total number of steps with progressTotal(). The current number of steps is set
2151
with progressSet(). The progress bar can be rewound to the beginning with
2152
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
2153
</translation>
2154
    </message>
2155
    <message>
2156
        <source>setCursor()
2157
 
2158
[UNSUPPORTED!] This might break things, so steer clear for now.
2159
</source>
2160
        <translation type="unfinished">setCursor()
2161
 
2162
[UNSUPPORTED!] This might break things, so steer clear for now.
2163
</translation>
2164
    </message>
2165
    <message>
2166
        <source>docChanged(bool)
2167
 
2168
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
2169
useful to call this procedure when you&apos;re changing the document, because Scribus
2170
won&apos;t automatically notice when you change the document using a script.
2171
</source>
2172
        <translation type="unfinished">docChanged(bool)
2173
 
2174
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
2175
useful to call this procedure when you&apos;re changing the document, because Scribus
2176
won&apos;t automatically notice when you change the document using a script.
2177
</translation>
2178
    </message>
2179
    <message>
2180
        <source>defineColor(&quot;name&quot;, c, m, y, k)
2181
 
2182
Defines a new color &quot;name&quot;. The color Value is defined via four components:
2183
c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in
2184
the range from 0 to 255.
2185
 
2186
May raise ValueError if an invalid color name is specified.
2187
</source>
2188
        <translation type="unfinished">defineColor(&quot;name&quot;, c, m, y, k)
2189
 
2190
Defines a new colour &quot;name&quot;. The colour Value is defined via four components:
2191
c = Cyan, m = Magenta, y = Yellow and k = Black. Colour components should be in
2192
the range from 0 to 255.
2193
 
2194
May raise ValueError if an invalid colour name is specified.
2195
</translation>
2196
    </message>
2197
    <message>
2198
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer
2199
 
2200
Returns the corner radius of the object &quot;name&quot;. The radius is
2201
expressed in points. If &quot;name&quot; is not given the currently
2202
selected item is used.
2203
</source>
2204
        <translation type="unfinished">getCornerRadius([&quot;name&quot;]) -&gt; integer
2205
 
2206
Returns the corner radius of the object &quot;name&quot;. The radius is
2207
expressed in points. If &quot;name&quot; is not given the currently
2208
selected item is used.
2209
</translation>
2210
    </message>
2211
    <message>
2212
        <source>getPosition([&quot;name&quot;]) -&gt; (x,y)
2213
 
2214
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
2215
If &quot;name&quot; is not given the currently selected item is used.
2216
The position is expressed in the actual measurement unit of the document
2217
- see UNIT_&lt;type&gt; for reference.
2218
</source>
2219
        <translation type="unfinished">getPosition([&quot;name&quot;]) -&gt; (x,y)
2220
 
2221
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
2222
If &quot;name&quot; is not given the currently selected item is used.
2223
The position is expressed in the actual measurement unit of the document
2224
- see UNIT_&lt;type&gt; for reference.
2225
</translation>
2226
    </message>
2227
    <message>
2228
        <source>rotateObjectAbs(rot [, &quot;name&quot;])
2229
 
2230
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive values
2231
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
2232
selected item is used.
2233
</source>
2234
        <translation type="unfinished">rotateObjectAbs(rot [, &quot;name&quot;])
2235
 
2236
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive values
2237
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
2238
selected item is used.
2239
</translation>
2240
    </message>
2241
</context>
2242
<context>
2243
    <name>About</name>
2244
    <message>
2245
        <source>%1. %2 %3 </source>
2246
        <translation type="unfinished">%1. %2 %3 </translation>
2247
    </message>
2248
    <message>
2249
        <source>Scribus Version %1
2250
%2 %3</source>
2251
        <translation type="unfinished">Scribus Version %1
2252
%2 %3</translation>
2253
    </message>
2254
    <message>
2255
        <source>Build-ID:</source>
2256
        <translation type="unfinished">Build-ID:</translation>
2257
    </message>
2258
    <message>
2259
        <source>Contributions from:</source>
2260
        <translation type="unfinished">Contributions from:</translation>
2261
    </message>
2262
    <message>
2263
        <source>Windows port:</source>
2264
        <translation type="unfinished">Windows port:</translation>
2265
    </message>
2266
    <message>
2267
        <source>German:</source>
2268
        <translation type="unfinished">German:</translation>
2269
    </message>
2270
    <message>
2271
        <source>French:</source>
2272
        <translation type="unfinished">French:</translation>
2273
    </message>
2274
    <message>
2275
        <source>Italian:</source>
2276
        <translation type="unfinished">Italian:</translation>
2277
    </message>
2278
    <message>
2279
        <source>Hungarian:</source>
2280
        <translation type="unfinished">Hungarian:</translation>
2281
    </message>
2282
    <message>
2283
        <source>Ukrainian:</source>
2284
        <translation type="unfinished">Ukrainian:</translation>
2285
    </message>
2286
    <message>
2287
        <source>Bulgarian:</source>
2288
        <translation type="unfinished">Bulgarian:</translation>
2289
    </message>
2290
    <message>
2291
        <source>Galician:</source>
2292
        <translation type="unfinished">Galician:</translation>
2293
    </message>
2294
    <message>
2295
        <source>Turkish:</source>
2296
        <translation type="unfinished">Turkish:</translation>
2297
    </message>
2298
    <message>
2299
        <source>Lithuanian:</source>
2300
        <translation type="unfinished">Lithuanian:</translation>
2301
    </message>
2302
    <message>
2303
        <source>Polish:</source>
2304
        <translation type="unfinished">Polish:</translation>
2305
    </message>
2306
    <message>
2307
        <source>Czech:</source>
2308
        <translation type="unfinished">Czech:</translation>
2309
    </message>
2310
    <message>
2311
        <source>Slovak:</source>
2312
        <translation type="unfinished">Slovak:</translation>
2313
    </message>
2314
    <message>
2315
        <source>Danish:</source>
2316
        <translation type="unfinished">Danish:</translation>
2317
    </message>
2318
    <message>
2319
        <source>Norwegian:</source>
2320
        <translation type="unfinished">Norwegian:</translation>
2321
    </message>
2322
    <message>
2323
        <source>Welsh:</source>
2324
        <translation type="unfinished">Welsh:</translation>
2325
    </message>
2326
    <message>
2327
        <source>Russian:</source>
2328
        <translation type="unfinished">Russian:</translation>
2329
    </message>
2330
    <message>
2331
        <source>Brazilian:</source>
2332
        <translation type="unfinished">Brazilian:</translation>
2333
    </message>
2334
    <message>
2335
        <source>Finnish:</source>
2336
        <translation type="unfinished">Finnish:</translation>
2337
    </message>
2338
    <message>
2339
        <source>Basque:</source>
2340
        <translation type="unfinished">Basque:</translation>
2341
    </message>
2342
    <message>
2343
        <source>Slovenian:</source>
2344
        <translation type="unfinished">Slovenian:</translation>
2345
    </message>
2346
    <message>
2347
        <source>This panel shows the version, build date and
2348
 compiled in library support in Scribus
2349
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
2350
Missing library support is indicated by a *</source>
2351
        <translation type="unfinished">This panel shows the version, build date and
2352
 compiled in library support in Scribus
2353
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
2354
Missing library support is indicated by a *</translation>
2355
    </message>
2356
    <message>
2357
        <source>&amp;About</source>
2358
        <translation type="unfinished">&amp;About</translation>
2359
    </message>
2360
    <message>
2361
        <source>A&amp;uthors</source>
2362
        <translation type="unfinished">A&amp;uthors</translation>
2363
    </message>
2364
    <message>
2365
        <source>&amp;Translations</source>
2366
        <translation type="unfinished">&amp;Translations</translation>
2367
    </message>
2368
    <message>
2369
        <source>&amp;Online</source>
2370
        <translation type="unfinished">&amp;Online</translation>
2371
    </message>
2372
    <message>
2373
        <source>&amp;Close</source>
2374
        <translation type="unfinished">&amp;Close</translation>
2375
    </message>
2376
    <message>
2377
        <source>Development Team:</source>
2378
        <translation type="unfinished">Development Team:</translation>
2379
    </message>
2380
    <message>
2381
        <source>Official Documentation:</source>
2382
        <translation type="unfinished">Official Documentation:</translation>
2383
    </message>
2384
    <message>
2385
        <source>Other Documentation:</source>
2386
        <translation type="unfinished">Other Documentation:</translation>
2387
    </message>
2388
    <message>
2389
        <source>English (British):</source>
2390
        <translation type="unfinished">English (British):</translation>
2391
    </message>
2392
    <message>
2393
        <source>Swedish:</source>
2394
        <translation type="unfinished">Swedish:</translation>
2395
    </message>
2396
    <message>
2397
        <source>Homepage</source>
2398
        <translation type="unfinished">Homepage</translation>
2399
    </message>
2400
    <message>
2401
        <source>Online Reference</source>
2402
        <translation type="unfinished">Online Reference</translation>
2403
    </message>
2404
    <message>
2405
        <source>Bugs and Feature Requests</source>
2406
        <translation type="unfinished">Bugs and Feature Requests</translation>
2407
    </message>
2408
    <message>
2409
        <source>Mailing List</source>
2410
        <translation type="unfinished">Mailing List</translation>
2411
    </message>
2412
    <message>
2413
        <source>Official Translations and Translators:</source>
2414
        <translation type="unfinished">Official Translations and Translators:</translation>
2415
    </message>
2416
    <message>
2417
        <source>Esperanto:</source>
2418
        <translation type="unfinished">Esperanto:</translation>
2419
    </message>
2420
    <message>
2421
        <source>Korean:</source>
2422
        <translation type="unfinished">Korean:</translation>
2423
    </message>
2424
    <message>
2425
        <source>Serbian:</source>
2426
        <translation type="unfinished">Serbian:</translation>
2427
    </message>
2428
    <message>
2429
        <source>Spanish:</source>
2430
        <translation type="unfinished">Spanish:</translation>
2431
    </message>
2432
    <message>
2433
        <source>Previous Translation Contributors:</source>
2434
        <translation type="unfinished">Previous Translation Contributors:</translation>
2435
    </message>
2436
    <message>
2437
        <source>Catalan:</source>
2438
        <translation type="unfinished">Catalan:</translation>
2439
    </message>
2440
    <message>
2441
        <source>About Scribus %1</source>
2442
        <translation type="unfinished">About Scribus %1</translation>
2443
    </message>
2444
</context>
2445
<context>
2446
    <name>AdvOptions</name>
2447
    <message>
2448
        <source>Advanced Options</source>
2449
        <translation type="unfinished">Advanced Options</translation>
2450
    </message>
2451
    <message>
2452
        <source>Creates PostScript Level 3</source>
2453
        <translation type="unfinished">Creates PostScript Level 3</translation>
2454
    </message>
2455
    <message>
2456
        <source>Creates PostScript Level 2 only, beware,
2457
this can create huge files</source>
2458
        <translation type="unfinished">Creates PostScript Level 2 only, beware,
2459
this can create huge files</translation>
2460
    </message>
2461
    <message>
2462
        <source>Creates PostScript Level 1 only, beware,
2463
this can create huge files</source>
2464
        <translation type="unfinished">Creates PostScript Level 1 only, beware,
2465
this can create huge files</translation>
2466
    </message>
2467
    <message>
2468
        <source>Mirror Page(s) &amp;Horizontal</source>
2469
        <translation type="unfinished">Mirror Page(s) &amp;Horizontal</translation>
2470
    </message>
2471
    <message>
2472
        <source>Mirror Page(s) &amp;Vertical</source>
2473
        <translation type="unfinished">Mirror Page(s) &amp;Vertical</translation>
2474
    </message>
2475
    <message>
2476
        <source>Apply &amp;ICC Profiles</source>
2477
        <translation type="unfinished">Apply &amp;ICC Profiles</translation>
2478
    </message>
2479
    <message>
2480
        <source>PostScript Level &amp;1</source>
2481
        <translation type="unfinished">PostScript Level &amp;1</translation>
2482
    </message>
2483
    <message>
2484
        <source>PostScript Level &amp;2</source>
2485
        <translation type="unfinished">PostScript Level &amp;2</translation>
2486
    </message>
2487
    <message>
2488
        <source>PostScript Level &amp;3</source>
2489
        <translation type="unfinished">PostScript Level &amp;3</translation>
2490
    </message>
2491
    <message>
2492
        <source>&amp;OK</source>
2493
        <translation type="unfinished">&amp;OK</translation>
2494
    </message>
2495
    <message>
2496
        <source>&amp;Cancel</source>
2497
        <translation type="unfinished">&amp;Cancel</translation>
2498
    </message>
2499
    <message>
2500
        <source>Apply Under Color &amp;Removal</source>
2501
        <translation type="unfinished">Apply Under Colour &amp;Removal</translation>
2502
    </message>
2503
    <message>
2504
        <source>A way of switching off some of the gray shades which are composed
2505
of cyan, yellow and magenta and using black instead.
2506
UCR most affects parts of images which are neutral and/or dark tones
2507
which are close to the gray. Use of this may improve printing some images
2508
and some experimentation and testing is need on a case by case basis.
2509
UCR reduces the possibility of over saturation with CMY inks.</source>
2510
        <translation type="unfinished">A way of switching off some of the grey shades which are composed
2511
of cyan, yellow and magenta and using black instead.
2512
UCR most affects parts of images which are neutral and/or dark tones
2513
which are close to the grey. Use of this may improve printing some images
2514
and some experimentation and testing is need on a case by case basis.
2515
UCR reduces the possibility of over saturation with CMY inks.</translation>
2516
    </message>
2517
</context>
2518
<context>
2519
    <name>Align</name>
2520
    <message>
2521
        <source>Distribute/Align</source>
2522
        <translation type="unfinished">Distribute/Align</translation>
2523
    </message>
2524
    <message>
2525
        <source>Align</source>
2526
        <translation type="unfinished">Align</translation>
2527
    </message>
2528
    <message>
2529
        <source>Horizontal</source>
2530
        <translation type="unfinished">Horizontal</translation>
2531
    </message>
2532
    <message>
2533
        <source>Left Sides</source>
2534
        <translation type="unfinished">Left Sides</translation>
2535
    </message>
2536
    <message>
2537
        <source>Middles</source>
2538
        <translation type="unfinished">Middles</translation>
2539
    </message>
2540
    <message>
2541
        <source>Right Sides</source>
2542
        <translation type="unfinished">Right Sides</translation>
2543
    </message>
2544
    <message>
2545
        <source>Vertical</source>
2546
        <translation type="unfinished">Vertical</translation>
2547
    </message>
2548
    <message>
2549
        <source>Top Sides</source>
2550
        <translation type="unfinished">Top Sides</translation>
2551
    </message>
2552
    <message>
2553
        <source>Bottom Sides</source>
2554
        <translation type="unfinished">Bottom Sides</translation>
2555
    </message>
2556
    <message>
2557
        <source> mm</source>
2558
        <translation type="unfinished">mm</translation>
2559
    </message>
2560
    <message>
2561
        <source> in</source>
2562
        <translation type="unfinished">in</translation>
2563
    </message>
2564
    <message>
2565
        <source> p</source>
2566
        <translation type="unfinished">p</translation>
2567
    </message>
2568
    <message>
2569
        <source>&amp;OK</source>
2570
        <translation type="unfinished">&amp;OK</translation>
2571
    </message>
2572
    <message>
2573
        <source>&amp;Apply</source>
2574
        <translation type="unfinished">&amp;Apply</translation>
2575
    </message>
2576
    <message>
2577
        <source>&amp;Cancel</source>
2578
        <translation type="unfinished">&amp;Cancel</translation>
2579
    </message>
2580
    <message>
2581
        <source>&amp;Between:</source>
2582
        <translation type="unfinished">&amp;Between:</translation>
2583
    </message>
2584
    <message>
2585
        <source>A&amp;lign</source>
2586
        <translation type="unfinished">A&amp;lign</translation>
2587
    </message>
2588
    <message>
2589
        <source>Di&amp;splacement</source>
2590
        <translation type="unfinished">Di&amp;splacement</translation>
2591
    </message>
2592
    <message>
2593
        <source>Distribute &amp;Evenly</source>
2594
        <translation type="unfinished">Distribute &amp;Evenly</translation>
2595
    </message>
2596
    <message>
2597
        <source>Bet&amp;ween:</source>
2598
        <translation type="unfinished">Bet&amp;ween:</translation>
2599
    </message>
2600
    <message>
2601
        <source>Do &amp;Not Change</source>
2602
        <translation type="unfinished">Do &amp;Not Change</translation>
2603
    </message>
2604
    <message>
2605
        <source>Al&amp;ign</source>
2606
        <translation type="unfinished">Al&amp;ign</translation>
2607
    </message>
2608
    <message>
2609
        <source>Dis&amp;placement</source>
2610
        <translation type="unfinished">Dis&amp;placement</translation>
2611
    </message>
2612
    <message>
2613
        <source> pt</source>
2614
        <translation type="unfinished"> pt</translation>
2615
    </message>
2616
    <message>
2617
        <source>Distribute E&amp;venly</source>
2618
        <translation type="unfinished">Distribute E&amp;venly</translation>
2619
    </message>
2620
    <message>
2621
        <source>&amp;Do Not Change</source>
2622
        <translation type="unfinished">&amp;Do Not Change</translation>
2623
    </message>
2624
</context>
2625
<context>
2626
    <name>AlignSelect</name>
2627
    <message>
2628
        <source>Align Text Left</source>
2629
        <translation type="unfinished">Align Text Left</translation>
2630
    </message>
2631
    <message>
2632
        <source>Align Text Right</source>
2633
        <translation type="unfinished">Align Text Right</translation>
2634
    </message>
2635
    <message>
2636
        <source>Align Text Center</source>
2637
        <translation type="unfinished">Align Text Centre</translation>
2638
    </message>
2639
    <message>
2640
        <source>Align Text Justified</source>
2641
        <translation type="unfinished">Align Text Justified</translation>
2642
    </message>
2643
    <message>
2644
        <source>Align Text Forced Justified</source>
2645
        <translation type="unfinished">Align Text Forced Justified</translation>
2646
    </message>
2647
</context>
2648
<context>
2649
    <name>Annot</name>
2650
    <message>
2651
        <source>Field Properties</source>
2652
        <translation type="unfinished">Field Properties</translation>
2653
    </message>
2654
    <message>
2655
        <source>Type:</source>
2656
        <translation type="unfinished">Type:</translation>
2657
    </message>
2658
    <message>
2659
        <source>Button</source>
2660
        <translation type="unfinished">Button</translation>
2661
    </message>
2662
    <message>
2663
        <source>Text Field</source>
2664
        <translation type="unfinished">Text Field</translation>
2665
    </message>
2666
    <message>
2667
        <source>Check Box</source>
2668
        <translation type="unfinished">Check Box</translation>
2669
    </message>
2670
    <message>
2671
        <source>Combo Box</source>
2672
        <translation type="unfinished">Combo Box</translation>
2673
    </message>
2674
    <message>
2675
        <source>List Box</source>
2676
        <translation type="unfinished">List Box</translation>
2677
    </message>
2678
    <message>
2679
        <source>Properties</source>
2680
        <translation type="unfinished">Properties</translation>
2681
    </message>
2682
    <message>
2683
        <source>Name:</source>
2684
        <translation type="unfinished">Name:</translation>
2685
    </message>
2686
    <message>
2687
        <source>Tool-Tip:</source>
2688
        <translation type="unfinished">Tool-Tip:</translation>
2689
    </message>
2690
    <message>
2691
        <source>Text</source>
2692
        <translation type="unfinished">Text</translation>
2693
    </message>
2694
    <message>
2695
        <source>Border</source>
2696
        <translation type="unfinished">Border</translation>
2697
    </message>
2698
    <message>
2699
        <source>Color:</source>
2700
        <translation type="unfinished">Colour:</translation>
2701
    </message>
2702
    <message>
2703
        <source>None</source>
2704
        <translation type="unfinished">None</translation>
2705
    </message>
2706
    <message>
2707
        <source>Width:</source>
2708
        <translation type="unfinished">Width:</translation>
2709
    </message>
2710
    <message>
2711
        <source>Thin</source>
2712
        <translation type="unfinished">Thin</translation>
2713
    </message>
2714
    <message>
2715
        <source>Normal</source>
2716
        <translation type="unfinished">Normal</translation>
2717
    </message>
2718
    <message>
2719
        <source>Wide</source>
2720
        <translation type="unfinished">Wide</translation>
2721
    </message>
2722
    <message>
2723
        <source>Style:</source>
2724
        <translation type="unfinished">Style:</translation>
2725
    </message>
2726
    <message>
2727
        <source>Solid</source>
2728
        <translation type="unfinished">Solid</translation>
2729
    </message>
2730
    <message>
2731
        <source>Dashed</source>
2732
        <translation type="unfinished">Dashed</translation>
2733
    </message>
2734
    <message>
2735
        <source>Underline</source>
2736
        <translation type="unfinished">Underline</translation>
2737
    </message>
2738
    <message>
2739
        <source>Beveled</source>
2740
        <translation type="unfinished">Beveled</translation>
2741
    </message>
2742
    <message>
2743
        <source>Inset</source>
2744
        <translation type="unfinished">Inset</translation>
2745
    </message>
2746
    <message>
2747
        <source>Other</source>
2748
        <translation type="unfinished">Other</translation>
2749
    </message>
2750
    <message>
2751
        <source>Read Only</source>
2752
        <translation type="unfinished">Read Only</translation>
2753
    </message>
2754
    <message>
2755
        <source>Required</source>
2756
        <translation type="unfinished">Required</translation>
2757
    </message>
2758
    <message>
2759
        <source>Don&apos;t Export Value</source>
2760
        <translation type="unfinished">Don&apos;t Export Value</translation>
2761
    </message>
2762
    <message>
2763
        <source>Visibility:</source>
2764
        <translation type="unfinished">Visibility:</translation>
2765
    </message>
2766
    <message>
2767
        <source>Visible</source>
2768
        <translation type="unfinished">Visible</translation>
2769
    </message>
2770
    <message>
2771
        <source>Hidden</source>
2772
        <translation type="unfinished">Hidden</translation>
2773
    </message>
2774
    <message>
2775
        <source>No Print</source>
2776
        <translation type="unfinished">No Print</translation>
2777
    </message>
2778
    <message>
2779
        <source>No View</source>
2780
        <translation type="unfinished">No View</translation>
2781
    </message>
2782
    <message>
2783
        <source>Appearance</source>
2784
        <translation type="unfinished">Appearance</translation>
2785
    </message>
2786
    <message>
2787
        <source>Text for Button Down</source>
2788
        <translation type="unfinished">Text for Button Down</translation>
2789
    </message>
2790
    <message>
2791
        <source>Text for Roll Over</source>
2792
        <translation type="unfinished">Text for Roll Over</translation>
2793
    </message>
2794
    <message>
2795
        <source>Icons</source>
2796
        <translation type="unfinished">Icons</translation>
2797
    </message>
2798
    <message>
2799
        <source>Use Icons</source>
2800
        <translation type="unfinished">Use Icons</translation>
2801
    </message>
2802
    <message>
2803
        <source>Remove</source>
2804
        <translation type="unfinished">Remove</translation>
2805
    </message>
2806
    <message>
2807
        <source>Pressed</source>
2808
        <translation type="unfinished">Pressed</translation>
2809
    </message>
2810
    <message>
2811
        <source>Roll Over</source>
2812
        <translation type="unfinished">Roll Over</translation>
2813
    </message>
2814
    <message>
2815
        <source>Icon Placement...</source>
2816
        <translation type="unfinished">Icon Placement...</translation>
2817
    </message>
2818
    <message>
2819
        <source>Highlight</source>
2820
        <translation type="unfinished">Highlight</translation>
2821
    </message>
2822
    <message>
2823
        <source>Invert</source>
2824
        <translation type="unfinished">Invert</translation>
2825
    </message>
2826
    <message>
2827
        <source>Outlined</source>
2828
        <translation type="unfinished">Outlined</translation>
2829
    </message>
2830
    <message>
2831
        <source>Push</source>
2832
        <translation type="unfinished">Push</translation>
2833
    </message>
2834
    <message>
2835
        <source>Multi-Line</source>
2836
        <translation type="unfinished">Multi-Line</translation>
2837
    </message>
2838
    <message>
2839
        <source>Password</source>
2840
        <translation type="unfinished">Password</translation>
2841
    </message>
2842
    <message>
2843
        <source>Limit of</source>
2844
        <translation type="unfinished">Limit of</translation>
2845
    </message>
2846
    <message>
2847
        <source>Characters</source>
2848
        <translation type="unfinished">Characters</translation>
2849
    </message>
2850
    <message>
2851
        <source>Do Not Scroll</source>
2852
        <translation type="unfinished">Do Not Scroll</translation>
2853
    </message>
2854
    <message>
2855
        <source>Do Not Spell Check</source>
2856
        <translation type="unfinished">Do Not Spell Check</translation>
2857
    </message>
2858
    <message>
2859
        <source>Check Style:</source>
2860
        <translation type="unfinished">Check Style:</translation>
2861
    </message>
2862
    <message>
2863
        <source>Check</source>
2864
        <translation type="unfinished">Check</translation>
2865
    </message>
2866
    <message>
2867
        <source>Cross</source>
2868
        <translation type="unfinished">Cross</translation>
2869
    </message>
2870
    <message>
2871
        <source>Diamond</source>
2872
        <translation type="unfinished">Diamond</translation>
2873
    </message>
2874
    <message>
2875
        <source>Circle</source>
2876
        <translation type="unfinished">Circle</translation>
2877
    </message>
2878
    <message>
2879
        <source>Star</source>
2880
        <translation type="unfinished">Star</translation>
2881
    </message>
2882
    <message>
2883
        <source>Square</source>
2884
        <translation type="unfinished">Square</translation>
2885
    </message>
2886
    <message>
2887
        <source>Default is Checked</source>
2888
        <translation type="unfinished">Default is Checked</translation>
2889
    </message>
2890
    <message>
2891
        <source>Editable</source>
2892
        <translation type="unfinished">Editable</translation>
2893
    </message>
2894
    <message>
2895
        <source>Options</source>
2896
        <translation type="unfinished">Options</translation>
2897
    </message>
2898
    <message>
2899
        <source>Java Script</source>
2900
        <translation type="unfinished">Java Script</translation>
2901
    </message>
2902
    <message>
2903
        <source>Go To</source>
2904
        <translation type="unfinished">Go To</translation>
2905
    </message>
2906
    <message>
2907
        <source>Submit Form</source>
2908
        <translation type="unfinished">Submit Form</translation>
2909
    </message>
2910
    <message>
2911
        <source>Reset Form</source>
2912
        <translation type="unfinished">Reset Form</translation>
2913
    </message>
2914
    <message>
2915
        <source>Import Data</source>
2916
        <translation type="unfinished">Import Data</translation>
2917
    </message>
2918
    <message>
2919
        <source>Event:</source>
2920
        <translation type="unfinished">Event:</translation>
2921
    </message>
2922
    <message>
2923
        <source>Mouse Up</source>
2924
        <translation type="unfinished">Mouse Up</translation>
2925
    </message>
2926
    <message>
2927
        <source>Mouse Down</source>
2928
        <translation type="unfinished">Mouse Down</translation>
2929
    </message>
2930
    <message>
2931
        <source>Mouse Enter</source>
2932
        <translation type="unfinished">Mouse Enter</translation>
2933
    </message>
2934
    <message>
2935
        <source>Mouse Exit</source>
2936
        <translation type="unfinished">Mouse Exit</translation>
2937
    </message>
2938
    <message>
2939
        <source>On Focus</source>
2940
        <translation type="unfinished">On Focus</translation>
2941
    </message>
2942
    <message>
2943
        <source>On Blur</source>
2944
        <translation type="unfinished">On Blur</translation>
2945
    </message>
2946
    <message>
2947
        <source>Script:</source>
2948
        <translation type="unfinished">Script:</translation>
2949
    </message>
2950
    <message>
2951
        <source>Edit...</source>
2952
        <translation type="unfinished">Edit...</translation>
2953
    </message>
2954
    <message>
2955
        <source>Submit to URL:</source>
2956
        <translation type="unfinished">Submit to URL:</translation>
2957
    </message>
2958
    <message>
2959
        <source>Submit Data as HTML</source>
2960
        <translation type="unfinished">Submit Data as HTML</translation>
2961
    </message>
2962
    <message>
2963
        <source>Import Data from:</source>
2964
        <translation type="unfinished">Import Data from:</translation>
2965
    </message>
2966
    <message>
2967
        <source>Destination</source>
2968
        <translation type="unfinished">Destination</translation>
2969
    </message>
2970
    <message>
2971
        <source>To File:</source>
2972
        <translation type="unfinished">To File:</translation>
2973
    </message>
2974
    <message>
2975
        <source>Change...</source>
2976
        <translation type="unfinished">Change...</translation>
2977
    </message>
2978
    <message>
2979
        <source>Page:</source>
2980
        <translation type="unfinished">Page:</translation>
2981
    </message>
2982
    <message>
2983
        <source>X-Pos:</source>
2984
        <translation type="unfinished">X-Pos:</translation>
2985
    </message>
2986
    <message>
2987
        <source> pt</source>
2988
        <translation type="unfinished"> pt</translation>
2989
    </message>
2990
    <message>
2991
        <source>Y-Pos:</source>
2992
        <translation type="unfinished">Y-Pos:</translation>
2993
    </message>
2994
    <message>
2995
        <source>Action</source>
2996
        <translation type="unfinished">Action</translation>
2997
    </message>
2998
    <message>
2999
        <source>Field is formatted as:</source>
3000
        <translation type="unfinished">Field is formatted as:</translation>
3001
    </message>
3002
    <message>
3003
        <source>Plain</source>
3004
        <translation type="unfinished">Plain</translation>
3005
    </message>
3006
    <message>
3007
        <source>Number</source>
3008
        <translation type="unfinished">Number</translation>
3009
    </message>
3010
    <message>
3011
        <source>Percentage</source>
3012
        <translation type="unfinished">Percentage</translation>
3013
    </message>
3014
    <message>
3015
        <source>Date</source>
3016
        <translation type="unfinished">Date</translation>
3017
    </message>
3018
    <message>
3019
        <source>Time</source>
3020
        <translation type="unfinished">Time</translation>
3021
    </message>
3022
    <message>
3023
        <source>Custom</source>
3024
        <translation type="unfinished">Custom</translation>
3025
    </message>
3026
    <message>
3027
        <source>Number Format</source>
3028
        <translation type="unfinished">Number Format</translation>
3029
    </message>
3030
    <message>
3031
        <source>Decimals:</source>
3032
        <translation type="unfinished">Decimals:</translation>
3033
    </message>
3034
    <message>
3035
        <source>Use Currency Symbol</source>
3036
        <translation type="unfinished">Use Currency Symbol</translation>
3037
    </message>
3038
    <message>
3039
        <source>Prepend Currency Symbol</source>
3040
        <translation type="unfinished">Prepend Currency Symbol</translation>
3041
    </message>
3042
    <message>
3043
        <source>Formatting</source>
3044
        <translation type="unfinished">Formatting</translation>
3045
    </message>
3046
    <message>
3047
        <source>Percent Format</source>
3048
        <translation type="unfinished">Percent Format</translation>
3049
    </message>
3050
    <message>
3051
        <source>Date Format</source>
3052
        <translation type="unfinished">Date Format</translation>
3053
    </message>
3054
    <message>
3055
        <source>Time Format</source>
3056
        <translation type="unfinished">Time Format</translation>
3057
    </message>
3058
    <message>
3059
        <source>Custom Scripts</source>
3060
        <translation type="unfinished">Custom Scripts</translation>
3061
    </message>
3062
    <message>
3063
        <source>Format:</source>
3064
        <translation type="unfinished">Format:</translation>
3065
    </message>
3066
    <message>
3067
        <source>Keystroke:</source>
3068
        <translation type="unfinished">Keystroke:</translation>
3069
    </message>
3070
    <message>
3071
        <source>Format</source>
3072
        <translation type="unfinished">Format</translation>
3073
    </message>
3074
    <message>
3075
        <source>Value is not validated</source>
3076
        <translation type="unfinished">Value is not validated</translation>
3077
    </message>
3078
    <message>
3079
        <source>Value must be greater than or equal to:</source>
3080
        <translation type="unfinished">Value must be greater than or equal to:</translation>
3081
    </message>
3082
    <message>
3083
        <source>and less or equal to:</source>
3084
        <translation type="unfinished">and less or equal to:</translation>
3085
    </message>
3086
    <message>
3087
        <source>Custom validate script:</source>
3088
        <translation type="unfinished">Custom validate script:</translation>
3089
    </message>
3090
    <message>
3091
        <source>Validate</source>
3092
        <translation type="unfinished">Validate</translation>
3093
    </message>
3094
    <message>
3095
        <source>Value is not calculated</source>
3096
        <translation type="unfinished">Value is not calculated</translation>
3097
    </message>
3098
    <message>
3099
        <source>Value is the</source>
3100
        <translation type="unfinished">Value is the</translation>
3101
    </message>
3102
    <message>
3103
        <source>sum</source>
3104
        <translation type="unfinished">sum</translation>
3105
    </message>
3106
    <message>
3107
        <source>product</source>
3108
        <translation type="unfinished">product</translation>
3109
    </message>
3110
    <message>
3111
        <source>average</source>
3112
        <translation type="unfinished">average</translation>
3113
    </message>
3114
    <message>
3115
        <source>minimum</source>
3116
        <translation type="unfinished">minimum</translation>
3117
    </message>
3118
    <message>
3119
        <source>maximum</source>
3120
        <translation type="unfinished">maximum</translation>
3121
    </message>
3122
    <message>
3123
        <source>of the following fields:</source>
3124
        <translation type="unfinished">of the following fields:</translation>
3125
    </message>
3126
    <message>
3127
        <source>Pick...</source>
3128
        <translation type="unfinished">Pick...</translation>
3129
    </message>
3130
    <message>
3131
        <source>Custom calculation script:</source>
3132
        <translation type="unfinished">Custom calculation script:</translation>
3133
    </message>
3134
    <message>
3135
        <source>Calculate</source>
3136
        <translation type="unfinished">Calculate</translation>
3137
    </message>
3138
    <message>
3139
        <source>OK</source>
3140
        <translation type="unfinished">OK</translation>
3141
    </message>
3142
    <message>
3143
        <source>Cancel</source>
3144
        <translation type="unfinished">Cancel</translation>
3145
    </message>
3146
    <message>
3147
        <source>Enter a comma separated list of fields here</source>
3148
        <translation type="unfinished">Enter a comma separated list of fields here</translation>
3149
    </message>
3150
    <message>
3151
        <source>You need at least the Icon for Normal to use Icons for Buttons</source>
3152
        <translation type="unfinished">You need at least the Icon for Normal to use Icons for Buttons</translation>
3153
    </message>
3154
    <message>
3155
        <source>Open</source>
3156
        <translation type="unfinished">Open</translation>
3157
    </message>
3158
    <message>
3159
        <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
3160
        <translation type="unfinished">Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation>
3161
    </message>
3162
    <message>
3163
        <source>Example:</source>
3164
        <translation type="unfinished">Example:</translation>
3165
    </message>
3166
    <message>
3167
        <source>Selection Change</source>
3168
        <translation type="unfinished">Selection Change</translation>
3169
    </message>
3170
    <message>
3171
        <source>Font for use with PDF 1.3:</source>
3172
        <translation type="unfinished">Font for use with PDF 1.3:</translation>
3173
    </message>
3174
    <message>
3175
        <source>Flag is ignored for PDF 1.3</source>
3176
        <translation type="unfinished">Flag is ignored for PDF 1.3</translation>
3177
    </message>
3178
    <message>
3179
        <source>PDF Files (*.pdf);;All Files (*)</source>
3180
        <translation type="unfinished">PDF Files (*.pdf);;All Files (*)</translation>
3181
    </message>
3182
</context>
3183
<context>
3184
    <name>Annota</name>
3185
    <message>
3186
        <source>Annotation Properties</source>
3187
        <translation type="unfinished">Annotation Properties</translation>
3188
    </message>
3189
    <message>
3190
        <source>Text</source>
3191
        <translation type="unfinished">Text</translation>
3192
    </message>
3193
    <message>
3194
        <source>Link</source>
3195
        <translation type="unfinished">Link</translation>
3196
    </message>
3197
    <message>
3198
        <source>External Link</source>
3199
        <translation type="unfinished">External Link</translation>
3200
    </message>
3201
    <message>
3202
        <source>External Web-Link</source>
3203
        <translation type="unfinished">External Web-Link</translation>
3204
    </message>
3205
    <message>
3206
        <source>Destination</source>
3207
        <translation type="unfinished">Destination</translation>
3208
    </message>
3209
    <message>
3210
        <source> pt</source>
3211
        <translation type="unfinished"> pt</translation>
3212
    </message>
3213
    <message>
3214
        <source>Open</source>
3215
        <translation type="unfinished">Open</translation>
3216
    </message>
3217
    <message>
3218
        <source>PDF-Documents (*.pdf);;All Files (*)</source>
3219
        <translation type="unfinished">PDF-Documents (*.pdf);;All Files (*)</translation>
3220
    </message>
3221
    <message>
3222
        <source>&amp;Type:</source>
3223
        <translation type="unfinished">&amp;Type:</translation>
3224
    </message>
3225
    <message>
3226
        <source>C&amp;hange...</source>
3227
        <translation type="unfinished">C&amp;hange...</translation>
3228
    </message>
3229
    <message>
3230
        <source>&amp;Page:</source>
3231
        <translation type="unfinished">&amp;Page:</translation>
3232
    </message>
3233
    <message>
3234
        <source>&amp;X-Pos</source>
3235
        <translation type="unfinished">&amp;X-Pos</translation>
3236
    </message>
3237
    <message>
3238
        <source>&amp;Y-Pos:</source>
3239
        <translation type="unfinished">&amp;Y-Pos:</translation>
3240
    </message>
3241
    <message>
3242
        <source>&amp;OK</source>
3243
        <translation type="unfinished">&amp;OK</translation>
3244
    </message>
3245
    <message>
3246
        <source>&amp;Cancel</source>
3247
        <translation type="unfinished">&amp;Cancel</translation>
3248
    </message>
3249
</context>
3250
<context>
3251
    <name>ApplyT</name>
3252
    <message>
3253
        <source>Apply Template</source>
3254
        <translation type="unfinished">Apply Template</translation>
3255
    </message>
3256
    <message>
3257
        <source>Normal</source>
3258
        <translation type="unfinished">Normal</translation>
3259
    </message>
3260
    <message>
3261
        <source>&amp;Template:</source>
3262
        <translation type="unfinished">&amp;Template:</translation>
3263
    </message>
3264
    <message>
3265
        <source>Apply to &amp;Current Page</source>
3266
        <translation type="unfinished">Apply to &amp;Current Page</translation>
3267
    </message>
3268
    <message>
3269
        <source>Apply from &amp;Page:</source>
3270
        <translation type="unfinished">Apply from &amp;Page:</translation>
3271
    </message>
3272
    <message>
3273
        <source>To:</source>
3274
        <translation type="unfinished">To:</translation>
3275
    </message>
3276
    <message>
3277
        <source>&amp;OK</source>
3278
        <translation type="unfinished">&amp;OK</translation>
3279
    </message>
3280
    <message>
3281
        <source>&amp;Cancel</source>
3282
        <translation type="unfinished">&amp;Cancel</translation>
3283
    </message>
3284
    <message>
3285
        <source>Apply to all &amp;even Pages</source>
3286
        <translation type="unfinished">Apply to all &amp;even Pages</translation>
3287
    </message>
3288
    <message>
3289
        <source>Apply to all &amp;odd Pages</source>
3290
        <translation type="unfinished">Apply to all &amp;odd Pages</translation>
3291
    </message>
3292
</context>
3293
<context>
3294
    <name>Biblio</name>
3295
    <message>
3296
        <source>Scrapbook</source>
3297
        <translation type="unfinished">Scrapbook</translation>
3298
    </message>
3299
    <message>
3300
        <source>Scrapbooks (*.scs);;All Files (*)</source>
3301
        <translation type="unfinished">Scrapbooks (*.scs);;All Files (*)</translation>
3302
    </message>
3303
    <message>
3304
        <source>Delete</source>
3305
        <translation type="unfinished">Delete</translation>
3306
    </message>
3307
    <message>
3308
        <source>Object</source>
3309
        <translation type="unfinished">Object</translation>
3310
    </message>
3311
    <message>
3312
        <source>New Entry</source>
3313
        <translation type="unfinished">New Entry</translation>
3314
    </message>
3315
    <message>
3316
        <source>Rename</source>
3317
        <translation type="unfinished">Rename</translation>
3318
    </message>
3319
    <message>
3320
        <source>Warning</source>
3321
        <translation type="unfinished">Warning</translation>
3322
    </message>
3323
    <message>
3324
        <source>Name &quot;%1&quot; isn&apos;t unique.
3325
Please choose another.</source>
3326
        <translation type="unfinished">Name &quot;%1&quot; isn&apos;t unique.
3327
Please choose another.</translation>
3328
    </message>
3329
    <message>
3330
        <source>OK</source>
3331
        <translation type="unfinished">OK</translation>
3332
    </message>
3333
    <message>
3334
        <source>&amp;New</source>
3335
        <translation type="unfinished">&amp;New</translation>
3336
    </message>
3337
    <message>
3338
        <source>&amp;Load...</source>
3339
        <translation type="unfinished">&amp;Load...</translation>
3340
    </message>
3341
    <message>
3342
        <source>&amp;Save</source>
3343
        <translation type="unfinished">&amp;Save</translation>
3344
    </message>
3345
    <message>
3346
        <source>Save &amp;As...</source>
3347
        <translation type="unfinished">Save &amp;As...</translation>
3348
    </message>
3349
    <message>
3350
        <source>&amp;Close</source>
3351
        <translation type="unfinished">&amp;Close</translation>
3352
    </message>
3353
    <message>
3354
        <source>&amp;Small</source>
3355
        <translation type="unfinished">&amp;Small</translation>
3356
    </message>
3357
    <message>
3358
        <source>&amp;Medium</source>
3359
        <translation type="unfinished">&amp;Medium</translation>
3360
    </message>
3361
    <message>
3362
        <source>&amp;Large</source>
3363
        <translation type="unfinished">&amp;Large</translation>
3364
    </message>
3365
    <message>
3366
        <source>&amp;File</source>
3367
        <translation type="unfinished">&amp;File</translation>
3368
    </message>
3369
    <message>
3370
        <source>&amp;Preview</source>
3371
        <translation type="unfinished">&amp;Preview</translation>
3372
    </message>
3373
    <message>
3374
        <source>&amp;Name:</source>
3375
        <translation type="unfinished">&amp;Name:</translation>
3376
    </message>
3377
</context>
3378
<context>
3379
    <name>BookMView</name>
3380
    <message>
3381
        <source>Bookmarks</source>
3382
        <translation type="unfinished">Bookmarks</translation>
3383
    </message>
3384
    <message>
3385
        <source>Move Bookmark</source>
3386
        <translation type="unfinished">Move Bookmark</translation>
3387
    </message>
3388
    <message>
3389
        <source>Insert Bookmark</source>
3390
        <translation type="unfinished">Insert Bookmark</translation>
3391
    </message>
3392
    <message>
3393
        <source>Cancel</source>
3394
        <translation type="unfinished">Cancel</translation>
3395
    </message>
3396
</context>
3397
<context>
3398
    <name>BookPalette</name>
3399
    <message>
3400
        <source>Bookmarks</source>
3401
        <translation type="unfinished">Bookmarks</translation>
3402
    </message>
3403
</context>
3404
<context>
3405
    <name>ButtonIcon</name>
3406
    <message>
3407
        <source>Icon Placement</source>
3408
        <translation type="unfinished">Icon Placement</translation>
3409
    </message>
3410
    <message>
3411
        <source>Layout:</source>
3412
        <translation type="unfinished">Layout:</translation>
3413
    </message>
3414
    <message>
3415
        <source>Caption only</source>
3416
        <translation type="unfinished">Caption only</translation>
3417
    </message>
3418
    <message>
3419
        <source>Icon only</source>
3420
        <translation type="unfinished">Icon only</translation>
3421
    </message>
3422
    <message>
3423
        <source>Caption below Icon</source>
3424
        <translation type="unfinished">Caption below Icon</translation>
3425
    </message>
3426
    <message>
3427
        <source>Caption above Icon</source>
3428
        <translation type="unfinished">Caption above Icon</translation>
3429
    </message>
3430
    <message>
3431
        <source>Caption right to Icon</source>
3432
        <translation type="unfinished">Caption right to Icon</translation>
3433
    </message>
3434
    <message>
3435
        <source>Caption left to Icon</source>
3436
        <translation type="unfinished">Caption left to Icon</translation>
3437
    </message>
3438
    <message>
3439
        <source>Caption overlays Icon</source>
3440
        <translation type="unfinished">Caption overlays Icon</translation>
3441
    </message>
3442
    <message>
3443
        <source>Scale:</source>
3444
        <translation type="unfinished">Scale:</translation>
3445
    </message>
3446
    <message>
3447
        <source>Always</source>
3448
        <translation type="unfinished">Always</translation>
3449
    </message>
3450
    <message>
3451
        <source>When Icon is too big</source>
3452
        <translation type="unfinished">When Icon is too big</translation>
3453
    </message>
3454
    <message>
3455
        <source>Never</source>
3456
        <translation type="unfinished">Never</translation>
3457
    </message>
3458
    <message>
3459
        <source>Scale How:</source>
3460
        <translation type="unfinished">Scale How:</translation>
3461
    </message>
3462
    <message>
3463
        <source>Proportional</source>
3464
        <translation type="unfinished">Proportional</translation>
3465
    </message>
3466
    <message>
3467
        <source>Non Proportional</source>
3468
        <translation type="unfinished">Non Proportional</translation>
3469
    </message>
3470
    <message>
3471
        <source>Icon</source>
3472
        <translation type="unfinished">Icon</translation>
3473
    </message>
3474
    <message>
3475
        <source>OK</source>
3476
        <translation type="unfinished">OK</translation>
3477
    </message>
3478
    <message>
3479
        <source>Cancel</source>
3480
        <translation type="unfinished">Cancel</translation>
3481
    </message>
3482
    <message>
3483
        <source>Reset</source>
3484
        <translation type="unfinished">Reset</translation>
3485
    </message>
3486
    <message>
3487
        <source>When Icon is too small</source>
3488
        <translation type="unfinished">When Icon is too small</translation>
3489
    </message>
3490
</context>
3491
<context>
3492
    <name>CMSPrefs</name>
3493
    <message>
3494
        <source>Color Management Settings</source>
3495
        <translation type="unfinished">Colour Management Settings</translation>
3496
    </message>
3497
    <message>
3498
        <source>System Profiles</source>
3499
        <translation type="unfinished">System Profiles</translation>
3500
    </message>
3501
    <message>
3502
        <source>Rendering Intents</source>
3503
        <translation type="unfinished">Rendering Intents</translation>
3504
    </message>
3505
    <message>
3506
        <source>Perceptual</source>
3507
        <translation type="unfinished">Perceptual</translation>
3508
    </message>
3509
    <message>
3510
        <source>Relative Colorimetric</source>
3511
        <translation type="unfinished">Relative Colourimetric</translation>
3512
    </message>
3513
    <message>
3514
        <source>Saturation</source>
3515
        <translation type="unfinished">Saturation</translation>
3516
    </message>
3517
    <message>
3518
        <source>Absolute Colorimetric</source>
3519
        <translation type="unfinished">Absolute Colourimetric</translation>
3520
    </message>
3521
    <message>
3522
        <source>Default color profile for imported images</source>
3523
        <translation type="unfinished">Default colour profile for imported images</translation>
3524
    </message>
3525
    <message>
3526
        <source>Default color profile for solid colors on the page</source>
3527
        <translation type="unfinished">Default colour profile for solid colours on the page</translation>
3528
    </message>
3529
    <message>
3530
        <source>Color profile that you have generated or received from the manufacturer.
3531
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source>
3532
        <translation type="unfinished">Colour profile that you have generated or received from the manufacturer.
3533
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation>
3534
    </message>
3535
    <message>
3536
        <source>Color profile for your printer model from the manufacturer.
3537
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source>
3538
        <translation type="unfinished">Colour profile for your printer model from the manufacturer.
3539
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation>
3540
    </message>
3541
    <message>
3542
        <source>Black Point Compensation is a method of improving contrast in photos.
3543
It is recommended that you enable this if you have photos in your document.</source>
3544
        <translation type="unfinished">Black Point Compensation is a method of improving contrast in photos.
3545
It is recommended that you enable this if you have photos in your document.</translation>
3546
    </message>
3547
    <message>
3548
        <source>Default rendering intent for your monitor. Unless you know why to change it,
3549
Relative Colorimetric or Perceptual should be chosen.</source>
3550
        <translation type="unfinished">Default rendering intent for your monitor. Unless you know why to change it,
3551
Relative Colourimetric or Perceptual should be chosen.</translation>
3552
    </message>
3553
    <message>
3554
        <source>Default rendering intent for your printer. Unless you know why to change it,
3555
Relative Colorimetric or Perceptual should be chosen.</source>
3556
        <translation type="unfinished">Default rendering intent for your printer. Unless you know why to change it,
3557
Relative Colourimetric or Perceptual should be chosen.</translation>
3558
    </message>
3559
    <message>
3560
        <source>Enable &apos;soft proofing&apos; of how your document colors will print,
3561
based on the chosen printer profile.</source>
3562
        <translation type="unfinished">Enable &apos;soft proofing&apos; of how your document colours will print,
3563
based on the chosen printer profile.</translation>
3564
    </message>
3565
    <message>
3566
        <source>Method of showing colors on the screen which may not print properly.
3567
This requires very accurate profiles and serves only as a warning.</source>
3568
        <translation type="unfinished">Method of showing colours on the screen which may not print properly.
3569
This requires very accurate profiles and serves only as a warning.</translation>
3570
    </message>
3571
    <message>
3572
        <source>&amp;Activate Color Management</source>
3573
        <translation type="unfinished">&amp;Activate Colour Management</translation>
3574
    </message>
3575
    <message>
3576
        <source>&amp;Pictures:</source>
3577
        <translation type="unfinished">&amp;Pictures:</translation>
3578
    </message>
3579
    <message>
3580
        <source>&amp;Solid Colors:</source>
3581
        <translation type="unfinished">&amp;Solid Colours:</translation>
3582
    </message>
3583
    <message>
3584
        <source>&amp;Monitor:</source>
3585
        <translation type="unfinished">&amp;Monitor:</translation>
3586
    </message>
3587
    <message>
3588
        <source>P&amp;rinter:</source>
3589
        <translation type="unfinished">P&amp;rinter:</translation>
3590
    </message>
3591
    <message>
3592
        <source>M&amp;onitor:</source>
3593
        <translation type="unfinished">M&amp;onitor:</translation>
3594
    </message>
3595
    <message>
3596
        <source>Pr&amp;inter:</source>
3597
        <translation type="unfinished">Pr&amp;inter:</translation>
3598
    </message>
3599
    <message>
3600
        <source>Sim&amp;ulate Printer on the Screen</source>
3601
        <translation type="unfinished">Sim&amp;ulate Printer on the Screen</translation>
3602
    </message>
3603
    <message>
3604
        <source>Mark Colors out of &amp;Gamut</source>
3605
        <translation type="unfinished">Mark Colours out of &amp;Gamut</translation>
3606
    </message>
3607
    <message>
3608
        <source>Use &amp;Blackpoint Compensation</source>
3609
        <translation type="unfinished">Use &amp;Blackpoint Compensation</translation>
3610
    </message>
3611
    <message>
3612
        <source>&amp;OK</source>
3613
        <translation type="unfinished">&amp;OK</translation>
3614
    </message>
3615
    <message>
3616
        <source>&amp;Cancel</source>
3617
        <translation type="unfinished">&amp;Cancel</translation>
3618
    </message>
3619
</context>
3620
<context>
3621
    <name>CMYKChoose</name>
3622
    <message>
3623
        <source>Edit Color</source>
3624
        <translation type="unfinished">Edit Colour</translation>
3625
    </message>
3626
    <message>
3627
        <source>CMYK</source>
3628
        <translation type="unfinished">CMYK</translation>
3629
    </message>
3630
    <message>
3631
        <source>RGB</source>
3632
        <translation type="unfinished">RGB</translation>
3633
    </message>
3634
    <message>
3635
        <source>Web Safe RGB</source>
3636
        <translation type="unfinished">Web Safe RGB</translation>
3637
    </message>
3638
    <message>
3639
        <source>New</source>
3640
        <translation type="unfinished">New</translation>
3641
    </message>
3642
    <message>
3643
        <source>Old</source>
3644
        <translation type="unfinished">Old</translation>
3645
    </message>
3646
    <message>
3647
        <source>OK</source>
3648
        <translation type="unfinished">OK</translation>
3649
    </message>
3650
    <message>
3651
        <source>C:</source>
3652
        <translation type="unfinished">C:</translation>
3653
    </message>
3654
    <message>
3655
        <source>M:</source>
3656
        <translation type="unfinished">M:</translation>
3657
    </message>
3658
    <message>
3659
        <source>Y:</source>
3660
        <translation type="unfinished">Y:</translation>
3661
    </message>
3662
    <message>
3663
        <source>K:</source>
3664
        <translation type="unfinished">K:</translation>
3665
    </message>
3666
    <message>
3667
        <source>Dynamic Color Bars</source>
3668
        <translation type="unfinished">Dynamic Colour Bars</translation>
3669
    </message>
3670
    <message>
3671
        <source>Static Color Bars</source>
3672
        <translation type="unfinished">Static Colour Bars</translation>
3673
    </message>
3674
    <message>
3675
        <source>R:</source>
3676
        <translation type="unfinished">R:</translation>
3677
    </message>
3678
    <message>
3679
        <source>G:</source>
3680
        <translation type="unfinished">G:</translation>
3681
    </message>
3682
    <message>
3683
        <source>B:</source>
3684
        <translation type="unfinished">B:</translation>
3685
    </message>
3686
    <message>
3687
        <source> %</source>
3688
        <translation type="unfinished"> %</translation>
3689
    </message>
3690
    <message>
3691
        <source>Warning</source>
3692
        <translation type="unfinished">Warning</translation>
3693
    </message>
3694
    <message>
3695
        <source>Name of the Color is not unique</source>
3696
        <translation type="unfinished">Name of the colour is not unique</translation>
3697
    </message>
3698
    <message>
3699
        <source>HSV-Colormap</source>
3700
        <translation type="unfinished">HSV-Colourmap</translation>
3701
    </message>
3702
    <message>
3703
        <source>&amp;Name:</source>
3704
        <translation type="unfinished">&amp;Name:</translation>
3705
    </message>
3706
    <message>
3707
        <source>Color &amp;Model</source>
3708
        <translation type="unfinished">Colour &amp;Model</translation>
3709
    </message>
3710
    <message>
3711
        <source>&amp;OK</source>
3712
        <translation type="unfinished">&amp;OK</translation>
3713
    </message>
3714
    <message>
3715
        <source>&amp;Cancel</source>
3716
        <translation type="unfinished">&amp;Cancel</translation>
3717
    </message>
3718
    <message>
3719
        <source>None</source>
3720
        <translation type="unfinished">None</translation>
3721
    </message>
3722
    <message>
3723
        <source>You cannot create a color named &quot;%1&quot;.
3724
It&apos;s a reserved name for transparent color</source>
3725
        <translation type="unfinished">You cannot create a colour named &quot;%1&quot;.
3726
It&apos;s a reserved name for transparent colour</translation>
3727
    </message>
3728
</context>
3729
<context>
3730
    <name>Cpalette</name>
3731
    <message>
3732
        <source>Normal</source>
3733
        <translation type="unfinished">Normal</translation>
3734
    </message>
3735
    <message>
3736
        <source>Horizontal Gradient</source>
3737
        <translation type="unfinished">Horizontal Gradient</translation>
3738
    </message>
3739
    <message>
3740
        <source>Vertical Gradient</source>
3741
        <translation type="unfinished">Vertical Gradient</translation>
3742
    </message>
3743
    <message>
3744
        <source>Diagonal Gradient</source>
3745
        <translation type="unfinished">Diagonal Gradient</translation>
3746
    </message>
3747
    <message>
3748
        <source>Cross Diagonal Gradient</source>
3749
        <translation type="unfinished">Cross Diagonal Gradient</translation>
3750
    </message>
3751
    <message>
3752
        <source>Radial Gradient</source>
3753
        <translation type="unfinished">Radial Gradient</translation>
3754
    </message>
3755
    <message>
3756
        <source>Opacity:</source>
3757
        <translation type="unfinished">Opacity:</translation>
3758
    </message>
3759
    <message>
3760
        <source> %</source>
3761
        <translation type="unfinished"> %</translation>
3762
    </message>
3763
    <message>
3764
        <source>None</source>
3765
        <translation type="unfinished">None</translation>
3766
    </message>
3767
    <message>
3768
        <source>Shade:</source>
3769
        <translation type="unfinished">Shade:</translation>
3770
    </message>
3771
    <message>
3772
        <source>Edit Line Color Properties</source>
3773
        <translation type="unfinished">Edit Line Colour Properties</translation>
3774
    </message>
3775
    <message>
3776
        <source>Edit Fill Color Properties</source>
3777
        <translation type="unfinished">Edit Fill Colour Properties</translation>
3778
    </message>
3779
    <message>
3780
        <source>Saturation of color</source>
3781
        <translation type="unfinished">Saturation of colour</translation>
3782
    </message>
3783
    <message>
3784
        <source>Normal or gradient fill method</source>
3785
        <translation type="unfinished">Normal or gradient fill method</translation>
3786
    </message>
3787
    <message>
3788
        <source>Set the transparency for the color selected</source>
3789
        <translation type="unfinished">Set the transparency for the colour selected</translation>
3790
    </message>
3791
    <message>
3792
        <source>Color of selected object</source>
3793
        <translation type="unfinished">Colour of selected object</translation>
3794
    </message>
3795
    <message>
3796
        <source>Free linear Gradient</source>
3797
        <translation type="unfinished">Free linear Gradient</translation>
3798
    </message>
3799
    <message>
3800
        <source>Free radial Gradient</source>
3801
        <translation type="unfinished">Free radial Gradient</translation>
3802
    </message>
3803
    <message>
3804
        <source>X1:</source>
3805
        <translation type="unfinished">X1:</translation>
3806
    </message>
3807
    <message>
3808
        <source>Y1:</source>
3809
        <translation type="unfinished">Y1:</translation>
3810
    </message>
3811
    <message>
3812
        <source> pt</source>
3813
        <translation type="unfinished"> pt</translation>
3814
    </message>
3815
    <message>
3816
        <source>X2:</source>
3817
        <translation type="unfinished">X2:</translation>
3818
    </message>
3819
    <message>
3820
        <source>Y2:</source>
3821
        <translation type="unfinished">Y2:</translation>
3822
    </message>
3823
    <message>
3824
        <source> mm</source>
3825
        <translation type="unfinished"> mm</translation>
3826
    </message>
3827
    <message>
3828
        <source> in</source>
3829
        <translation type="unfinished"> in</translation>
3830
    </message>
3831
    <message>
3832
        <source> p</source>
3833
        <translation type="unfinished"> p</translation>
3834
    </message>
3835
</context>
3836
<context>
3837
    <name>CsvDialog</name>
3838
    <message>
3839
        <source>CSV Importer Options</source>
3840
        <translation type="unfinished">CSV Importer Options</translation>
3841
    </message>
3842
    <message>
3843
        <source>Field delimiter:</source>
3844
        <translation type="unfinished">Field delimiter:</translation>
3845
    </message>
3846
    <message>
3847
        <source>(TAB)</source>
3848
        <translation type="unfinished">(TAB)</translation>
3849
    </message>
3850
    <message>
3851
        <source>Value delimiter:</source>
3852
        <translation type="unfinished">Value delimiter:</translation>
3853
    </message>
3854
    <message>
3855
        <source>First row is a header</source>
3856
        <translation type="unfinished">First row is a header</translation>
3857
    </message>
3858
    <message>
3859
        <source>OK</source>
3860
        <translation type="unfinished">OK</translation>
3861
    </message>
3862
    <message>
3863
        <source>Cancel</source>
3864
        <translation type="unfinished">Cancel</translation>
3865
    </message>
3866
    <message>
3867
        <source>None</source>
3868
        <translation type="unfinished">None</translation>
3869
    </message>
3870
</context>
3871
<context>
3872
    <name>CupsOptions</name>
3873
    <message>
3874
        <source>Printer Options</source>
3875
        <translation type="unfinished">Printer Options</translation>
3876
    </message>
3877
    <message>
3878
        <source>Option</source>
3879
        <translation type="unfinished">Option</translation>
3880
    </message>
3881
    <message>
3882
        <source>Value</source>
3883
        <translation type="unfinished">Value</translation>
3884
    </message>
3885
    <message>
3886
        <source>Page Set</source>
3887
        <translation type="unfinished">Page Set</translation>
3888
    </message>
3889
    <message>
3890
        <source>All Pages</source>
3891
        <translation type="unfinished">All Pages</translation>
3892
    </message>
3893
    <message>
3894
        <source>Even Pages only</source>
3895
        <translation type="unfinished">Even Pages only</translation>
3896
    </message>
3897
    <message>
3898
        <source>Odd Pages only</source>
3899
        <translation type="unfinished">Odd Pages only</translation>
3900
    </message>
3901
    <message>
3902
        <source>Mirror</source>
3903
        <translation type="unfinished">Mirror</translation>
3904
    </message>
3905
    <message>
3906
        <source>No</source>
3907
        <translation type="unfinished">No</translation>
3908
    </message>
3909
    <message>
3910
        <source>Yes</source>
3911
        <translation type="unfinished">Yes</translation>
3912
    </message>
3913
    <message>
3914
        <source>Orientation</source>
3915
        <translation type="unfinished">Orientation</translation>
3916
    </message>
3917
    <message>
3918
        <source>Portrait</source>
3919
        <translation type="unfinished">Portrait</translation>
3920
    </message>
3921
    <message>
3922
        <source>Landscape</source>
3923
        <translation type="unfinished">Landscape</translation>
3924
    </message>
3925
    <message>
3926
        <source>N-Up Printing</source>
3927
        <translation type="unfinished">N-Up Printing</translation>
3928
    </message>
3929
    <message>
3930
        <source>Page per Sheet</source>
3931
        <translation type="unfinished">Page per Sheet</translation>
3932
    </message>
3933
    <message>
3934
        <source>Pages per Sheet</source>
3935
        <translation type="unfinished">Pages per Sheet</translation>
3936
    </message>
3937
    <message>
3938
        <source>This panel displays various CUPS options when printing. 
3939
The exact parameters available will depend on your printer driver.
3940
You can confirm CUPS support by selecting Help &gt; About.
3941
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support.
3942
Missing library support is indicated by a *</source>
3943
        <translation type="unfinished">This panel displays various CUPS options when printing. 
3944
The exact parameters available will depend on your printer driver.
3945
You can confirm CUPS support by selecting Help &gt; About.
3946
Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support.
3947
Missing library support is indicated by a *</translation>
3948
    </message>
3949
    <message>
3950
        <source>&amp;OK</source>
3951
        <translation type="unfinished">&amp;OK</translation>
3952
    </message>
3953
    <message>
3954
        <source>&amp;Cancel</source>
3955
        <translation type="unfinished">&amp;Cancel</translation>
3956
    </message>
3957
</context>
3958
<context>
3959
    <name>CustomFDialog</name>
3960
    <message>
3961
        <source>Encoding:</source>
3962
        <translation type="unfinished">Encoding:</translation>
3963
    </message>
3964
    <message>
3965
        <source>Moves to your Document Directory.
3966
This can be set in the Preferences.</source>
3967
        <translation type="unfinished">Moves to your Document Directory.
3968
This can be set in the Preferences.</translation>
3969
    </message>
3970
    <message>
3971
        <source>&amp;Compress File</source>
3972
        <translation type="unfinished">&amp;Compress File</translation>
3973
    </message>
3974
    <message>
3975
        <source>&amp;Include Fonts</source>
3976
        <translation type="unfinished">&amp;Include Fonts</translation>
3977
    </message>
3978
</context>
3979
<context>
3980
    <name>DelColor</name>
3981
    <message>
3982
        <source>Delete Color</source>
3983
        <translation type="unfinished">Delete Colour</translation>
3984
    </message>
3985
    <message>
3986
        <source>?</source>
3987
        <translation type="unfinished">?</translation>
3988
    </message>
3989
    <message>
3990
        <source>Replace it with:</source>
3991
        <translation type="unfinished">Replace it with:</translation>
3992
    </message>
3993
    <message>
3994
        <source>Delete color:</source>
3995
        <translation type="unfinished">Delete colour:</translation>
3996
    </message>
3997
    <message>
3998
        <source>None</source>
3999
        <translation type="unfinished">None</translation>
4000
    </message>
4001
    <message>
4002
        <source>&amp;OK</source>
4003
        <translation type="unfinished">&amp;OK</translation>
4004
    </message>
4005
    <message>
4006
        <source>&amp;Cancel</source>
4007
        <translation type="unfinished">&amp;Cancel</translation>
4008
    </message>
4009
</context>
4010
<context>
4011
    <name>DelPages</name>
4012
    <message>
4013
        <source>Delete Pages</source>
4014
        <translation type="unfinished">Delete Pages</translation>
4015
    </message>
4016
    <message>
4017
        <source>Delete from:</source>
4018
        <translation type="unfinished">Delete from:</translation>
4019
    </message>
4020
    <message>
4021
        <source>to:</source>
4022
        <translation type="unfinished">to:</translation>
4023
    </message>
4024
    <message>
4025
        <source>&amp;OK</source>
4026
        <translation type="unfinished">&amp;OK</translation>
4027
    </message>
4028
    <message>
4029
        <source>&amp;Cancel</source>
4030
        <translation type="unfinished">&amp;Cancel</translation>
4031
    </message>
4032
</context>
4033
<context>
4034
    <name>DmF</name>
4035
    <message>
4036
        <source>Missing Font</source>
4037
        <translation type="unfinished">Missing Font</translation>
4038
    </message>
4039
    <message>
4040
        <source>The Font %1 is not installed.</source>
4041
        <translation type="unfinished">The Font %1 is not installed.</translation>
4042
    </message>
4043
    <message>
4044
        <source>Use</source>
4045
        <translation type="unfinished">Use</translation>
4046
    </message>
4047
    <message>
4048
        <source>instead</source>
4049
        <translation type="unfinished">instead</translation>
4050
    </message>
4051
    <message>
4052
        <source>OK</source>
4053
        <translation type="unfinished">OK</translation>
4054
    </message>
4055
</context>
4056
<context>
4057
    <name>DocInfos</name>
4058
    <message>
4059
        <source>Document Information</source>
4060
        <translation type="unfinished">Document Information</translation>
4061
    </message>
4062
    <message>
4063
        <source>&amp;Title:</source>
4064
        <translation type="unfinished">&amp;Title:</translation>
4065
    </message>
4066
    <message>
4067
        <source>&amp;Author:</source>
4068
        <translation type="unfinished">&amp;Author:</translation>
4069
    </message>
4070
    <message>
4071
        <source>&amp;Keywords:</source>
4072
        <translation type="unfinished">&amp;Keywords:</translation>
4073
    </message>
4074
    <message>
4075
        <source>Descri&amp;ption:</source>
4076
        <translation type="unfinished">Descri&amp;ption:</translation>
4077
    </message>
4078
    <message>
4079
        <source>P&amp;ublisher:</source>
4080
        <translation type="unfinished">P&amp;ublisher:</translation>
4081
    </message>
4082
    <message>
4083
        <source>&amp;Contributors:</source>
4084
        <translation type="unfinished">&amp;Contributors:</translation>
4085
    </message>
4086
    <message>
4087
        <source>Dat&amp;e:</source>
4088
        <translation type="unfinished">Dat&amp;e:</translation>
4089
    </message>
4090
    <message>
4091
        <source>T&amp;ype:</source>
4092
        <translation type="unfinished">T&amp;ype:</translation>
4093
    </message>
4094
    <message>
4095
        <source>F&amp;ormat:</source>
4096
        <translation type="unfinished">F&amp;ormat:</translation>
4097
    </message>
4098
    <message>
4099
        <source>Identi&amp;fier:</source>
4100
        <translation type="unfinished">Identi&amp;fier:</translation>
4101
    </message>
4102
    <message>
4103
        <source>&amp;Source:</source>
4104
        <translation type="unfinished">&amp;Source:</translation>
4105
    </message>
4106
    <message>
4107
        <source>&amp;Language:</source>
4108
        <translation type="unfinished">&amp;Language:</translation>
4109
    </message>
4110
    <message>
4111
        <source>&amp;Relation:</source>
4112
        <translation type="unfinished">&amp;Relation:</translation>
4113
    </message>
4114
    <message>
4115
        <source>Co&amp;verage:</source>
4116
        <translation type="unfinished">Co&amp;verage:</translation>
4117
    </message>
4118
    <message>
4119
        <source>Ri&amp;ghts:</source>
4120
        <translation type="unfinished">Ri&amp;ghts:</translation>
4121
    </message>
4122
    <message>
4123
        <source>&amp;Document</source>
4124
        <translation type="unfinished">&amp;Document</translation>
4125
    </message>
4126
    <message>
4127
        <source>Further &amp;Information</source>
4128
        <translation type="unfinished">Further &amp;Information</translation>
4129
    </message>
4130
    <message>
4131
        <source>The person or organisation primarily responsible for making the content of the document.
4132
This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
4133
        <translation type="unfinished">The person or organisation primarily responsible for making the content of the document.
4134
This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
4135
    </message>
4136
    <message>
4137
        <source>A name given to the document.
4138
This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
4139
        <translation type="unfinished">A name given to the document.
4140
This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
4141
    </message>
4142
    <message>
4143
        <source>An account of the content of the document.
4144
This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source>
4145
        <translation type="unfinished">An account of the content of the document.
4146
This field is for a brief description or abstract of the document. It is embedded in the PDF on export</translation>
4147
    </message>
4148
    <message>
4149
        <source>The topic of the content of the document.
4150
This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source>
4151
        <translation type="unfinished">The topic of the content of the document.
4152
This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</translation>
4153
    </message>
4154
    <message>
4155
        <source>A person or organisation responsible for making the document available</source>
4156
        <translation type="unfinished">A person or organisation responsible for making the document available</translation>
4157
    </message>
4158
    <message>
4159
        <source>A person or organisation responsible for making contributions to the content of the document</source>
4160
        <translation type="unfinished">A person or organisation responsible for making contributions to the content of the document</translation>
4161
    </message>
4162
    <message>
4163
        <source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source>
4164
        <translation type="unfinished">A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation>
4165
    </message>
4166
    <message>
4167
        <source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
4168
        <translation type="unfinished">The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation>
4169
    </message>
4170
    <message>
4171
        <source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting.
4172
RFC2045,RFC2046 for MIME types are also useful here</source>
4173
        <translation type="unfinished">The physical or digital manifestation of the document. Media type and dimensions would be worth noting.
4174
RFC2045,RFC2046 for MIME types are also useful here</translation>
4175
    </message>
4176
    <message>
4177
        <source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
4178
        <translation type="unfinished">An unambiguous reference to the document within a given context such as ISBN or URI</translation>
4179
    </message>
4180
    <message>
4181
        <source>A reference to a document from which the present document is derived, eg. ISBN or URI</source>
4182
        <translation type="unfinished">A reference to a document from which the present document is derived, eg. ISBN or URI</translation>
4183
    </message>
4184
    <message>
4185
        <source>The language in which the content of the document is written, usually a ISO-639 language code
4186
optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source>
4187
        <translation type="unfinished">The language in which the content of the document is written, usually a ISO-639 language code
4188
optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</translation>
4189
    </message>
4190
    <message>
4191
        <source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
4192
        <translation type="unfinished">A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation>
4193
    </message>
4194
    <message>
4195
        <source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
4196
        <translation type="unfinished">The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation>
4197
    </message>
4198
    <message>
4199
        <source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
4200
        <translation type="unfinished">Information about rights held in and over the document, eg. copyright, patent or trademark</translation>
4201
    </message>
4202
    <message>
4203
        <source>&amp;OK</source>
4204
        <translation type="unfinished">&amp;OK</translation>
4205
    </message>
4206
    <message>
4207
        <source>&amp;Cancel</source>
4208
        <translation type="unfinished">&amp;Cancel</translation>
4209
    </message>
4210
</context>
4211
<context>
4212
    <name>Druck</name>
4213
    <message>
4214
        <source>Setup Printer</source>
4215
        <translation type="unfinished">Setup Printer</translation>
4216
    </message>
4217
    <message>
4218
        <source>File</source>
4219
        <translation type="unfinished">File</translation>
4220
    </message>
4221
    <message>
4222
        <source>Options</source>
4223
        <translation type="unfinished">Options</translation>
4224
    </message>
4225
    <message>
4226
        <source>All</source>
4227
        <translation type="unfinished">All</translation>
4228
    </message>
4229
    <message>
4230
        <source>Save as</source>
4231
        <translation type="unfinished">Save as</translation>
4232
    </message>
4233
    <message>
4234
        <source>Postscript-Files (*.ps);;All Files (*)</source>
4235
        <translation type="unfinished">Postscript-Files (*.ps);;All Files (*)</translation>
4236
    </message>
4237
    <message>
4238
        <source>Cyan</source>
4239
        <translation type="unfinished">Cyan</translation>
4240
    </message>
4241
    <message>
4242
        <source>Magenta</source>
4243
        <translation type="unfinished">Magenta</translation>
4244
    </message>
4245
    <message>
4246
        <source>Yellow</source>
4247
        <translation type="unfinished">Yellow</translation>
4248
    </message>
4249
    <message>
4250
        <source>Black</source>
4251
        <translation type="unfinished">Black</translation>
4252
    </message>
4253
    <message>
4254
        <source>Insert a comma separated list of tokens where
4255
a token can be * for all the pages, 1-5 for
4256
a range of pages or a single page number.</source>
4257
        <translation type="unfinished">Insert a comma separated list of tokens where
4258
a token can be * for all the pages, 1-5 for
4259
a range of pages or a single page number.</translation>
4260
    </message>
4261
    <message>
4262
        <source>Print Destination</source>
4263
        <translation type="unfinished">Print Destination</translation>
4264
    </message>
4265
    <message>
4266
        <source>&amp;Options...</source>
4267
        <translation type="unfinished">&amp;Options...</translation>
4268
    </message>
4269
    <message>
4270
        <source>&amp;File:</source>
4271
        <translation type="unfinished">&amp;File:</translation>
4272
    </message>
4273
    <message>
4274
        <source>C&amp;hange...</source>
4275
        <translation type="unfinished">C&amp;hange...</translation>
4276
    </message>
4277
    <message>
4278
        <source>A&amp;lternative Printer Command</source>
4279
        <translation type="unfinished">A&amp;lternative Printer Command</translation>
4280
    </message>
4281
    <message>
4282
        <source>Co&amp;mmand:</source>
4283
        <translation type="unfinished">Co&amp;mmand:</translation>
4284
    </message>
4285
    <message>
4286
        <source>Range</source>
4287
        <translation type="unfinished">Range</translation>
4288
    </message>
4289
    <message>
4290
        <source>Print &amp;All</source>
4291
        <translation type="unfinished">Print &amp;All</translation>
4292
    </message>
4293
    <message>
4294
        <source>Print Current Pa&amp;ge</source>
4295
        <translation type="unfinished">Print Current Pa&amp;ge</translation>
4296
    </message>
4297
    <message>
4298
        <source>Print &amp;Range</source>
4299
        <translation type="unfinished">Print &amp;Range</translation>
4300
    </message>
4301
    <message>
4302
        <source>N&amp;umber of Copies:</source>
4303
        <translation type="unfinished">N&amp;umber of Copies:</translation>
4304
    </message>
4305
    <message>
4306
        <source>Print &amp;Normal</source>
4307
        <translation type="unfinished">Print &amp;Normal</translation>
4308
    </message>
4309
    <message>
4310
        <source>Print &amp;Separations</source>
4311
        <translation type="unfinished">Print &amp;Separations</translation>
4312
    </message>
4313
    <message>
4314
        <source>Pr&amp;int In Color If Available</source>
4315
        <translation type="unfinished">Pr&amp;int In Colour If Available</translation>
4316
    </message>
4317
    <message>
4318
        <source>Print In Gra&amp;yscale</source>
4319
        <translation type="unfinished">Print In Gre&amp;yscale</translation>
4320
    </message>
4321
    <message>
4322
        <source>Ad&amp;vanced Options...</source>
4323
        <translation type="unfinished">Ad&amp;vanced Options...</translation>
4324
    </message>
4325
    <message>
4326
        <source>&amp;Print</source>
4327
        <translation type="unfinished">&amp;Print</translation>
4328
    </message>
4329
    <message>
4330
        <source>&amp;Cancel</source>
4331
        <translation type="unfinished">&amp;Cancel</translation>
4332
    </message>
4333
    <message>
4334
        <source>Use an alternative print manager, such as kprinter or gtklp,
4335
to utilize additional printing options</source>
4336
        <translation type="unfinished">Use an alternative print manager, such as kprinter or gtklp,
4337
to utilise additional printing options</translation>
4338
    </message>
4339
</context>
4340
<context>
4341
    <name>EPSPlug</name>
4342
    <message>
4343
        <source>Importing File:
4344
%1
4345
failed!</source>
4346
        <translation type="unfinished">Importing File:
4347
%1
4348
failed!</translation>
4349
    </message>
4350
    <message>
4351
        <source>Fatal Error</source>
4352
        <translation type="unfinished">Fatal Error</translation>
4353
    </message>
4354
</context>
4355
<context>
4356
    <name>EditStyle</name>
4357
    <message>
4358
        <source>Edit Style</source>
4359
        <translation type="unfinished">Edit Style</translation>
4360
    </message>
4361
    <message>
4362
        <source>Character</source>
4363
        <translation type="unfinished">Character</translation>
4364
    </message>
4365
    <message>
4366
        <source> pt</source>
4367
        <translation type="unfinished"> pt</translation>
4368
    </message>
4369
    <message>
4370
        <source>Effect:</source>
4371
        <translation type="unfinished">Effect:</translation>
4372
    </message>
4373
    <message>
4374
        <source>None</source>
4375
        <translation type="unfinished">None</translation>
4376
    </message>
4377
    <message>
4378
        <source>Vertical Spaces</source>
4379
        <translation type="unfinished">Vertical Spaces</translation>
4380
    </message>
4381
    <message>
4382
        <source>Line Spacing</source>
4383
        <translation type="unfinished">Line Spacing</translation>
4384
    </message>
4385
    <message>
4386
        <source>OK</source>
4387
        <translation type="unfinished">OK</translation>
4388
    </message>
4389
    <message>
4390
        <source>Warning</source>
4391
        <translation type="unfinished">Warning</translation>
4392
    </message>
4393
    <message>
4394
        <source>Name of the Style is not unique</source>
4395
        <translation type="unfinished">Name of the Style is not unique</translation>
4396
    </message>
4397
    <message>
4398
        <source>Name of your paragraph style</source>
4399
        <translation type="unfinished">Name of your paragraph style</translation>
4400
    </message>
4401
    <message>
4402
        <source>Font of selected text or object</source>
4403
        <translation type="unfinished">Font of selected text or object</translation>
4404
    </message>
4405
    <message>
4406
        <source>Font Size</source>
4407
        <translation type="unfinished">Font Size</translation>
4408
    </message>
4409
    <message>
4410
        <source>Color of text fill</source>
4411
        <translation type="unfinished">Colour of text fill</translation>
4412
    </message>
4413
    <message>
4414
        <source>Color of text stroke</source>
4415
        <translation type="unfinished">Colour of text stroke</translation>
4416
    </message>
4417
    <message>
4418
        <source>Provides an oversized first letter for a paragraph. Used for stylistic effect</source>
4419
        <translation type="unfinished">Provides an oversized first letter for a paragraph. Used for stylistic effect</translation>
4420
    </message>
4421
    <message>
4422
        <source>Determines the overall height, in line numbers, of the Drop Caps</source>
4423
        <translation type=&q