"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() -&gt; 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() -&gt; list
   13 
   14       傳回檔案中所有已定義顏色名稱的列表
   15       
   16       </translation>
   17     </message>
   18     <message>
   19         <source>newDocDialog() -&gt; bool
   20 
   21 Displays the &quot;New Document&quot; 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() -&gt; bool
   26 
   27 顯示 &quot;新建檔案&quot; 對話視窗, 如果使用者接受設定值, 則開啟新的檔案. 如果使用者案取消鍵,
   28 檔案將不會新建. 如果新檔案已經新增, 傳回 &quot;真&quot;.
   29       </translation>
   30     </message>
   31     <message>
   32         <source>getFillColor([&quot;name&quot;]) -&gt; string
   33 
   34 Returns the name of the fill color of the object &quot;name&quot;.
   35 If &quot;name&quot; 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 [, &quot;name&quot;])
   41 
   42 Moves the object &quot;name&quot; 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 &quot;name&quot; is not given the currently selected item is used.
   45 If the object &quot;name&quot; 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, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the object
   64 because you need this name to reference that object in future. If &quot;name&quot;
   65 is not given Scribus will create one for you.
   66 
   67 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
   68 </source>
   69         <translation type="unfinished"></translation>
   70     </message>
   71     <message>
   72         <source>newPage(where [,&quot;masterpage&quot;])
   73 
   74 Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
   75 document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
   76 counted from 1 upwards, no matter what the displayed first page number of your
   77 document is. The optional parameter &quot;masterpage&quot; 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, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
   86 
   87 Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
   88 the same as for setFillColor() and setFillShade(). See the constants for
   89 available types (FILL_&lt;type&gt;).
   90 </source>
   91         <translation type="unfinished"></translation>
   92     </message>
   93     <message>
   94         <source>getFontSize([&quot;name&quot;]) -&gt; float
   95 
   96 Returns the font size in points for the text frame &quot;name&quot;. If this text
   97 frame has some text selected the value assigned to the first character of
   98 the selection is returned.
   99 If &quot;name&quot; is not given the currently selected item is used.
  100 </source>
  101         <translation type="unfinished"></translation>
  102     </message>
  103     <message>
  104         <source>messagebarText(&quot;string&quot;)
  105 
  106 Writes the &quot;string&quot; into the Scribus message bar (status line). The text
  107 must be UTF8 encoded or &apos;unicode&apos; string(recommended).
  108 </source>
  109         <translation type="unfinished"></translation>
  110     </message>
  111     <message>
  112         <source>importSVG(&quot;string&quot;)
  113 
  114 The &quot;string&quot; must be a valid filename for a SVG image. The text
  115 must be UTF8 encoded or &apos;unicode&apos; string(recommended).
  116 </source>
  117         <translation type="unfinished"></translation>
  118     </message>
  119     <message>
  120         <source>newDocument(size, margins, orientation, firstPageNumber,
  121                         unit, pagesType, firstPageOrder) -&gt; 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_&lt;paper_type&gt; 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&apos;ll usually want 1, it&apos;s useful to have higher
  136 numbers if you&apos;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(&quot;name&quot;) -&gt; tuple
  167 
  168 Returns a tuple (C, M, Y, K) containing the four color components of the
  169 color &quot;name&quot; 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&apos;t found.
  173 May raise ValueError if an invalid color name is specified.
  174 </source>
  175         <translation>getColor(&quot;name&quot;) -&gt; tuple
  176 
  177 Returns a tuple (C, M, Y, K) containing the four colour components of the
  178 colour &quot;name&quot; 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&apos;t found.
  182 May raise ValueError if an invalid colour name is specified.
  183 </translation>
  184     </message>
  185     <message>
  186         <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple
  187 
  188 Returns a tuple (R,G,B) containing the three color components of the
  189 color &quot;name&quot; 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&apos;t found.
  194 May raise ValueError if an invalid color name is specified.
  195 </source>
  196         <translation>getColorAsRGB(&quot;name&quot;) -&gt; tuple
  197 
  198 Returns a tuple (R,G,B) containing the three colour components of the
  199 colour &quot;name&quot; 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&apos;t found.
  204 May raise ValueError if an invalid colour name is specified.
  205 </translation>
  206     </message>
  207     <message>
  208         <source>changeColor(&quot;name&quot;, c, m, y, k)
  209 
  210 Changes the color &quot;name&quot; 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&apos;t found.
  215 May raise ValueError if an invalid color name is specified.
  216 </source>
  217         <translation>changeColour(&quot;name&quot;, c, m, y, k)
  218 
  219 Changes the colour &quot;name&quot; 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&apos;t found.
  224 May raise ValueError if an invalid colour name is specified.
  225 </translation>
  226     </message>
  227     <message>
  228         <source>defineColor(&quot;name&quot;, c, m, y, k)
  229 
  230 Defines a new color &quot;name&quot;. 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(&quot;name&quot;, c, m, y, k)
  237 
  238 Defines a new colour &quot;name&quot;. 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(&quot;name&quot;, &quot;replace&quot;)
  247 
  248 Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
  249 color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
  250 &quot;None&quot; - transparent.
  251 
  252 deleteColor works on the default document colors if there is no document open.
  253 In that case, &quot;replace&quot;, if specified, has no effect.
  254 
  255 May raise NotFoundError if a named color wasn&apos;t found.
  256 May raise ValueError if an invalid color name is specified.
  257 </source>
  258         <translation>deleteColor(&quot;name&quot;, &quot;replace&quot;)
  259 
  260 Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
  261 colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
  262 &quot;None&quot; - transparent.
  263 
  264 deleteColor works on the default document colours if there is no document open.
  265 In that case, &quot;replace&quot;, if specified, has no effect.
  266 
  267 May raise NotFoundError if a named colour wasn&apos;t found.
  268 May raise ValueError if an invalid colour name is specified.
  269 </translation>
  270     </message>
  271     <message>
  272         <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
  273 
  274 Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
  275 
  276 May raise NotFoundError if a named color wasn&apos;t found.
  277 May raise ValueError if an invalid color name is specified.
  278 </source>
  279         <translation>replaceColor(&quot;name&quot;, &quot;replace&quot;)
  280 
  281 Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.
  282 
  283 May raise NotFoundError if a named colour wasn&apos;t found.
  284 May raise ValueError if an invalid colour name is specified.
  285 </translation>
  286     </message>
  287     <message>
  288         <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
  289 
  290 Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
  291 with the filter string &quot;filter&quot;. A default filename or file path can also
  292 supplied, leave this string empty when you don&apos;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 &quot;Save As&quot; dialog
  295 otherwise it acts like a &quot;File Open Dialog&quot;. 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 &apos;comment (*.type *.type2 ...)&apos;.
  300 For example &apos;Images (*.png *.xpm *.jpg)&apos;.
  301 
  302 Refer to the Qt-Documentation for QFileDialog for details on filters.
  303 
  304 Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
  305 Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
  306 </source>
  307         <translation type="unfinished">fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
  308 
  309 Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
  310 with the filter string &quot;filter&quot;. A default filename or file path can also
  311 supplied, leave this string empty when you don&apos;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 &quot;Save As&quot; dialog
  314 otherwise it acts like a &quot;File Open Dialog&quot;. 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 &apos;comment (*.type *.type2 ...)&apos;.
  319 For example &apos;Images (*.png *.xpm *.jpg)&apos;.
  320 
  321 Refer to the Qt-Documentation for QFileDialog for details on filters.
  322 
  323 Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
  324 Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
  325 </translation>
  326     </message>
  327     <message>
  328         <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
  329     icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
  330     button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
  331 
  332 Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
  333 an icon &quot;icon&quot; 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(&apos;Script failed&apos;,
  350                     &apos;This script only works when you have a text frame selected.&apos;,
  351                     ICON_ERROR)
  352 result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
  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(&quot;caption&quot;, &quot;message&quot;,
  362     icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
  363     button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
  364 
  365 Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
  366 an icon &quot;icon&quot; 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(&apos;Script failed&apos;,
  383                     &apos;This script only works when you have a text frame selected.&apos;,
  384                     ICON_ERROR)
  385 result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
  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]) -&gt; string
  397 
  398 Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
  399 Parameters: window title, text in the window and optional &apos;default&apos; value.
  400 
  401 Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
  402 </source>
  403         <translation type="unfinished">valueDialog(caption, message [,defaultvalue]) -&gt; string
  404 
  405 Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
  406 Parameters: window title, text in the window and optional &apos;default&apos; value.
  407 
  408 Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
  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() -&gt; bool
  427 
  428 Returns true if there is a document open.
  429 </source>
  430         <translation type="unfinished">haveDoc() -&gt; bool
  431 
  432 Returns true if there is a document open.
  433 </translation>
  434     </message>
  435     <message>
  436         <source>openDoc(&quot;name&quot;)
  437 
  438 Opens the document &quot;name&quot;.
  439 
  440 May raise ScribusError if the document could not be opened.
  441 </source>
  442         <translation type="unfinished">openDoc(&quot;name&quot;)
  443 
  444 Opens the document &quot;name&quot;.
  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(&quot;name&quot;)
  469 
  470 Saves the current document under the new name &quot;name&quot; (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(&quot;name&quot;)
  476 
  477 Saves the current document under the new name &quot;name&quot; (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(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
  485 
  486 Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
  487 strings.
  488 </source>
  489         <translation type="obsolete">saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
  490 
  491 Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; 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_&lt;type&gt;
  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_&lt;type&gt;
  506 constants.
  507 </translation>
  508     </message>
  509     <message>
  510         <source>setUnit(type)
  511 
  512 Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
  513 defined as constants UNIT_&lt;type&gt;.
  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 &quot;unit&quot; are
  520 defined as constants UNIT_&lt;type&gt;.
  521 
  522 May raise ValueError if an invalid unit is passed.
  523 </translation>
  524     </message>
  525     <message>
  526         <source>getUnit() -&gt; 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() -&gt; 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(&quot;filename&quot;)
  541 
  542 Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
  543 current document.
  544 </source>
  545         <translation type="unfinished">loadStylesFromFile(&quot;filename&quot;)
  546 
  547 Loads paragraph styles from the Scribus document at &quot;filename&quot; 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([&quot;name&quot;]) -&gt; string
  569 
  570 Returns the name of the line color of the object &quot;name&quot;.
  571 If &quot;name&quot; is not given the currently selected item is used.
  572 </source>
  573         <translation>getLineColor([&quot;name&quot;]) -&gt; string
  574 
  575 Returns the name of the line colour of the object &quot;name&quot;.
  576 If &quot;name&quot; is not given the currently selected item is used.
  577 </translation>
  578     </message>
  579     <message>
  580         <source>getLineWidth([&quot;name&quot;]) -&gt; integer
  581 
  582 Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
  583 is not given the currently selected Item is used.
  584 </source>
  585         <translation type="unfinished">getLineWidth([&quot;name&quot;]) -&gt; integer
  586 
  587 Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
  588 is not given the currently selected Item is used.
  589 </translation>
  590     </message>
  591     <message>
  592         <source>getLineShade([&quot;name&quot;]) -&gt; integer
  593 
  594 Returns the shading value of the line color of the object &quot;name&quot;.
  595 If &quot;name&quot; is not given the currently selected item is used.
  596 </source>
  597         <translation>getLineShade([&quot;name&quot;]) -&gt; integer
  598 
  599 Returns the shading value of the line colour of the object &quot;name&quot;.
  600 If &quot;name&quot; is not given the currently selected item is used.
  601 </translation>
  602     </message>
  603     <message>
  604         <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
  605 
  606 Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer (see contants)
  611 
  612 Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer (see constants)
  619 
  620 Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer (see constants)
  625 
  626 Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer (see constants)
  633 
  634 Returns the line style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer (see constants)
  639 
  640 Returns the line style of the object &quot;name&quot;. If &quot;name&quot; 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([&quot;name&quot;]) -&gt; integer
  647 
  648 Returns the shading value of the fill color of the object &quot;name&quot;.
  649 If &quot;name&quot; is not given the currently selected item is used.
  650 </source>
  651         <translation>getFillShade([&quot;name&quot;]) -&gt; integer
  652 
  653 Returns the shading value of the fill colour of the object &quot;name&quot;.
  654 If &quot;name&quot; is not given the currently selected item is used.
  655 </translation>
  656     </message>
  657     <message>
  658         <source>getCornerRadius([&quot;name&quot;]) -&gt; integer
  659 
  660 Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
  661 </source>
  662         <translation type="unfinished">getCornerRadius([&quot;name&quot;]) -&gt; integer
  663 
  664 Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
  665 </translation>
  666     </message>
  667     <message>
  668         <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
  669 
  670 Returns a (x, y) tuple containing the scaling values of the image frame
  671 &quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
  672 </source>
  673         <translation type="unfinished">getImageScale([&quot;name&quot;]) -&gt; (x,y)
  674 
  675 Returns a (x, y) tuple containing the scaling values of the image frame
  676 &quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
  677 </translation>
  678     </message>
  679     <message>
  680         <source>getImageName([&quot;name&quot;]) -&gt; string
  681 
  682 Returns the filename for the image in the image frame. If &quot;name&quot; is not
  683 given the currently selected item is used.
  684 </source>
  685         <translation type="unfinished">getImageName([&quot;name&quot;]) -&gt; string
  686 
  687 Returns the filename for the image in the image frame. If &quot;name&quot; is not
  688 given the currently selected item is used.
  689 </translation>
  690     </message>
  691     <message>
  692         <source>getPosition([&quot;name&quot;]) -&gt; (x,y)
  693 
  694 Returns a (x, y) tuple with the position of the object &quot;name&quot;.
  695 If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
  696 - see UNIT_&lt;type&gt; for reference.
  697 </source>
  698         <translation type="unfinished">getPosition([&quot;name&quot;]) -&gt; (x,y)
  699 
  700 Returns a (x, y) tuple with the position of the object &quot;name&quot;.
  701 If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
  702 - see UNIT_&lt;type&gt; for reference.
  703 </translation>
  704     </message>
  705     <message>
  706         <source>getSize([&quot;name&quot;]) -&gt; (width,height)
  707 
  708 Returns a (width, height) tuple with the size of the object &quot;name&quot;.
  709 If &quot;name&quot; is not given the currently selected item is used. The size is
  710 expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
  711 for reference.
  712 </source>
  713         <translation type="unfinished">getSize([&quot;name&quot;]) -&gt; (width,height)
  714 
  715 Returns a (width, height) tuple with the size of the object &quot;name&quot;.
  716 If &quot;name&quot; is not given the currently selected item is used. The size is
  717 expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
  718 for reference.
  719 </translation>
  720     </message>
  721     <message>
  722         <source>getRotation([&quot;name&quot;]) -&gt; integer
  723 
  724 Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
  725 and clockwise is positive. If &quot;name&quot; is not given the currently selected item
  726 is used.
  727 </source>
  728         <translation type="unfinished">getRotation([&quot;name&quot;]) -&gt; integer
  729 
  730 Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
  731 and clockwise is positive. If &quot;name&quot; is not given the currently selected item
  732 is used.
  733 </translation>
  734     </message>
  735     <message>
  736         <source>getAllObjects() -&gt; list
  737 
  738 Returns a list containing the names of all objects on the current page.
  739 </source>
  740         <translation type="unfinished">getAllObjects() -&gt; 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&apos; of `object&apos;. See getProperty()
  749 for details of arguments.
  750 
  751 If `includesuper&apos; 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&apos; of `object&apos;. See getProperty()
  756 for details of arguments.
  757 
  758 If `includesuper&apos; 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&apos;.
  765 If `includesuper&apos; 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&apos;.
  771 If `includesuper&apos; 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&apos; of the passed `object&apos;.
  779 
  780 The `object&apos; 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&apos; argument must be a string, and is the name of the property
  785 to look up on `object&apos;.
  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&apos; of the passed `object&apos;.
  792 
  793 The `object&apos; 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&apos; argument must be a string, and is the name of the property
  798 to look up on `object&apos;.
  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&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
  807 compatible with the type of `property&apos;, 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&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
  815 compatible with the type of `property&apos;, 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&apos;, possibly restricted to children
  825 of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; 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&apos;, possibly restricted to children
  833 of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; 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&apos; named `childname&apos;, possibly restricting
  843 the search to children of type name `ofclass&apos;. If `recursive&apos; 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&apos; named `childname&apos;, possibly restricting
  849 the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
  850 search recursively through children, grandchildren, etc.
  851 </translation>
  852     </message>
  853     <message>
  854         <source>moveObjectAbs(x, y [, &quot;name&quot;])
  855 
  856 Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
  857 the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
  858 is not given the currently selected item is used.  If the object &quot;name&quot;
  859 belongs to a group, the whole group is moved.
  860 </source>
  861         <translation type="unfinished">moveObjectAbs(x, y [, &quot;name&quot;])
  862 
  863 Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
  864 the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
  865 is not given the currently selected item is used.  If the object &quot;name&quot;
  866 belongs to a group, the whole group is moved.
  867 </translation>
  868     </message>
  869     <message>
  870         <source>rotateObject(rot [, &quot;name&quot;])
  871 
  872 Rotates the object &quot;name&quot; by &quot;rot&quot; 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 &quot;name&quot; is not
  876 given the currently selected item is used.
  877 </source>
  878         <translation type="unfinished">rotateObject(rot [, &quot;name&quot;])
  879 
  880 Rotates the object &quot;name&quot; by &quot;rot&quot; 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 &quot;name&quot; is not
  884 given the currently selected item is used.
  885 </translation>
  886     </message>
  887     <message>
  888         <source>rotateObjectAbs(rot [, &quot;name&quot;])
  889 
  890 Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
  891 mean counter clockwise rotation. If &quot;name&quot; is not given the currently
  892 selected item is used.
  893 </source>
  894         <translation type="unfinished">rotateObjectAbs(rot [, &quot;name&quot;])
  895 
  896 Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
  897 mean counter clockwise rotation. If &quot;name&quot; is not given the currently
  898 selected item is used.
  899 </translation>
  900     </message>
  901     <message>
  902         <source>sizeObject(width, height [, &quot;name&quot;])
  903 
  904 Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
  905 is not given the currently selected item is used.
  906 </source>
  907         <translation type="unfinished">sizeObject(width, height [, &quot;name&quot;])
  908 
  909 Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
  910 is not given the currently selected item is used.
  911 </translation>
  912     </message>
  913     <message>
  914         <source>getSelectedObject([nr]) -&gt; string
  915 
  916 Returns the name of the selected object. &quot;nr&quot; 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]) -&gt; string
  921 
  922 Returns the name of the selected object. &quot;nr&quot; 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() -&gt; integer
  929 
  930 Returns the number of selected objects.
  931 </source>
  932         <translation type="unfinished">selectionCount() -&gt; integer
  933 
  934 Returns the number of selected objects.
  935 </translation>
  936     </message>
  937     <message>
  938         <source>selectObject(&quot;name&quot;)
  939 
  940 Selects the object with the given &quot;name&quot;.
  941 </source>
  942         <translation type="unfinished">selectObject(&quot;name&quot;)
  943 
  944 Selects the object with the given &quot;name&quot;.
  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 &quot;list&quot; together. &quot;list&quot; must contain the names
  961 of the objects to be grouped. If &quot;list&quot; 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 &quot;list&quot; together. &quot;list&quot; must contain the names
  967 of the objects to be grouped. If &quot;list&quot; is not given the currently selected
  968 items are used.
  969 </translation>
  970     </message>
  971     <message>
  972         <source>unGroupObjects(&quot;name&quot;)
  973 
  974 Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
  975         <translation type="unfinished">unGroupObjects(&quot;name&quot;)
  976 
  977 Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
  978     </message>
  979     <message>
  980         <source>scaleGroup(factor [,&quot;name&quot;])
  981 
  982 Scales the group the object &quot;name&quot; 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 &quot;factor&quot; must be greater than
  986 0. If &quot;name&quot; 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 [,&quot;name&quot;])
  991 
  992 Scales the group the object &quot;name&quot; 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 &quot;factor&quot; must be greater than
  996 0. If &quot;name&quot; 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(&quot;filename&quot; [, &quot;name&quot;])
 1003 
 1004 Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; 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(&quot;filename&quot; [, &quot;name&quot;])
 1010 
 1011 Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; 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 [, &quot;name&quot;])
 1019 
 1020 Sets the scaling factors of the picture in the image frame &quot;name&quot;.
 1021 If &quot;name&quot; 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 [, &quot;name&quot;])
 1027 
 1028 Sets the scaling factors of the picture in the image frame &quot;name&quot;.
 1029 If &quot;name&quot; 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([&quot;name&quot;]) -&gt; bool
 1037 
 1038 Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
 1039 If &quot;name&quot; is not given the currently selected item is used. Returns true
 1040 if locked.
 1041 </source>
 1042         <translation type="unfinished">lockObject([&quot;name&quot;]) -&gt; bool
 1043 
 1044 Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
 1045 If &quot;name&quot; is not given the currently selected item is used. Returns true
 1046 if locked.
 1047 </translation>
 1048     </message>
 1049     <message>
 1050         <source>isLocked([&quot;name&quot;]) -&gt; bool
 1051 
 1052 Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
 1053 currently selected item is used.
 1054 </source>
 1055         <translation type="unfinished">isLocked([&quot;name&quot;]) -&gt; bool
 1056 
 1057 Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
 1058 currently selected item is used.
 1059 </translation>
 1060     </message>
 1061     <message>
 1062         <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
 1063 
 1064 Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
 1065 If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
 1066 Both `scaletoframe&apos; and `proportional&apos; are boolean.
 1067 
 1068 May raise WrongFrameTypeError.
 1069 </source>
 1070         <translation type="unfinished">setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
 1071 
 1072 Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
 1073 If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
 1074 Both `scaletoframe&apos; and `proportional&apos; are boolean.
 1075 
 1076 May raise WrongFrameTypeError.
 1077 </translation>
 1078     </message>
 1079     <message>
 1080         <source>getFontNames() -&gt; list
 1081 
 1082 Returns a list with the names of all available fonts.
 1083 </source>
 1084         <translation type="unfinished">getFontNames() -&gt; list
 1085 
 1086 Returns a list with the names of all available fonts.
 1087 </translation>
 1088     </message>
 1089     <message>
 1090         <source>getXFontNames() -&gt; list of tuples
 1091 
 1092 Returns a larger font info. It&apos;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() -&gt; list of tuples
 1096 
 1097 Returns a larger font info. It&apos;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(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
 1103 
 1104 Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
 1105 If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
 1106 image data is returned as a string. The optional &quot;format&quot; 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&apos;t be found.
 1111 May raise ValueError if an empty sample or filename is passed.
 1112 </source>
 1113         <translation type="unfinished">renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
 1114 
 1115 Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
 1116 If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
 1117 image data is returned as a string. The optional &quot;format&quot; 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&apos;t be found.
 1122 May raise ValueError if an empty sample or filename is passed.
 1123 </translation>
 1124     </message>
 1125     <message>
 1126         <source>getLayers() -&gt; list
 1127 
 1128 Returns a list with the names of all defined layers.
 1129 </source>
 1130         <translation type="unfinished">getLayers() -&gt; list
 1131 
 1132 Returns a list with the names of all defined layers.
 1133 </translation>
 1134     </message>
 1135     <message>
 1136         <source>setActiveLayer(&quot;name&quot;)
 1137 
 1138 Sets the active layer to the layer named &quot;name&quot;.
 1139 
 1140 May raise NotFoundError if the layer can&apos;t be found.
 1141 May raise ValueError if the layer name isn&apos;t acceptable.
 1142 </source>
 1143         <translation type="unfinished">setActiveLayer(&quot;name&quot;)
 1144 
 1145 Sets the active layer to the layer named &quot;name&quot;.
 1146 
 1147 May raise NotFoundError if the layer can&apos;t be found.
 1148 May raise ValueError if the layer name isn&apos;t acceptable.
 1149 </translation>
 1150     </message>
 1151     <message>
 1152         <source>getActiveLayer() -&gt; string
 1153 
 1154 Returns the name of the current active layer.
 1155 </source>
 1156         <translation type="unfinished">getActiveLayer() -&gt; string
 1157 
 1158 Returns the name of the current active layer.
 1159 </translation>
 1160     </message>
 1161     <message>
 1162         <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 1163 
 1164 Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
 1165 If &quot;name&quot; is not given the currently selected item is used.
 1166 
 1167 May raise NotFoundError if the layer can&apos;t be found.
 1168 May raise ValueError if the layer name isn&apos;t acceptable.
 1169 </source>
 1170         <translation type="unfinished">sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 1171 
 1172 Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
 1173 If &quot;name&quot; is not given the currently selected item is used.
 1174 
 1175 May raise NotFoundError if the layer can&apos;t be found.
 1176 May raise ValueError if the layer name isn&apos;t acceptable.
 1177 </translation>
 1178     </message>
 1179     <message>
 1180         <source>setLayerVisible(&quot;layer&quot;, visible)
 1181 
 1182 Sets the layer &quot;layer&quot; 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&apos;t be found.
 1186 May raise ValueError if the layer name isn&apos;t acceptable.
 1187 </source>
 1188         <translation type="unfinished">setLayerVisible(&quot;layer&quot;, visible)
 1189 
 1190 Sets the layer &quot;layer&quot; 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&apos;t be found.
 1194 May raise ValueError if the layer name isn&apos;t acceptable.
 1195 </translation>
 1196     </message>
 1197     <message>
 1198         <source>setLayerPrintable(&quot;layer&quot;, printable)
 1199 
 1200 Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
 1201 false the layer won&apos;t be printed.
 1202 
 1203 May raise NotFoundError if the layer can&apos;t be found.
 1204 May raise ValueError if the layer name isn&apos;t acceptable.
 1205 </source>
 1206         <translation type="unfinished">setLayerPrintable(&quot;layer&quot;, printable)
 1207 
 1208 Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
 1209 false the layer won&apos;t be printed.
 1210 
 1211 May raise NotFoundError if the layer can&apos;t be found.
 1212 May raise ValueError if the layer name isn&apos;t acceptable.
 1213 </translation>
 1214     </message>
 1215     <message>
 1216         <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 1217 
 1218 Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
 1219 that the layer &quot;layer&quot; is visible, a value of False means that the layer
 1220 &quot;layer&quot; is invisible.
 1221 
 1222 May raise NotFoundError if the layer can&apos;t be found.
 1223 May raise ValueError if the layer name isn&apos;t acceptable.
 1224 </source>
 1225         <translation type="unfinished">isLayerPrintable(&quot;layer&quot;) -&gt; bool
 1226 
 1227 Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
 1228 that the layer &quot;layer&quot; is visible, a value of False means that the layer
 1229 &quot;layer&quot; is invisible.
 1230 
 1231 May raise NotFoundError if the layer can&apos;t be found.
 1232 May raise ValueError if the layer name isn&apos;t acceptable.
 1233 </translation>
 1234     </message>
 1235     <message>
 1236         <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
 1237 
 1238 Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
 1239 that the layer &quot;layer&quot; can be printed, a value of False means that printing
 1240 the layer &quot;layer&quot; is disabled.
 1241 
 1242 May raise NotFoundError if the layer can&apos;t be found.
 1243 May raise ValueError if the layer name isn&apos;t acceptable.
 1244 </source>
 1245         <translation type="unfinished">isLayerPrintable(&quot;layer&quot;) -&gt; bool
 1246 
 1247 Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
 1248 that the layer &quot;layer&quot; can be printed, a value of False means that printing
 1249 the layer &quot;layer&quot; is disabled.
 1250 
 1251 May raise NotFoundError if the layer can&apos;t be found.
 1252 May raise ValueError if the layer name isn&apos;t acceptable.
 1253 </translation>
 1254     </message>
 1255     <message>
 1256         <source>deleteLayer(&quot;layer&quot;)
 1257 
 1258 Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
 1259 exists or if it&apos;s the only layer in the document.
 1260 
 1261 May raise NotFoundError if the layer can&apos;t be found.
 1262 May raise ValueError if the layer name isn&apos;t acceptable.
 1263 </source>
 1264         <translation type="unfinished">deleteLayer(&quot;layer&quot;)
 1265 
 1266 Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
 1267 exists or if it&apos;s the only layer in the document.
 1268 
 1269 May raise NotFoundError if the layer can&apos;t be found.
 1270 May raise ValueError if the layer name isn&apos;t acceptable.
 1271 </translation>
 1272     </message>
 1273     <message>
 1274         <source>createLayer(layer)
 1275 
 1276 Creates a new layer with the name &quot;name&quot;.
 1277 
 1278 May raise ValueError if the layer name isn&apos;t acceptable.
 1279 </source>
 1280         <translation type="unfinished">createLayer(layer)
 1281 
 1282 Creates a new layer with the name &quot;name&quot;.
 1283 
 1284 May raise ValueError if the layer name isn&apos;t acceptable.
 1285 </translation>
 1286     </message>
 1287     <message>
 1288         <source>getGuiLanguage() -&gt; string
 1289 
 1290 Returns a string with the -lang value.
 1291 </source>
 1292         <translation type="unfinished">getGuiLanguage() -&gt; string
 1293 
 1294 Returns a string with the -lang value.
 1295 </translation>
 1296     </message>
 1297     <message>
 1298         <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the object
 1303 because you need this name for further referencing of that object. If &quot;name&quot;
 1304 is not given Scribus will create one for you.
 1305 
 1306 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1307 </source>
 1308         <translation type="unfinished">createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the object
 1313 because you need this name for further referencing of that object. If &quot;name&quot;
 1314 is not given Scribus will create one for you.
 1315 
 1316 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1317 </translation>
 1318     </message>
 1319     <message>
 1320         <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; 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 &quot;name&quot; should be a unique identifier for the object because you need this
 1325 name for further access to that object. If &quot;name&quot; is not given Scribus will
 1326 create one for you.
 1327 
 1328 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1329 </source>
 1330         <translation type="unfinished">createImage(x, y, width, height, [&quot;name&quot;]) -&gt; 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 &quot;name&quot; should be a unique identifier for the object because you need this
 1335 name for further access to that object. If &quot;name&quot; is not given Scribus will
 1336 create one for you.
 1337 
 1338 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1339 </translation>
 1340     </message>
 1341     <message>
 1342         <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the object because
 1347 you need this name for further referencing of that object. If &quot;name&quot; is not
 1348 given Scribus will create one for you.
 1349 
 1350 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1351 </source>
 1352         <translation type="unfinished">createText(x, y, width, height, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the object because
 1357 you need this name for further referencing of that object. If &quot;name&quot; is not
 1358 given Scribus will create one for you.
 1359 
 1360 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1361 </translation>
 1362     </message>
 1363     <message>
 1364         <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the
 1369 object because you need this name for further access to that object. If
 1370 &quot;name&quot; is not given Scribus will create one for you.
 1371 
 1372 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1373 </source>
 1374         <translation type="unfinished">createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; 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). &quot;name&quot; should be a unique identifier for the
 1379 object because you need this name for further access to that object. If
 1380 &quot;name&quot; is not given Scribus will create one for you.
 1381 
 1382 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1383 </translation>
 1384     </message>
 1385     <message>
 1386         <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
 1387 
 1388 Creates a new polyline and returns its name. The points for the polyline are
 1389 stored in the list &quot;list&quot; 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). &quot;name&quot; should be a unique identifier for the object because
 1392 you need this name for further access to that object. If &quot;name&quot; is not given
 1393 Scribus will create one for you.
 1394 
 1395 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1396 May raise ValueError if an insufficient number of points is passed or if
 1397 the number of values passed don&apos;t group into points without leftovers.
 1398 </source>
 1399         <translation type="unfinished">createPolyLine(list, [&quot;name&quot;]) -&gt; string
 1400 
 1401 Creates a new polyline and returns its name. The points for the polyline are
 1402 stored in the list &quot;list&quot; 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). &quot;name&quot; should be a unique identifier for the object because
 1405 you need this name for further access to that object. If &quot;name&quot; is not given
 1406 Scribus will create one for you.
 1407 
 1408 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1409 May raise ValueError if an insufficient number of points is passed or if
 1410 the number of values passed don&apos;t group into points without leftovers.
 1411 </translation>
 1412     </message>
 1413     <message>
 1414         <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
 1415 
 1416 Creates a new polygon and returns its name. The points for the polygon are
 1417 stored in the list &quot;list&quot; 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).  &quot;name&quot; should be a unique
 1422 identifier for the object because you need this name for further access to that
 1423 object. If &quot;name&quot; is not given Scribus will create one for you.
 1424 
 1425 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1426 May raise ValueError if an insufficient number of points is passed or if
 1427 the number of values passed don&apos;t group into points without leftovers.
 1428 </source>
 1429         <translation type="unfinished">createPolygon(list, [&quot;name&quot;]) -&gt; string
 1430 
 1431 Creates a new polygon and returns its name. The points for the polygon are
 1432 stored in the list &quot;list&quot; 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).  &quot;name&quot; should be a unique
 1437 identifier for the object because you need this name for further access to that
 1438 object. If &quot;name&quot; is not given Scribus will create one for you.
 1439 
 1440 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1441 May raise ValueError if an insufficient number of points is passed or if
 1442 the number of values passed don&apos;t group into points without leftovers.
 1443 </translation>
 1444     </message>
 1445     <message>
 1446         <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
 1447 
 1448 Creates a new bezier curve and returns its name. The points for the bezier
 1449 curve are stored in the list &quot;list&quot; 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). &quot;name&quot;
 1454 should be a unique identifier for the object because you need this name for
 1455 further access to that object. If &quot;name&quot; is not given Scribus will create one
 1456 for you.
 1457 
 1458 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1459 May raise ValueError if an insufficient number of points is passed or if
 1460 the number of values passed don&apos;t group into points without leftovers.
 1461 </source>
 1462         <translation type="unfinished">createBezierLine(list, [&quot;name&quot;]) -&gt; string
 1463 
 1464 Creates a new bezier curve and returns its name. The points for the bezier
 1465 curve are stored in the list &quot;list&quot; 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). &quot;name&quot;
 1470 should be a unique identifier for the object because you need this name for
 1471 further access to that object. If &quot;name&quot; is not given Scribus will create one
 1472 for you.
 1473 
 1474 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1475 May raise ValueError if an insufficient number of points is passed or if
 1476 the number of values passed don&apos;t group into points without leftovers.
 1477 </translation>
 1478     </message>
 1479     <message>
 1480         <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 1481 
 1482 Creates a new pathText by merging the two objects &quot;textbox&quot; and
 1483 &quot;beziercurve&quot; and returns its name. The coordinates are given in the current
 1484 measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
 1485 unique identifier for the object because you need this name for further access
 1486 to that object. If &quot;name&quot; is not given Scribus will create one for you.
 1487 
 1488 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1489 May raise NotFoundError if one or both of the named base object don&apos;t exist.
 1490 </source>
 1491         <translation type="unfinished">createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 1492 
 1493 Creates a new pathText by merging the two objects &quot;textbox&quot; and
 1494 &quot;beziercurve&quot; and returns its name. The coordinates are given in the current
 1495 measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
 1496 unique identifier for the object because you need this name for further access
 1497 to that object. If &quot;name&quot; is not given Scribus will create one for you.
 1498 
 1499 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1500 May raise NotFoundError if one or both of the named base object don&apos;t exist.
 1501 </translation>
 1502     </message>
 1503     <message>
 1504         <source>deleteObject([&quot;name&quot;])
 1505 
 1506 Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
 1507 selected item is deleted.
 1508 </source>
 1509         <translation type="unfinished">deleteObject([&quot;name&quot;])
 1510 
 1511 Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
 1512 selected item is deleted.
 1513 </translation>
 1514     </message>
 1515     <message>
 1516         <source>textFlowsAroundFrame(&quot;name&quot; [, state])
 1517 
 1518 Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
 1519 Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
 1520 is not passed, text flow is toggled.
 1521 </source>
 1522         <translation type="unfinished">textFlowsAroundFrame(&quot;name&quot; [, state])
 1523 
 1524 Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
 1525 Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
 1526 is not passed, text flow is toggled.
 1527 </translation>
 1528     </message>
 1529     <message>
 1530         <source>objectExists([&quot;name&quot;]) -&gt; 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([&quot;name&quot;]) -&gt; 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(&quot;style&quot; [, &quot;name&quot;])
 1545 
 1546 Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
 1547 given, it&apos;s applied on the selected object.
 1548 </source>
 1549         <translation type="unfinished">setStyle(&quot;style&quot; [, &quot;name&quot;])
 1550 
 1551 <