Subversion Repositories Scribus

Rev

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

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