"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "scribus-1.3.3.12/scribus/po/scribus.zh_TW.ts" of archive scribus-1.3.3.12.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 <!DOCTYPE TS><TS>
2 <defaultcodec></defaultcodec>
3 <context>
4 <name></name>
5 <message>
6 <source>getColorNames() -> list
7
8 Returns a list containing the names of all defined colors in the document.
9 If no document is open, returns a list of the default document colors.
10 </source>
11 <translation type="unfinished">
12 getColorNames() -> list
13
14 傳回檔案中所有已定義顏色名稱的列表
15
16 </translation>
17 </message>
18 <message>
19 <source>newDocDialog() -> bool
20
21 Displays the "New Document" dialog box. Creates a new document if the user
22 accepts the settings. Does not create a document if the user presses cancel.
23 Returns true if a new document was created.
24 </source>
25 <translation>newDocDialog() -> bool
26
27 顯示 "新建檔案" 對話視窗, 如果使用者接受設定值, 則開啟新的檔案. 如果使用者案取消鍵,
28 檔案將不會新建. 如果新檔案已經新增, 傳回 "真".
29 </translation>
30 </message>
31 <message>
32 <source>getFillColor(["name"]) -> string
33
34 Returns the name of the fill color of the object "name".
35 If "name" is not given the currently selected item is used.
36 </source>
37 <translation type="unfinished"></translation>
38 </message>
39 <message>
40 <source>moveObject(dx, dy [, "name"])
41
42 Moves the object "name" by dx and dy relative to its current position. The
43 distances are expressed in the current measurement unit of the document (see
44 UNIT constants). If "name" is not given the currently selected item is used.
45 If the object "name" belongs to a group, the whole group is moved.
46 </source>
47 <translation type="unfinished"></translation>
48 </message>
49 <message>
50 <source>setRedraw(bool)
51
52 Disables page redraw when bool = False, otherwise redrawing is enabled.
53 This change will persist even after the script exits, so make sure to call
54 setRedraw(True) in a finally: clause at the top level of your script.
55 </source>
56 <translation type="unfinished"></translation>
57 </message>
58 <message>
59 <source>createRect(x, y, width, height, ["name"]) -> string
60
61 Creates a new rectangle on the current page and returns its name. The
62 coordinates are given in the current measurement units of the document
63 (see UNIT constants). "name" should be a unique identifier for the object
64 because you need this name to reference that object in future. If "name"
65 is not given Scribus will create one for you.
66
67 May raise NameExistsError if you explicitly pass a name that's already used.
68 </source>
69 <translation type="unfinished"></translation>
70 </message>
71 <message>
72 <source>newPage(where [,"masterpage"])
73
74 Creates a new page. If "where" is -1 the new Page is appended to the
75 document, otherwise the new page is inserted before "where". Page numbers are
76 counted from 1 upwards, no matter what the displayed first page number of your
77 document is. The optional parameter "masterpage" specifies the name of the
78 master page for the new page.
79
80 May raise IndexError if the page number is out of range
81 </source>
82 <translation type="unfinished"></translation>
83 </message>
84 <message>
85 <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])
86
87 Sets the gradient fill of the object "name" to type. Color descriptions are
88 the same as for setFillColor() and setFillShade(). See the constants for
89 available types (FILL_<type>).
90 </source>
91 <translation type="unfinished"></translation>
92 </message>
93 <message>
94 <source>getFontSize(["name"]) -> float
95
96 Returns the font size in points for the text frame "name". If this text
97 frame has some text selected the value assigned to the first character of
98 the selection is returned.
99 If "name" is not given the currently selected item is used.
100 </source>
101 <translation type="unfinished"></translation>
102 </message>
103 <message>
104 <source>messagebarText("string")
105
106 Writes the "string" into the Scribus message bar (status line). The text
107 must be UTF8 encoded or 'unicode' string(recommended).
108 </source>
109 <translation type="unfinished"></translation>
110 </message>
111 <message>
112 <source>importSVG("string")
113
114 The "string" must be a valid filename for a SVG image. The text
115 must be UTF8 encoded or 'unicode' string(recommended).
116 </source>
117 <translation type="unfinished"></translation>
118 </message>
119 <message>
120 <source>newDocument(size, margins, orientation, firstPageNumber,
121 unit, pagesType, firstPageOrder) -> bool
122
123 Creates a new document and returns true if successful. The parameters have the
124 following meaning:
125
126 size = A tuple (width, height) describing the size of the document. You can
127 use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc.
128
129 margins = A tuple (left, right, top, bottom) describing the document
130 margins
131
132 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
133
134 firstPageNumer = is the number of the first page in the document used for
135 pagenumbering. While you'll usually want 1, it's useful to have higher
136 numbers if you're creating a document in several parts.
137
138 unit: this value sets the measurement units used by the document. Use a
139 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
140 UNIT_PICAS, UNIT_POINTS.
141
142 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
143 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
144 PAGE_4 is 4-fold.
145
146 firstPageOrder = What is position of first page in the document.
147 Indexed from 0 (0 = first).
148
149 numPage = Number of pages to be created.
150
151 The values for width, height and the margins are expressed in the given unit
152 for the document. PAPER_* constants are expressed in points. If your document
153 is not in points, make sure to account for this.
154
155 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
156 PAGE_4, 3, 1)
157
158 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
159 </source>
160 <translation type="unfinished"></translation>
161 </message>
162 </context>
163 <context>
164 <name>@default</name>
165 <message>
166 <source>getColor("name") -> tuple
167
168 Returns a tuple (C, M, Y, K) containing the four color components of the
169 color "name" from the current document. If no document is open, returns
170 the value of the named color from the default document colors.
171
172 May raise NotFoundError if the named color wasn't found.
173 May raise ValueError if an invalid color name is specified.
174 </source>
175 <translation>getColor("name") -> tuple
176
177 Returns a tuple (C, M, Y, K) containing the four colour components of the
178 colour "name" from the current document. If no document is open, returns
179 the value of the named colour from the default document colours.
180
181 May raise NotFoundError if the named colour wasn't found.
182 May raise ValueError if an invalid colour name is specified.
183 </translation>
184 </message>
185 <message>
186 <source>getColorAsRGB("name") -> tuple
187
188 Returns a tuple (R,G,B) containing the three color components of the
189 color "name" from the current document, converted to the RGB color
190 space. If no document is open, returns the value of the named color
191 from the default document colors.
192
193 May raise NotFoundError if the named color wasn't found.
194 May raise ValueError if an invalid color name is specified.
195 </source>
196 <translation>getColorAsRGB("name") -> tuple
197
198 Returns a tuple (R,G,B) containing the three colour components of the
199 colour "name" from the current document, converted to the RGB colour
200 space. If no document is open, returns the value of the named colour
201 from the default document colours.
202
203 May raise NotFoundError if the named colour wasn't found.
204 May raise ValueError if an invalid colour name is specified.
205 </translation>
206 </message>
207 <message>
208 <source>changeColor("name", c, m, y, k)
209
210 Changes the color "name" to the specified CMYK value. The color value is
211 defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
212 Color components should be in the range from 0 to 255.
213
214 May raise NotFoundError if the named color wasn't found.
215 May raise ValueError if an invalid color name is specified.
216 </source>
217 <translation>changeColour("name", c, m, y, k)
218
219 Changes the colour "name" to the specified CMYK value. The colour value is
220 defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
221 Colour components should be in the range from 0 to 255.
222
223 May raise NotFoundError if the named colour wasn't found.
224 May raise ValueError if an invalid colour name is specified.
225 </translation>
226 </message>
227 <message>
228 <source>defineColor("name", c, m, y, k)
229
230 Defines a new color "name". The color Value is defined via four components:
231 c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in
232 the range from 0 to 255.
233
234 May raise ValueError if an invalid color name is specified.
235 </source>
236 <translation>defineColor("name", c, m, y, k)
237
238 Defines a new colour "name". The colour Value is defined via four components:
239 c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in
240 the range from 0 to 255.
241
242 May raise ValueError if an invalid colour name is specified.
243 </translation>
244 </message>
245 <message>
246 <source>deleteColor("name", "replace")
247
248 Deletes the color "name". Every occurence of that color is replaced by the
249 color "replace". If not specified, "replace" defaults to the color
250 "None" - transparent.
251
252 deleteColor works on the default document colors if there is no document open.
253 In that case, "replace", if specified, has no effect.
254
255 May raise NotFoundError if a named color wasn't found.
256 May raise ValueError if an invalid color name is specified.
257 </source>
258 <translation>deleteColor("name", "replace")
259
260 Deletes the colour "name". Every occurence of that colour is replaced by the
261 colour "replace". If not specified, "replace" defaults to the colour
262 "None" - transparent.
263
264 deleteColor works on the default document colours if there is no document open.
265 In that case, "replace", if specified, has no effect.
266
267 May raise NotFoundError if a named colour wasn't found.
268 May raise ValueError if an invalid colour name is specified.
269 </translation>
270 </message>
271 <message>
272 <source>replaceColor("name", "replace")
273
274 Every occurence of the color "name" is replaced by the color "replace".
275
276 May raise NotFoundError if a named color wasn't found.
277 May raise ValueError if an invalid color name is specified.
278 </source>
279 <translation>replaceColor("name", "replace")
280
281 Every occurence of the colour "name" is replaced by the colour "replace".
282
283 May raise NotFoundError if a named colour wasn't found.
284 May raise ValueError if an invalid colour name is specified.
285 </translation>
286 </message>
287 <message>
288 <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
289
290 Shows a File Open dialog box with the caption "caption". Files are filtered
291 with the filter string "filter". A default filename or file path can also
292 supplied, leave this string empty when you don't want to use it. A value of
293 True for haspreview enables a small preview widget in the FileSelect box. When
294 the issave parameter is set to True the dialog acts like a "Save As" dialog
295 otherwise it acts like a "File Open Dialog". When the isdir parameter is True
296 the dialog shows and returns only directories. The default for all of the
297 opional parameters is False.
298
299 The filter, if specified, takes the form 'comment (*.type *.type2 ...)'.
300 For example 'Images (*.png *.xpm *.jpg)'.
301
302 Refer to the Qt-Documentation for QFileDialog for details on filters.
303
304 Example: fileDialog('Open input', 'CSV files (*.csv)')
305 Example: fileDialog('Save report', defaultname='report.txt', issave=True)
306 </source>
307 <translation type="unfinished">fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
308
309 Shows a File Open dialog box with the caption "caption". Files are filtered
310 with the filter string "filter". A default filename or file path can also
311 supplied, leave this string empty when you don't want to use it. A value of
312 True for haspreview enables a small preview widget in the FileSelect box. When
313 the issave parameter is set to True the dialog acts like a "Save As" dialog
314 otherwise it acts like a "File Open Dialog". When the isdir parameter is True
315 the dialog shows and returns only directories. The default for all of the
316 opional parameters is False.
317
318 The filter, if specified, takes the form 'comment (*.type *.type2 ...)'.
319 For example 'Images (*.png *.xpm *.jpg)'.
320
321 Refer to the Qt-Documentation for QFileDialog for details on filters.
322
323 Example: fileDialog('Open input', 'CSV files (*.csv)')
324 Example: fileDialog('Save report', defaultname='report.txt', issave=True)
325 </translation>
326 </message>
327 <message>
328 <source>messageBox("caption", "message",
329 icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
330 button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
331
332 Displays a message box with the title "caption", the message "message", and
333 an icon "icon" and up to 3 buttons. By default no icon is used and a single
334 button, OK, is displayed. Only the caption and message arguments are required,
335 though setting an icon and appropriate button(s) is strongly
336 recommended. The message text may contain simple HTML-like markup.
337
338 Returns the number of the button the user pressed. Button numbers start
339 at 1.
340
341 For the icon and the button parameters there are predefined constants available
342 with the same names as in the Qt Documentation. These are the BUTTON_* and
343 ICON_* constants defined in the module. There are also two extra constants that
344 can be binary-ORed with button constants:
345 BUTTONOPT_DEFAULT Pressing enter presses this button.
346 BUTTONOPT_ESCAPE Pressing escape presses this button.
347
348 Usage examples:
349 result = messageBox('Script failed',
350 'This script only works when you have a text frame selected.',
351 ICON_ERROR)
352 result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
353 ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
354 BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
355
356 Defined button and icon constants:
357 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
358 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
359 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
360 </source>
361 <translation type="unfinished">messageBox("caption", "message",
362 icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
363 button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
364
365 Displays a message box with the title "caption", the message "message", and
366 an icon "icon" and up to 3 buttons. By default no icon is used and a single
367 button, OK, is displayed. Only the caption and message arguments are required,
368 though setting an icon and appropriate button(s) is strongly
369 recommended. The message text may contain simple HTML-like markup.
370
371 Returns the number of the button the user pressed. Button numbers start
372 at 1.
373
374 For the icon and the button parameters there are predefined constants available
375 with the same names as in the Qt Documentation. These are the BUTTON_* and
376 ICON_* constants defined in the module. There are also two extra constants that
377 can be binary-ORed with button constants:
378 BUTTONOPT_DEFAULT Pressing enter presses this button.
379 BUTTONOPT_ESCAPE Pressing escape presses this button.
380
381 Usage examples:
382 result = messageBox('Script failed',
383 'This script only works when you have a text frame selected.',
384 ICON_ERROR)
385 result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
386 ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
387 BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
388
389 Defined button and icon constants:
390 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
391 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
392 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
393 </translation>
394 </message>
395 <message>
396 <source>valueDialog(caption, message [,defaultvalue]) -> string
397
398 Shows the common 'Ask for string' dialog and returns its value as a string
399 Parameters: window title, text in the window and optional 'default' value.
400
401 Example: valueDialog('title', 'text in the window', 'optional')
402 </source>
403 <translation type="unfinished">valueDialog(caption, message [,defaultvalue]) -> string
404
405 Shows the common 'Ask for string' dialog and returns its value as a string
406 Parameters: window title, text in the window and optional 'default' value.
407
408 Example: valueDialog('title', 'text in the window', 'optional')
409 </translation>
410 </message>
411 <message>
412 <source>closeDoc()
413
414 Closes the current document without prompting to save.
415
416 May throw NoDocOpenError if there is no document to close
417 </source>
418 <translation type="unfinished">closeDoc()
419
420 Closes the current document without prompting to save.
421
422 May throw NoDocOpenError if there is no document to close
423 </translation>
424 </message>
425 <message>
426 <source>haveDoc() -> bool
427
428 Returns true if there is a document open.
429 </source>
430 <translation type="unfinished">haveDoc() -> bool
431
432 Returns true if there is a document open.
433 </translation>
434 </message>
435 <message>
436 <source>openDoc("name")
437
438 Opens the document "name".
439
440 May raise ScribusError if the document could not be opened.
441 </source>
442 <translation type="unfinished">openDoc("name")
443
444 Opens the document "name".
445
446 May raise ScribusError if the document could not be opened.
447 </translation>
448 </message>
449 <message>
450 <source>saveDoc()
451
452 Saves the current document with its current name, returns true if successful.
453 If the document has not already been saved, this may bring up an interactive
454 save file dialog.
455
456 If the save fails, there is currently no way to tell.
457 </source>
458 <translation type="unfinished">saveDoc()
459
460 Saves the current document with its current name, returns true if successful.
461 If the document has not already been saved, this may bring up an interactive
462 save file dialog.
463
464 If the save fails, there is currently no way to tell.
465 </translation>
466 </message>
467 <message>
468 <source>saveDocAs("name")
469
470 Saves the current document under the new name "name" (which may be a full or
471 relative path).
472
473 May raise ScribusError if the save fails.
474 </source>
475 <translation type="unfinished">saveDocAs("name")
476
477 Saves the current document under the new name "name" (which may be a full or
478 relative path).
479
480 May raise ScribusError if the save fails.
481 </translation>
482 </message>
483 <message>
484 <source>saveDocAs("author", "info", "description") -> bool
485
486 Sets the document information. "Author", "Info", "Description" are
487 strings.
488 </source>
489 <translation type="obsolete">saveDocAs("author", "info", "description") -> bool
490
491 Sets the document information. "Author", "Info", "Description" are
492 strings.
493 </translation>
494 </message>
495 <message>
496 <source>setMargins(lr, rr, tr, br)
497
498 Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
499 margins are given in the measurement units of the document - see UNIT_<type>
500 constants.
501 </source>
502 <translation type="unfinished">setMargins(lr, rr, tr, br)
503
504 Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
505 margins are given in the measurement units of the document - see UNIT_<type>
506 constants.
507 </translation>
508 </message>
509 <message>
510 <source>setUnit(type)
511
512 Changes the measurement unit of the document. Possible values for "unit" are
513 defined as constants UNIT_<type>.
514
515 May raise ValueError if an invalid unit is passed.
516 </source>
517 <translation type="unfinished">setUnit(type)
518
519 Changes the measurement unit of the document. Possible values for "unit" are
520 defined as constants UNIT_<type>.
521
522 May raise ValueError if an invalid unit is passed.
523 </translation>
524 </message>
525 <message>
526 <source>getUnit() -> integer (Scribus unit constant)
527
528 Returns the measurement units of the document. The returned value will be one
529 of the UNIT_* constants:
530 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
531 </source>
532 <translation type="unfinished">getUnit() -> integer (Scribus unit constant)
533
534 Returns the measurement units of the document. The returned value will be one
535 of the UNIT_* constants:
536 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
537 </translation>
538 </message>
539 <message>
540 <source>loadStylesFromFile("filename")
541
542 Loads paragraph styles from the Scribus document at "filename" into the
543 current document.
544 </source>
545 <translation type="unfinished">loadStylesFromFile("filename")
546
547 Loads paragraph styles from the Scribus document at "filename" into the
548 current document.
549 </translation>
550 </message>
551 <message>
552 <source>setDocType(facingPages, firstPageLeft)
553
554 Sets the document type. To get facing pages set the first parameter to
555 FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
556 to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
557 a right page use FIRSTPAGERIGHT.
558 </source>
559 <translation type="unfinished">setDocType(facingPages, firstPageLeft)
560
561 Sets the document type. To get facing pages set the first parameter to
562 FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
563 to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
564 a right page use FIRSTPAGERIGHT.
565 </translation>
566 </message>
567 <message>
568 <source>getLineColor(["name"]) -> string
569
570 Returns the name of the line color of the object "name".
571 If "name" is not given the currently selected item is used.
572 </source>
573 <translation>getLineColor(["name"]) -> string
574
575 Returns the name of the line colour of the object "name".
576 If "name" is not given the currently selected item is used.
577 </translation>
578 </message>
579 <message>
580 <source>getLineWidth(["name"]) -> integer
581
582 Returns the line width of the object "name". If "name"
583 is not given the currently selected Item is used.
584 </source>
585 <translation type="unfinished">getLineWidth(["name"]) -> integer
586
587 Returns the line width of the object "name". If "name"
588 is not given the currently selected Item is used.
589 </translation>
590 </message>
591 <message>
592 <source>getLineShade(["name"]) -> integer
593
594 Returns the shading value of the line color of the object "name".
595 If "name" is not given the currently selected item is used.
596 </source>
597 <translation>getLineShade(["name"]) -> integer
598
599 Returns the shading value of the line colour of the object "name".
600 If "name" is not given the currently selected item is used.
601 </translation>
602 </message>
603 <message>
604 <source>getLineJoin(["name"]) -> integer (see contants)
605
606 Returns the line join style of the object "name". If "name" is not given
607 the currently selected item is used. The join types are:
608 JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
609 </source>
610 <translation type="unfinished">getLineJoin(["name"]) -> integer (see contants)
611
612 Returns the line join style of the object "name". If "name" is not given
613 the currently selected item is used. The join types are:
614 JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
615 </translation>
616 </message>
617 <message>
618 <source>getLineEnd(["name"]) -> integer (see constants)
619
620 Returns the line cap style of the object "name". If "name" is not given the
621 currently selected item is used. The cap types are:
622 CAP_FLAT, CAP_ROUND, CAP_SQUARE
623 </source>
624 <translation type="unfinished">getLineEnd(["name"]) -> integer (see constants)
625
626 Returns the line cap style of the object "name". If "name" is not given the
627 currently selected item is used. The cap types are:
628 CAP_FLAT, CAP_ROUND, CAP_SQUARE
629 </translation>
630 </message>
631 <message>
632 <source>getLineStyle(["name"]) -> integer (see constants)
633
634 Returns the line style of the object "name". If "name" is not given the
635 currently selected item is used. Line style constants are:
636 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
637 </source>
638 <translation type="unfinished">getLineStyle(["name"]) -> integer (see constants)
639
640 Returns the line style of the object "name". If "name" is not given the
641 currently selected item is used. Line style constants are:
642 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
643 </translation>
644 </message>
645 <message>
646 <source>getFillShade(["name"]) -> integer
647
648 Returns the shading value of the fill color of the object "name".
649 If "name" is not given the currently selected item is used.
650 </source>
651 <translation>getFillShade(["name"]) -> integer
652
653 Returns the shading value of the fill colour of the object "name".
654 If "name" is not given the currently selected item is used.
655 </translation>
656 </message>
657 <message>
658 <source>getCornerRadius(["name"]) -> integer
659
660 Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used.
661 </source>
662 <translation type="unfinished">getCornerRadius(["name"]) -> integer
663
664 Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used.
665 </translation>
666 </message>
667 <message>
668 <source>getImageScale(["name"]) -> (x,y)
669
670 Returns a (x, y) tuple containing the scaling values of the image frame
671 "name". If "name" is not given the currently selected item is used.
672 </source>
673 <translation type="unfinished">getImageScale(["name"]) -> (x,y)
674
675 Returns a (x, y) tuple containing the scaling values of the image frame
676 "name". If "name" is not given the currently selected item is used.
677 </translation>
678 </message>
679 <message>
680 <source>getImageName(["name"]) -> string
681
682 Returns the filename for the image in the image frame. If "name" is not
683 given the currently selected item is used.
684 </source>
685 <translation type="unfinished">getImageName(["name"]) -> string
686
687 Returns the filename for the image in the image frame. If "name" is not
688 given the currently selected item is used.
689 </translation>
690 </message>
691 <message>
692 <source>getPosition(["name"]) -> (x,y)
693
694 Returns a (x, y) tuple with the position of the object "name".
695 If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
696 - see UNIT_<type> for reference.
697 </source>
698 <translation type="unfinished">getPosition(["name"]) -> (x,y)
699
700 Returns a (x, y) tuple with the position of the object "name".
701 If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
702 - see UNIT_<type> for reference.
703 </translation>
704 </message>
705 <message>
706 <source>getSize(["name"]) -> (width,height)
707
708 Returns a (width, height) tuple with the size of the object "name".
709 If "name" is not given the currently selected item is used. The size is
710 expressed in the current measurement unit of the document - see UNIT_<type>
711 for reference.
712 </source>
713 <translation type="unfinished">getSize(["name"]) -> (width,height)
714
715 Returns a (width, height) tuple with the size of the object "name".
716 If "name" is not given the currently selected item is used. The size is
717 expressed in the current measurement unit of the document - see UNIT_<type>
718 for reference.
719 </translation>
720 </message>
721 <message>
722 <source>getRotation(["name"]) -> integer
723
724 Returns the rotation of the object "name". The value is expressed in degrees,
725 and clockwise is positive. If "name" is not given the currently selected item
726 is used.
727 </source>
728 <translation type="unfinished">getRotation(["name"]) -> integer
729
730 Returns the rotation of the object "name". The value is expressed in degrees,
731 and clockwise is positive. If "name" is not given the currently selected item
732 is used.
733 </translation>
734 </message>
735 <message>
736 <source>getAllObjects() -> list
737
738 Returns a list containing the names of all objects on the current page.
739 </source>
740 <translation type="unfinished">getAllObjects() -> list
741
742 Returns a list containing the names of all objects on the current page.
743 </translation>
744 </message>
745 <message>
746 <source>getPropertyCType(object, property, includesuper=True)
747
748 Returns the name of the C type of `property' of `object'. See getProperty()
749 for details of arguments.
750
751 If `includesuper' is true, search inherited properties too.
752 </source>
753 <translation type="unfinished">getPropertyCType(object, property, includesuper=True)
754
755 Returns the name of the C type of `property' of `object'. See getProperty()
756 for details of arguments.
757
758 If `includesuper' is true, search inherited properties too.
759 </translation>
760 </message>
761 <message>
762 <source>getPropertyNames(object, includesuper=True)
763
764 Return a list of property names supported by `object'.
765 If `includesuper' is true, return properties supported
766 by parent classes as well.
767 </source>
768 <translation type="unfinished">getPropertyNames(object, includesuper=True)
769
770 Return a list of property names supported by `object'.
771 If `includesuper' is true, return properties supported
772 by parent classes as well.
773 </translation>
774 </message>
775 <message>
776 <source>getProperty(object, property)
777
778 Return the value of the property `property' of the passed `object'.
779
780 The `object' argument may be a string, in which case the named PageItem
781 is searched for. It may also be a PyCObject, which may point to any
782 C++ QObject instance.
783
784 The `property' argument must be a string, and is the name of the property
785 to look up on `object'.
786
787 The return value varies depending on the type of the property.
788 </source>
789 <translation type="unfinished">getProperty(object, property)
790
791 Return the value of the property `property' of the passed `object'.
792
793 The `object' argument may be a string, in which case the named PageItem
794 is searched for. It may also be a PyCObject, which may point to any
795 C++ QObject instance.
796
797 The `property' argument must be a string, and is the name of the property
798 to look up on `object'.
799
800 The return value varies depending on the type of the property.
801 </translation>
802 </message>
803 <message>
804 <source>setProperty(object, property, value)
805
806 Set `property' of `object' to `value'. If `value' cannot be converted to a type
807 compatible with the type of `property', an exception is raised. An exception may
808 also be raised if the underlying setter fails.
809
810 See getProperty() for more information.
811 </source>
812 <translation type="unfinished">setProperty(object, property, value)
813
814 Set `property' of `object' to `value'. If `value' cannot be converted to a type
815 compatible with the type of `property', an exception is raised. An exception may
816 also be raised if the underlying setter fails.
817
818 See getProperty() for more information.
819 </translation>
820 </message>
821 <message>
822 <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
823
824 Return a list of children of `object', possibly restricted to children
825 of class named `ofclass' or children named `ofname'. If `recursive' is true,
826 search recursively through children, grandchildren, etc.
827
828 See QObject::children() in the Qt docs for more information.
829 </source>
830 <translation type="unfinished">getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
831
832 Return a list of children of `object', possibly restricted to children
833 of class named `ofclass' or children named `ofname'. If `recursive' is true,
834 search recursively through children, grandchildren, etc.
835
836 See QObject::children() in the Qt docs for more information.
837 </translation>
838 </message>
839 <message>
840 <source>getChild(object, childname, ofclass=None, recursive=True)
841
842 Return the first child of `object' named `childname', possibly restricting
843 the search to children of type name `ofclass'. If `recursive' is true,
844 search recursively through children, grandchildren, etc.
845 </source>
846 <translation type="unfinished">getChild(object, childname, ofclass=None, recursive=True)
847
848 Return the first child of `object' named `childname', possibly restricting
849 the search to children of type name `ofclass'. If `recursive' is true,
850 search recursively through children, grandchildren, etc.
851 </translation>
852 </message>
853 <message>
854 <source>moveObjectAbs(x, y [, "name"])
855
856 Moves the object "name" to a new location. The coordinates are expressed in
857 the current measurement unit of the document (see UNIT constants). If "name"
858 is not given the currently selected item is used. If the object "name"
859 belongs to a group, the whole group is moved.
860 </source>
861 <translation type="unfinished">moveObjectAbs(x, y [, "name"])
862
863 Moves the object "name" to a new location. The coordinates are expressed in
864 the current measurement unit of the document (see UNIT constants). If "name"
865 is not given the currently selected item is used. If the object "name"
866 belongs to a group, the whole group is moved.
867 </translation>
868 </message>
869 <message>
870 <source>rotateObject(rot [, "name"])
871
872 Rotates the object "name" by "rot" degrees relatively. The object is
873 rotated by the vertex that is currently selected as the rotation point - by
874 default, the top left vertext at zero rotation. Positive values mean counter
875 clockwise rotation when the default rotation point is used. If "name" is not
876 given the currently selected item is used.
877 </source>
878 <translation type="unfinished">rotateObject(rot [, "name"])
879
880 Rotates the object "name" by "rot" degrees relatively. The object is
881 rotated by the vertex that is currently selected as the rotation point - by
882 default, the top left vertext at zero rotation. Positive values mean counter
883 clockwise rotation when the default rotation point is used. If "name" is not
884 given the currently selected item is used.
885 </translation>
886 </message>
887 <message>
888 <source>rotateObjectAbs(rot [, "name"])
889
890 Sets the rotation of the object "name" to "rot". Positve values
891 mean counter clockwise rotation. If "name" is not given the currently
892 selected item is used.
893 </source>
894 <translation type="unfinished">rotateObjectAbs(rot [, "name"])
895
896 Sets the rotation of the object "name" to "rot". Positve values
897 mean counter clockwise rotation. If "name" is not given the currently
898 selected item is used.
899 </translation>
900 </message>
901 <message>
902 <source>sizeObject(width, height [, "name"])
903
904 Resizes the object "name" to the given width and height. If "name"
905 is not given the currently selected item is used.
906 </source>
907 <translation type="unfinished">sizeObject(width, height [, "name"])
908
909 Resizes the object "name" to the given width and height. If "name"
910 is not given the currently selected item is used.
911 </translation>
912 </message>
913 <message>
914 <source>getSelectedObject([nr]) -> string
915
916 Returns the name of the selected object. "nr" if given indicates the number
917 of the selected object, e.g. 0 means the first selected object, 1 means the
918 second selected Object and so on.
919 </source>
920 <translation type="unfinished">getSelectedObject([nr]) -> string
921
922 Returns the name of the selected object. "nr" if given indicates the number
923 of the selected object, e.g. 0 means the first selected object, 1 means the
924 second selected Object and so on.
925 </translation>
926 </message>
927 <message>
928 <source>selectionCount() -> integer
929
930 Returns the number of selected objects.
931 </source>
932 <translation type="unfinished">selectionCount() -> integer
933
934 Returns the number of selected objects.
935 </translation>
936 </message>
937 <message>
938 <source>selectObject("name")
939
940 Selects the object with the given "name".
941 </source>
942 <translation type="unfinished">selectObject("name")
943
944 Selects the object with the given "name".
945 </translation>
946 </message>
947 <message>
948 <source>deselectAll()
949
950 Deselects all objects in the whole document.
951 </source>
952 <translation type="unfinished">deselectAll()
953
954 Deselects all objects in the whole document.
955 </translation>
956 </message>
957 <message>
958 <source>groupObjects(list)
959
960 Groups the objects named in "list" together. "list" must contain the names
961 of the objects to be grouped. If "list" is not given the currently selected
962 items are used.
963 </source>
964 <translation type="unfinished">groupObjects(list)
965
966 Groups the objects named in "list" together. "list" must contain the names
967 of the objects to be grouped. If "list" is not given the currently selected
968 items are used.
969 </translation>
970 </message>
971 <message>
972 <source>unGroupObjects("name")
973
974 Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source>
975 <translation type="unfinished">unGroupObjects("name")
976
977 Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation>
978 </message>
979 <message>
980 <source>scaleGroup(factor [,"name"])
981
982 Scales the group the object "name" belongs to. Values greater than 1 enlarge
983 the group, values smaller than 1 make the group smaller e.g a value of 0.5
984 scales the group to 50 % of its original size, a value of 1.5 scales the group
985 to 150 % of its original size. The value for "factor" must be greater than
986 0. If "name" is not given the currently selected item is used.
987
988 May raise ValueError if an invalid scale factor is passed.
989 </source>
990 <translation type="unfinished">scaleGroup(factor [,"name"])
991
992 Scales the group the object "name" belongs to. Values greater than 1 enlarge
993 the group, values smaller than 1 make the group smaller e.g a value of 0.5
994 scales the group to 50 % of its original size, a value of 1.5 scales the group
995 to 150 % of its original size. The value for "factor" must be greater than
996 0. If "name" is not given the currently selected item is used.
997
998 May raise ValueError if an invalid scale factor is passed.
999 </translation>
1000 </message>
1001 <message>
1002 <source>loadImage("filename" [, "name"])
1003
1004 Loads the picture "picture" into the image frame "name". If "name" is
1005 not given the currently selected item is used.
1006
1007 May raise WrongFrameTypeError if the target frame is not an image frame
1008 </source>
1009 <translation type="unfinished">loadImage("filename" [, "name"])
1010
1011 Loads the picture "picture" into the image frame "name". If "name" is
1012 not given the currently selected item is used.
1013
1014 May raise WrongFrameTypeError if the target frame is not an image frame
1015 </translation>
1016 </message>
1017 <message>
1018 <source>scaleImage(x, y [, "name"])
1019
1020 Sets the scaling factors of the picture in the image frame "name".
1021 If "name" is not given the currently selected item is used. A number of 1
1022 means 100 %.
1023
1024 May raise WrongFrameTypeError if the target frame is not an image frame
1025 </source>
1026 <translation type="unfinished">scaleImage(x, y [, "name"])
1027
1028 Sets the scaling factors of the picture in the image frame "name".
1029 If "name" is not given the currently selected item is used. A number of 1
1030 means 100 %.
1031
1032 May raise WrongFrameTypeError if the target frame is not an image frame
1033 </translation>
1034 </message>
1035 <message>
1036 <source>lockObject(["name"]) -> bool
1037
1038 Locks the object "name" if it's unlocked or unlock it if it's locked.
1039 If "name" is not given the currently selected item is used. Returns true
1040 if locked.
1041 </source>
1042 <translation type="unfinished">lockObject(["name"]) -> bool
1043
1044 Locks the object "name" if it's unlocked or unlock it if it's locked.
1045 If "name" is not given the currently selected item is used. Returns true
1046 if locked.
1047 </translation>
1048 </message>
1049 <message>
1050 <source>isLocked(["name"]) -> bool
1051
1052 Returns true if is the object "name" locked. If "name" is not given the
1053 currently selected item is used.
1054 </source>
1055 <translation type="unfinished">isLocked(["name"]) -> bool
1056
1057 Returns true if is the object "name" locked. If "name" is not given the
1058 currently selected item is used.
1059 </translation>
1060 </message>
1061 <message>
1062 <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
1063
1064 Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
1065 If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
1066 Both `scaletoframe' and `proportional' are boolean.
1067
1068 May raise WrongFrameTypeError.
1069 </source>
1070 <translation type="unfinished">setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
1071
1072 Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
1073 If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
1074 Both `scaletoframe' and `proportional' are boolean.
1075
1076 May raise WrongFrameTypeError.
1077 </translation>
1078 </message>
1079 <message>
1080 <source>getFontNames() -> list
1081
1082 Returns a list with the names of all available fonts.
1083 </source>
1084 <translation type="unfinished">getFontNames() -> list
1085
1086 Returns a list with the names of all available fonts.
1087 </translation>
1088 </message>
1089 <message>
1090 <source>getXFontNames() -> list of tuples
1091
1092 Returns a larger font info. It's a list of the tuples with:
1093 [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1094 </source>
1095 <translation type="unfinished">getXFontNames() -> list of tuples
1096
1097 Returns a larger font info. It's a list of the tuples with:
1098 [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1099 </translation>
1100 </message>
1101 <message>
1102 <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool
1103
1104 Creates an image preview of font "name" with given text "sample" and size.
1105 If "filename" is not "", image is saved into "filename". Otherwise
1106 image data is returned as a string. The optional "format" argument
1107 specifies the image format to generate, and supports any format allowed
1108 by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
1109
1110 May raise NotFoundError if the specified font can't be found.
1111 May raise ValueError if an empty sample or filename is passed.
1112 </source>
1113 <translation type="unfinished">renderFont("name", "filename", "sample", size, format="PPM") -> bool
1114
1115 Creates an image preview of font "name" with given text "sample" and size.
1116 If "filename" is not "", image is saved into "filename". Otherwise
1117 image data is returned as a string. The optional "format" argument
1118 specifies the image format to generate, and supports any format allowed
1119 by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
1120
1121 May raise NotFoundError if the specified font can't be found.
1122 May raise ValueError if an empty sample or filename is passed.
1123 </translation>
1124 </message>
1125 <message>
1126 <source>getLayers() -> list
1127
1128 Returns a list with the names of all defined layers.
1129 </source>
1130 <translation type="unfinished">getLayers() -> list
1131
1132 Returns a list with the names of all defined layers.
1133 </translation>
1134 </message>
1135 <message>
1136 <source>setActiveLayer("name")
1137
1138 Sets the active layer to the layer named "name".
1139
1140 May raise NotFoundError if the layer can't be found.
1141 May raise ValueError if the layer name isn't acceptable.
1142 </source>
1143 <translation type="unfinished">setActiveLayer("name")
1144
1145 Sets the active layer to the layer named "name".
1146
1147 May raise NotFoundError if the layer can't be found.
1148 May raise ValueError if the layer name isn't acceptable.
1149 </translation>
1150 </message>
1151 <message>
1152 <source>getActiveLayer() -> string
1153
1154 Returns the name of the current active layer.
1155 </source>
1156 <translation type="unfinished">getActiveLayer() -> string
1157
1158 Returns the name of the current active layer.
1159 </translation>
1160 </message>
1161 <message>
1162 <source>sentToLayer("layer" [, "name"])
1163
1164 Sends the object "name" to the layer "layer". The layer must exist.
1165 If "name" is not given the currently selected item is used.
1166
1167 May raise NotFoundError if the layer can't be found.
1168 May raise ValueError if the layer name isn't acceptable.
1169 </source>
1170 <translation type="unfinished">sentToLayer("layer" [, "name"])
1171
1172 Sends the object "name" to the layer "layer". The layer must exist.
1173 If "name" is not given the currently selected item is used.
1174
1175 May raise NotFoundError if the layer can't be found.
1176 May raise ValueError if the layer name isn't acceptable.
1177 </translation>
1178 </message>
1179 <message>
1180 <source>setLayerVisible("layer", visible)
1181
1182 Sets the layer "layer" to be visible or not. If is the visible set to false
1183 the layer is invisible.
1184
1185 May raise NotFoundError if the layer can't be found.
1186 May raise ValueError if the layer name isn't acceptable.
1187 </source>
1188 <translation type="unfinished">setLayerVisible("layer", visible)
1189
1190 Sets the layer "layer" to be visible or not. If is the visible set to false
1191 the layer is invisible.
1192
1193 May raise NotFoundError if the layer can't be found.
1194 May raise ValueError if the layer name isn't acceptable.
1195 </translation>
1196 </message>
1197 <message>
1198 <source>setLayerPrintable("layer", printable)
1199
1200 Sets the layer "layer" to be printable or not. If is the printable set to
1201 false the layer won't be printed.
1202
1203 May raise NotFoundError if the layer can't be found.
1204 May raise ValueError if the layer name isn't acceptable.
1205 </source>
1206 <translation type="unfinished">setLayerPrintable("layer", printable)
1207
1208 Sets the layer "layer" to be printable or not. If is the printable set to
1209 false the layer won't be printed.
1210
1211 May raise NotFoundError if the layer can't be found.
1212 May raise ValueError if the layer name isn't acceptable.
1213 </translation>
1214 </message>
1215 <message>
1216 <source>isLayerPrintable("layer") -> bool
1217
1218 Returns whether the layer "layer" is visible or not, a value of True means
1219 that the layer "layer" is visible, a value of False means that the layer
1220 "layer" is invisible.
1221
1222 May raise NotFoundError if the layer can't be found.
1223 May raise ValueError if the layer name isn't acceptable.
1224 </source>
1225 <translation type="unfinished">isLayerPrintable("layer") -> bool
1226
1227 Returns whether the layer "layer" is visible or not, a value of True means
1228 that the layer "layer" is visible, a value of False means that the layer
1229 "layer" is invisible.
1230
1231 May raise NotFoundError if the layer can't be found.
1232 May raise ValueError if the layer name isn't acceptable.
1233 </translation>
1234 </message>
1235 <message>
1236 <source>isLayerPrintable("layer") -> bool
1237
1238 Returns whether the layer "layer" is printable or not, a value of True means
1239 that the layer "layer" can be printed, a value of False means that printing
1240 the layer "layer" is disabled.
1241
1242 May raise NotFoundError if the layer can't be found.
1243 May raise ValueError if the layer name isn't acceptable.
1244 </source>
1245 <translation type="unfinished">isLayerPrintable("layer") -> bool
1246
1247 Returns whether the layer "layer" is printable or not, a value of True means
1248 that the layer "layer" can be printed, a value of False means that printing
1249 the layer "layer" is disabled.
1250
1251 May raise NotFoundError if the layer can't be found.
1252 May raise ValueError if the layer name isn't acceptable.
1253 </translation>
1254 </message>
1255 <message>
1256 <source>deleteLayer("layer")
1257
1258 Deletes the layer with the name "layer". Nothing happens if the layer doesn't
1259 exists or if it's the only layer in the document.
1260
1261 May raise NotFoundError if the layer can't be found.
1262 May raise ValueError if the layer name isn't acceptable.
1263 </source>
1264 <translation type="unfinished">deleteLayer("layer")
1265
1266 Deletes the layer with the name "layer". Nothing happens if the layer doesn't
1267 exists or if it's the only layer in the document.
1268
1269 May raise NotFoundError if the layer can't be found.
1270 May raise ValueError if the layer name isn't acceptable.
1271 </translation>
1272 </message>
1273 <message>
1274 <source>createLayer(layer)
1275
1276 Creates a new layer with the name "name".
1277
1278 May raise ValueError if the layer name isn't acceptable.
1279 </source>
1280 <translation type="unfinished">createLayer(layer)
1281
1282 Creates a new layer with the name "name".
1283
1284 May raise ValueError if the layer name isn't acceptable.
1285 </translation>
1286 </message>
1287 <message>
1288 <source>getGuiLanguage() -> string
1289
1290 Returns a string with the -lang value.
1291 </source>
1292 <translation type="unfinished">getGuiLanguage() -> string
1293
1294 Returns a string with the -lang value.
1295 </translation>
1296 </message>
1297 <message>
1298 <source>createEllipse(x, y, width, height, ["name"]) -> string
1299
1300 Creates a new ellipse on the current page and returns its name.
1301 The coordinates are given in the current measurement units of the document
1302 (see UNIT constants). "name" should be a unique identifier for the object
1303 because you need this name for further referencing of that object. If "name"
1304 is not given Scribus will create one for you.
1305
1306 May raise NameExistsError if you explicitly pass a name that's already used.
1307 </source>
1308 <translation type="unfinished">createEllipse(x, y, width, height, ["name"]) -> string
1309
1310 Creates a new ellipse on the current page and returns its name.
1311 The coordinates are given in the current measurement units of the document
1312 (see UNIT constants). "name" should be a unique identifier for the object
1313 because you need this name for further referencing of that object. If "name"
1314 is not given Scribus will create one for you.
1315
1316 May raise NameExistsError if you explicitly pass a name that's already used.
1317 </translation>
1318 </message>
1319 <message>
1320 <source>createImage(x, y, width, height, ["name"]) -> string
1321
1322 Creates a new picture frame on the current page and returns its name. The
1323 coordinates are given in the current measurement units of the document.
1324 "name" should be a unique identifier for the object because you need this
1325 name for further access to that object. If "name" is not given Scribus will
1326 create one for you.
1327
1328 May raise NameExistsError if you explicitly pass a name that's already used.
1329 </source>
1330 <translation type="unfinished">createImage(x, y, width, height, ["name"]) -> string
1331
1332 Creates a new picture frame on the current page and returns its name. The
1333 coordinates are given in the current measurement units of the document.
1334 "name" should be a unique identifier for the object because you need this
1335 name for further access to that object. If "name" is not given Scribus will
1336 create one for you.
1337
1338 May raise NameExistsError if you explicitly pass a name that's already used.
1339 </translation>
1340 </message>
1341 <message>
1342 <source>createText(x, y, width, height, ["name"]) -> string
1343
1344 Creates a new text frame on the actual page and returns its name.
1345 The coordinates are given in the actual measurement unit of the document (see
1346 UNIT constants). "name" should be a unique identifier for the object because
1347 you need this name for further referencing of that object. If "name" is not
1348 given Scribus will create one for you.
1349
1350 May raise NameExistsError if you explicitly pass a name that's already used.
1351 </source>
1352 <translation type="unfinished">createText(x, y, width, height, ["name"]) -> string
1353
1354 Creates a new text frame on the actual page and returns its name.
1355 The coordinates are given in the actual measurement unit of the document (see
1356 UNIT constants). "name" should be a unique identifier for the object because
1357 you need this name for further referencing of that object. If "name" is not
1358 given Scribus will create one for you.
1359
1360 May raise NameExistsError if you explicitly pass a name that's already used.
1361 </translation>
1362 </message>
1363 <message>
1364 <source>createLine(x1, y1, x2, y2, ["name"]) -> string
1365
1366 Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1367 its name. The coordinates are given in the current measurement unit of the
1368 document (see UNIT constants). "name" should be a unique identifier for the
1369 object because you need this name for further access to that object. If
1370 "name" is not given Scribus will create one for you.
1371
1372 May raise NameExistsError if you explicitly pass a name that's already used.
1373 </source>
1374 <translation type="unfinished">createLine(x1, y1, x2, y2, ["name"]) -> string
1375
1376 Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1377 its name. The coordinates are given in the current measurement unit of the
1378 document (see UNIT constants). "name" should be a unique identifier for the
1379 object because you need this name for further access to that object. If
1380 "name" is not given Scribus will create one for you.
1381
1382 May raise NameExistsError if you explicitly pass a name that's already used.
1383 </translation>
1384 </message>
1385 <message>
1386 <source>createPolyLine(list, ["name"]) -> string
1387
1388 Creates a new polyline and returns its name. The points for the polyline are
1389 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1390 The coordinates are given in the current measurement units of the document (see
1391 UNIT constants). "name" should be a unique identifier for the object because
1392 you need this name for further access to that object. If "name" is not given
1393 Scribus will create one for you.
1394
1395 May raise NameExistsError if you explicitly pass a name that's already used.
1396 May raise ValueError if an insufficient number of points is passed or if
1397 the number of values passed don't group into points without leftovers.
1398 </source>
1399 <translation type="unfinished">createPolyLine(list, ["name"]) -> string
1400
1401 Creates a new polyline and returns its name. The points for the polyline are
1402 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1403 The coordinates are given in the current measurement units of the document (see
1404 UNIT constants). "name" should be a unique identifier for the object because
1405 you need this name for further access to that object. If "name" is not given
1406 Scribus will create one for you.
1407
1408 May raise NameExistsError if you explicitly pass a name that's already used.
1409 May raise ValueError if an insufficient number of points is passed or if
1410 the number of values passed don't group into points without leftovers.
1411 </translation>
1412 </message>
1413 <message>
1414 <source>createPolygon(list, ["name"]) -> string
1415
1416 Creates a new polygon and returns its name. The points for the polygon are
1417 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1418 At least three points are required. There is no need to repeat the first point
1419 to close the polygon. The polygon is automatically closed by connecting the
1420 first and the last point. The coordinates are given in the current measurement
1421 units of the document (see UNIT constants). "name" should be a unique
1422 identifier for the object because you need this name for further access to that
1423 object. If "name" is not given Scribus will create one for you.
1424
1425 May raise NameExistsError if you explicitly pass a name that's already used.
1426 May raise ValueError if an insufficient number of points is passed or if
1427 the number of values passed don't group into points without leftovers.
1428 </source>
1429 <translation type="unfinished">createPolygon(list, ["name"]) -> string
1430
1431 Creates a new polygon and returns its name. The points for the polygon are
1432 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1433 At least three points are required. There is no need to repeat the first point
1434 to close the polygon. The polygon is automatically closed by connecting the
1435 first and the last point. The coordinates are given in the current measurement
1436 units of the document (see UNIT constants). "name" should be a unique
1437 identifier for the object because you need this name for further access to that
1438 object. If "name" is not given Scribus will create one for you.
1439
1440 May raise NameExistsError if you explicitly pass a name that's already used.
1441 May raise ValueError if an insufficient number of points is passed or if
1442 the number of values passed don't group into points without leftovers.
1443 </translation>
1444 </message>
1445 <message>
1446 <source>createBezierLine(list, ["name"]) -> string
1447
1448 Creates a new bezier curve and returns its name. The points for the bezier
1449 curve are stored in the list "list" in the following order:
1450 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1451 In the points list, x and y mean the x and y coordinates of the point and kx
1452 and ky meaning the control point for the curve. The coordinates are given in
1453 the current measurement units of the document (see UNIT constants). "name"
1454 should be a unique identifier for the object because you need this name for
1455 further access to that object. If "name" is not given Scribus will create one
1456 for you.
1457
1458 May raise NameExistsError if you explicitly pass a name that's already used.
1459 May raise ValueError if an insufficient number of points is passed or if
1460 the number of values passed don't group into points without leftovers.
1461 </source>
1462 <translation type="unfinished">createBezierLine(list, ["name"]) -> string
1463
1464 Creates a new bezier curve and returns its name. The points for the bezier
1465 curve are stored in the list "list" in the following order:
1466 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1467 In the points list, x and y mean the x and y coordinates of the point and kx
1468 and ky meaning the control point for the curve. The coordinates are given in
1469 the current measurement units of the document (see UNIT constants). "name"
1470 should be a unique identifier for the object because you need this name for
1471 further access to that object. If "name" is not given Scribus will create one
1472 for you.
1473
1474 May raise NameExistsError if you explicitly pass a name that's already used.
1475 May raise ValueError if an insufficient number of points is passed or if
1476 the number of values passed don't group into points without leftovers.
1477 </translation>
1478 </message>
1479 <message>
1480 <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
1481
1482 Creates a new pathText by merging the two objects "textbox" and
1483 "beziercurve" and returns its name. The coordinates are given in the current
1484 measurement unit of the document (see UNIT constants). "name" should be a
1485 unique identifier for the object because you need this name for further access
1486 to that object. If "name" is not given Scribus will create one for you.
1487
1488 May raise NameExistsError if you explicitly pass a name that's already used.
1489 May raise NotFoundError if one or both of the named base object don't exist.
1490 </source>
1491 <translation type="unfinished">createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
1492
1493 Creates a new pathText by merging the two objects "textbox" and
1494 "beziercurve" and returns its name. The coordinates are given in the current
1495 measurement unit of the document (see UNIT constants). "name" should be a
1496 unique identifier for the object because you need this name for further access
1497 to that object. If "name" is not given Scribus will create one for you.
1498
1499 May raise NameExistsError if you explicitly pass a name that's already used.
1500 May raise NotFoundError if one or both of the named base object don't exist.
1501 </translation>
1502 </message>
1503 <message>
1504 <source>deleteObject(["name"])
1505
1506 Deletes the item with the name "name". If "name" is not given the currently
1507 selected item is deleted.
1508 </source>
1509 <translation type="unfinished">deleteObject(["name"])
1510
1511 Deletes the item with the name "name". If "name" is not given the currently
1512 selected item is deleted.
1513 </translation>
1514 </message>
1515 <message>
1516 <source>textFlowsAroundFrame("name" [, state])
1517
1518 Enables/disables "Text Flows Around Frame" feature for object "name".
1519 Called with parameters string name and optional boolean "state". If "state"
1520 is not passed, text flow is toggled.
1521 </source>
1522 <translation type="unfinished">textFlowsAroundFrame("name" [, state])
1523
1524 Enables/disables "Text Flows Around Frame" feature for object "name".
1525 Called with parameters string name and optional boolean "state". If "state"
1526 is not passed, text flow is toggled.
1527 </translation>
1528 </message>
1529 <message>
1530 <source>objectExists(["name"]) -> bool
1531
1532 Test if an object with specified name really exists in the document.
1533 The optional parameter is the object name. When no object name is given,
1534 returns True if there is something selected.
1535 </source>
1536 <translation type="unfinished">objectExists(["name"]) -> bool
1537
1538 Test if an object with specified name really exists in the document.
1539 The optional parameter is the object name. When no object name is given,
1540 returns True if there is something selected.
1541 </translation>
1542 </message>
1543 <message>
1544 <source>setStyle("style" [, "name"])
1545
1546 Apply the named "style" to the object named "name". If is no object name
1547 given, it's applied on the selected object.
1548 </source>
1549 <translation type="unfinished">setStyle("style" [, "name"])
1550
1551 <