Subversion Repositories Scribus

Rev

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

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