Subversion Repositories Scribus

Rev

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

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