Subversion Repositories Scribus

Rev

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

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