"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "scribus-1.3.3.12/scribus/po/scribus.de_CH.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 <context>
    3     <name></name>
    4     <message>
    5         <source>getColorNames() -&gt; list
    6 
    7 Returns a list containing the names of all defined colors in the document.
    8 If no document is open, returns a list of the default document colors.
    9 </source>
   10         <translation>getColorNames() -&gt; list
   11 
   12 Gibt eine Liste zurück, die alle vorhandenen Farben des aktuellen Dokuments enthält. 
   13 Wenn kein Dokument geöffnet ist, werden die Standardfarben zurückgegeben.</translation>
   14     </message>
   15     <message>
   16         <source>newDocDialog() -&gt; bool
   17 
   18 Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
   19 accepts the settings. Does not create a document if the user presses cancel.
   20 Returns true if a new document was created.
   21 </source>
   22         <translation>newDocDialog() -&gt; bool
   23 
   24 Zeigt den Dialog \&quot;Neues Dokument\&quot; an. Damit können Sie ein neues Dokument erstellen, wenn der Benutzer die standardmässigen Einstellung aktzeptiert. Erzeugt kein neues Dokument, wenn der Benutzer auf \&quot;Abbrechen\&quot; klickt. 
   25 Gibt den Wert \&quot;true\&quot; zurück, wenn ein neues Dokument erstellt wurde.</translation>
   26     </message>
   27     <message>
   28         <source>getFillColor([&quot;name&quot;]) -&gt; string
   29 
   30 Returns the name of the fill color of the object &quot;name&quot;.
   31 If &quot;name&quot; is not given the currently selected item is used.
   32 </source>
   33         <translation>getFillColor([&quot;name&quot;]) -&gt; string
   34 
   35 Gibt den Wert der Füllfarbe des Objekts &quot;name&quot; zurück.
   36 Wenn &quot;name&quot; nicht angegeben ist, wird das aktuell ausgewählt Objekt verwendet.</translation>
   37     </message>
   38     <message>
   39         <source>moveObject(dx, dy [, &quot;name&quot;])
   40 
   41 Moves the object &quot;name&quot; by dx and dy relative to its current position. The
   42 distances are expressed in the current measurement unit of the document (see
   43 UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
   44 If the object &quot;name&quot; belongs to a group, the whole group is moved.
   45 </source>
   46         <translation>moveObject(dx, dy [, &quot;name&quot;])
   47 
   48 Verschiebt das Objekt &quot;name&quot; um dx und dy relativ zur Position. Die 
   49 Entfernungsangaben werden in der Masseinheit des Dokuments 
   50 angegeben (siehe Konstanten UNIT*). Wenn &quot;name&quot; nicht vorhanden ist, 
   51 wird das ausgewählte Objekt verschoben und wenn &quot;name&quot; zu einer Gruppe
   52 gehört, wird die gesamte Gruppe verschoben.</translation>
   53     </message>
   54     <message>
   55         <source>setRedraw(bool)
   56 
   57 Disables page redraw when bool = False, otherwise redrawing is enabled.
   58 This change will persist even after the script exits, so make sure to call
   59 setRedraw(True) in a finally: clause at the top level of your script.
   60 </source>
   61         <translation>setRedraw(bool)
   62 
   63 Wenn bool=False, dann wird die Seite nicht neu neu aufgebaut (redraw ist deaktiviert).
   64 Standard ist bool=True. Diese Einstellung bleibt bestehen, auch wenn das Script beendet ist.
   65 Stellen Sie also sicher, dass setRedraw(True) aufgerufen wird, bevor das Script beendet wird.</translation>
   66     </message>
   67     <message>
   68         <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
   69 
   70 Creates a new rectangle on the current page and returns its name. The
   71 coordinates are given in the current measurement units of the document
   72 (see UNIT constants). &quot;name&quot; should be a unique identifier for the object
   73 because you need this name to reference that object in future. If &quot;name&quot;
   74 is not given Scribus will create one for you.
   75 
   76 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
   77 </source>
   78         <translation>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
   79 
   80 Erzeugt ein neues Rechteck auf der aktuellen Seite und gibt seinen Namen zurück. Die
   81 Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe UNIT-Konstanten).
   82 &quot;name&quot; sollte eine eindeutige Identifikation des Rechtecks ermöglichen, weil Sie den Objekt-
   83 namen immer wieder benötigen. Ist &quot;name&quot; nicht vorhanden, wählt Scribus einen Namen für Sie.
   84 
   85 Wenn Sie einen schon verwendeten Namen benutzen, tritt der Fehler NameExistsError auf.</translation>
   86     </message>
   87     <message>
   88         <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
   89 
   90 Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
   91 the same as for setFillColor() and setFillShade(). See the constants for
   92 available types (FILL_&lt;type&gt;).
   93 </source>
   94         <translation>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
   95 
   96 Füllt das Objekt &quot;name&quot; mit einem Farbverlauf. Farbbezeichnungen sind die
   97 gleichen wie für setFillColor() und setFillShade(). Siehe Konstanten
   98 für mögliche Typen (FILL_&lt;type&gt;).</translation>
   99     </message>
  100     <message>
  101         <source>getFontSize([&quot;name&quot;]) -&gt; float
  102 
  103 Returns the font size in points for the text frame &quot;name&quot;. If this text
  104 frame has some text selected the value assigned to the first character of
  105 the selection is returned.
  106 If &quot;name&quot; is not given the currently selected item is used.
  107 </source>
  108         <translation>getFontSize([&quot;name&quot;]) -&gt; float
  109 
  110 Gibt die Schriftgrösse in Punkten für den Textrahmen &quot;name&quot; zurück. Wenn innerhalb
  111 des Rahmens Text markiert ist, wird die Schriftgrösse des ersten Zeichens verwendet.
  112 Wenn &quot;name&quot; nicht vergeben ist, wird der selektierte Textrahmen verwendet.</translation>
  113     </message>
  114     <message>
  115         <source>messagebarText(&quot;string&quot;)
  116 
  117 Writes the &quot;string&quot; into the Scribus message bar (status line). The text
  118 must be UTF8 encoded or &apos;unicode&apos; string(recommended).
  119 </source>
  120         <translation>messagebarText(&quot;string&quot;)
  121 
  122 Schreibt &quot;string&quot; in die Statuszeile von Scribus. Der Text muss
  123 UTF8-kodiert oder ein &apos;unicode&apos;-String sein (empfohlen).</translation>
  124     </message>
  125     <message>
  126         <source>newDoc(size, margins, orientation, firstPageNumber,
  127                    unit, facingPages, firstSideLeft) -&gt; bool
  128 
  129 Creates a new document and returns true if successful. The parameters have the
  130 following meaning:
  131 
  132     size = A tuple (width, height) describing the size of the document. You can
  133     use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
  134 
  135     margins = A tuple (left, right, top, bottom) describing the document
  136     margins
  137 
  138     orientation = the page orientation - constants PORTRAIT, LANDSCAPE
  139 
  140     firstPageNumer = is the number of the first page in the document used for
  141     pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
  142     numbers if you&apos;re creating a document in several parts.
  143 
  144     unit: this value sets the measurement units used by the document. Use a
  145     predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
  146     UNIT_PICAS, UNIT_POINTS.
  147 
  148     facingPages = FACINGPAGES, NOFACINGPAGES
  149 
  150     firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
  151 
  152 The values for width, height and the margins are expressed in the given unit
  153 for the document. PAPER_* constants are expressed in points. If your document
  154 is not in points, make sure to account for this.
  155 
  156 example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
  157                 FACINGPAGES, FIRSTPAGERIGHT)
  158 </source>
  159         <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber, unit facingPages, firstSideLeft) -&gt; bool
  160 
  161 Erstellt eine neue Datei und gibt, falls erfolgreich, true zurück. Die Parameter haben
  162 folgende Bedeutung:
  163 
  164 size = Ein Zahlenpaar (Breite, Höhe), das die Grösse des Dokuments beschreibt. Sie können
  165 vordefinierte Konstanten wie PAPER_&lt;paper_type&gt;, z. B.  PAPER_A4 etc. verwenden.
  166 
  167 margins=margins = Eine Zahlenkombination, welche die Seitenränder beschreibt (links, rechts, oben, unten).
  168 
  169 orientation = Ausrichtung der Seite. Konstanten sind PORTRAIT und LANDSCAPE.
  170 
  171 firstPageNumer = Ist die Nummer der ersten Seite, auf welcher die Seitennumerierung beginnt. Während Sie
  172 normalerweise mit &quot;1&quot; beginnen werden, ist es nützlich mit anderen Seitennummern zu beginnen, wenn Sie ein 
  173 Dokument in mehrere Dateien aufteilen.
  174 
  175 unit: Dieser Wert legt die im Dokument verwendete Masseinheit fest. Wählen Sie eine der folgenden 
  176 vordefinierten Konstanten aus: UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
  177 
  178 facingPages = FACINGPAGES, NOFACINGPAGES
  179 
  180 firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
  181 
  182 Die Werte für Breite, Höhe und die Ränder werden in der für das Dokument gewählten Masseinheit angegeben,
  183 die Werte für PAPER_*-Konstanten jedoch immer in Punkt. Wenn die gewählte Masseinheit nicht Punkt ist, sollten
  184 Sie dies beachten.
  185 
  186 Beispiel: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
  187                               FACINGPAGES, FIRSTPAGERIGHT)</translation>
  188     </message>
  189     <message>
  190         <source>newPage(where [,&quot;masterpage&quot;])
  191 
  192 Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
  193 document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
  194 counted from 1 upwards, no matter what the displayed first page number of your
  195 document is. The optional parameter &quot;masterpage&quot; specifies the name of the
  196 master page for the new page.
  197 
  198 May raise IndexError if the page number is out of range
  199 </source>
  200         <translation>newPage(where [,&quot;masterpage&quot;])
  201 
  202 Erzeugt eine neue Seite. Falls &quot;where&quot; -1 ist, wird die neue Seite an das Dokument angefügt,
  203 ansonsten wird die neue Seite vor &quot;where&quot; eingefügt. Seitennummern werden von 1 ab hoch-
  204 gezählt, egal welches die angezeigte erste Seitennummer Ihres Dokumentes ist. Der optionale
  205 Parameter &quot;masterpage&quot; legt den Namen der Musterseite für die neue Seite fest</translation>
  206     </message>
  207     <message>
  208         <source>importSVG(&quot;string&quot;)
  209 
  210 The &quot;string&quot; must be a valid filename for a SVG image. The text
  211 must be UTF8 encoded or &apos;unicode&apos; string(recommended).
  212 </source>
  213         <translation>&quot;string&quot; muss ein gültiger Dateiname einer SVG-Datei sein. Der Text
  214 muss UTF8-kodiert oder ein Unicode-String (empfohlen) sein.</translation>
  215     </message>
  216     <message>
  217         <source>newDocument(size, margins, orientation, firstPageNumber,
  218                         unit, pagesType, firstPageOrder) -&gt; bool
  219 
  220 Creates a new document and returns true if successful. The parameters have the
  221 following meaning:
  222 
  223 size = A tuple (width, height) describing the size of the document. You can
  224 use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
  225 
  226 margins = A tuple (left, right, top, bottom) describing the document
  227 margins
  228 
  229 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
  230 
  231 firstPageNumer = is the number of the first page in the document used for
  232 pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
  233 numbers if you&apos;re creating a document in several parts.
  234 
  235 unit: this value sets the measurement units used by the document. Use a
  236 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
  237 UNIT_PICAS, UNIT_POINTS.
  238 
  239 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
  240 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
  241 PAGE_4 is 4-fold.
  242 
  243 firstPageOrder = What is position of first page in the document.
  244 Indexed from 0 (0 = first).
  245 
  246 The values for width, height and the margins are expressed in the given unit
  247 for the document. PAPER_* constants are expressed in points. If your document
  248 is not in points, make sure to account for this.
  249 
  250 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
  251 PAGE_4, 3)
  252 
  253 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
  254 </source>
  255         <translation type="obsolete">newDocument(size, margins, orientation, firstPageNumber,
  256                         unit, pagesType, firstPageOrder) -&gt; bool
  257 
  258 Creates a new document and returns true if successful. The parameters have the
  259 following meaning:
  260 
  261 size = A tuple (width, height) describing the size of the document. You can
  262 use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
  263 
  264 margins = A tuple (left, right, top, bottom) describing the document
  265 margins
  266 
  267 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
  268 
  269 firstPageNumer = is the number of the first page in the document used for
  270 pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
  271 numbers if you&apos;re creating a document in several parts.
  272 
  273 unit: this value sets the measurement units used by the document. Use a
  274 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
  275 UNIT_PICAS, UNIT_POINTS.
  276 
  277 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
  278 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
  279 PAGE_4 is 4-fold.
  280 
  281 firstPageOrder = What is position of first page in the document.
  282 Indexed from 0 (0 = first).
  283 
  284 The values for width, height and the margins are expressed in the given unit
  285 for the document. PAPER_* constants are expressed in points. If your document
  286 is not in points, make sure to account for this.
  287 
  288 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
  289 PAGE_4, 3)
  290 
  291 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
  292 </translation>
  293     </message>
  294     <message>
  295         <source>newDocument(size, margins, orientation, firstPageNumber,
  296                         unit, pagesType, firstPageOrder) -&gt; bool
  297 
  298 Creates a new document and returns true if successful. The parameters have the
  299 following meaning:
  300 
  301 size = A tuple (width, height) describing the size of the document. You can
  302 use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
  303 
  304 margins = A tuple (left, right, top, bottom) describing the document
  305 margins
  306 
  307 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
  308 
  309 firstPageNumer = is the number of the first page in the document used for
  310 pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
  311 numbers if you&apos;re creating a document in several parts.
  312 
  313 unit: this value sets the measurement units used by the document. Use a
  314 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
  315 UNIT_PICAS, UNIT_POINTS.
  316 
  317 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
  318 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
  319 PAGE_4 is 4-fold.
  320 
  321 firstPageOrder = What is position of first page in the document.
  322 Indexed from 0 (0 = first).
  323 
  324 numPage = Number of pages to be created.
  325 
  326 The values for width, height and the margins are expressed in the given unit
  327 for the document. PAPER_* constants are expressed in points. If your document
  328 is not in points, make sure to account for this.
  329 
  330 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
  331 PAGE_4, 3, 1)
  332 
  333 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
  334 </source>
  335         <translation>newDocument(size, margins, orientation, firstPageNumber,
  336                         unit, pagesType, firstPageOrder) -&gt; bool
  337 
  338 Creates a new document and returns true if successful. The parameters have the
  339 following meaning:
  340 
  341 size = A tuple (width, height) describing the size of the document. You can
  342 use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
  343 
  344 margins = A tuple (left, right, top, bottom) describing the document
  345 margins
  346 
  347 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
  348 
  349 firstPageNumer = is the number of the first page in the document used for
  350 pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
  351 numbers if you&apos;re creating a document in several parts.
  352 
  353 unit: this value sets the measurement units used by the document. Use a
  354 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
  355 UNIT_PICAS, UNIT_POINTS.
  356 
  357 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
  358 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
  359 PAGE_4 is 4-fold.
  360 
  361 firstPageOrder = What is position of first page in the document.
  362 Indexed from 0 (0 = first).
  363 
  364 numPage = Number of pages to be created.
  365 
  366 The values for width, height and the margins are expressed in the given unit
  367 for the document. PAPER_* constants are expressed in points. If your document
  368 is not in points, make sure to account for this.
  369 
  370 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
  371 PAGE_4, 3, 1)
  372 
  373 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
  374 </translation>
  375     </message>
  376 </context>
  377 <context>
  378     <name>@default</name>
  379     <message>
  380         <source>getColor(&quot;name&quot;) -&gt; tuple
  381 
  382 Returns a tuple (C, M, Y, K) containing the four color components of the
  383 color &quot;name&quot; from the current document. If no document is open, returns
  384 the value of the named color from the default document colors.
  385 
  386 May raise NotFoundError if the named color wasn&apos;t found.
  387 May raise ValueError if an invalid color name is specified.
  388 </source>
  389         <translation>getColor(&quot;name&quot;) -&gt; tuple
  390 
  391 Gibt eine Liste mit den vier Farbkomponenten der Farbe &quot;name&quot; im aktuellen 
  392 Dokument wieder. Wenn kein Dokument geöffnet ist, werden die Werte der 
  393 angegebenen Standardfarbe zurückgegeben.
  394 
  395 Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf.
  396 Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation>
  397     </message>
  398     <message>
  399         <source>changeColor(&quot;name&quot;, c, m, y, k)
  400 
  401 Changes the color &quot;name&quot; to the specified CMYK value. The color value is
  402 defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
  403 Color components should be in the range from 0 to 255.
  404 
  405 May raise NotFoundError if the named color wasn&apos;t found.
  406 May raise ValueError if an invalid color name is specified.
  407 </source>
  408         <translation>changeColor(&quot;name&quot;, c, m, y, k)
  409 
  410 Ändert die Farbe &quot;name&quot; auf die angegeben CMYK-Werte. Die Abkürzungen
  411 stehen für die vier Farben c=Cyan, m=Magenta, y=Yellow, b=Black.
  412 Die Werte müssen zwischen 0 und 255 liegen.
  413 
  414 Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf.
  415 Wenn ein ungültiger Farbname angegeben wird, tritt der Fehler ValueError auf.</translation>
  416     </message>
  417     <message>
  418         <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
  419 
  420 Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
  421 color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
  422 &quot;None&quot; - transparent.
  423 
  424 deleteColor works on the default document colors if there is no document open.
  425 In that case, &quot;replace&quot;, if specified, has no effect.
  426 
  427 May raise NotFoundError if a named color wasn&apos;t found.
  428 May raise ValueError if an invalid color name is specified.
  429 </source>
  430         <translation>deleteColor(&quot;name&quot;, &quot;replace&quot;)
  431 
  432 Löscht die Farbe &quot;name&quot;. An allen Stellen, wo &quot;name&quot; im Dokument auftritt,
  433 wird sie durch &quot;replace&quot; ersetzt. Standardmässig ist &quot;replace&quot; gar keine Farbe -
  434 Transparenz.
  435 
  436 Sie können deleteColor auch verwenden, wenn kein Dokument geöffnet ist, dann
  437 bleibt die Angabe von &quot;replace&quot; aber ohne Auswirkung.
  438 
  439 Wenn die angegebene Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf.
  440 Wenn der Farbname ungültig ist, tritt der Fehler ValueError auf.</translation>
  441     </message>
  442     <message>
  443         <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
  444 
  445 Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
  446 
  447 May raise NotFoundError if a named color wasn&apos;t found.
  448 May raise ValueError if an invalid color name is specified.
  449 </source>
  450         <translation>replaceColor(&quot;name&quot;, &quot;replace&quot;)
  451 
  452 An allen Stellen, wo die Farbe &quot;name&quot; vorkommt, wird sie duch die Farbe
  453 &quot;replace&quot; ersetzt.
  454 
  455 Wenn eine der Farben nicht vorhanden ist, tritt der Fehler NotFoundError auf.
  456 Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation>
  457     </message>
  458     <message>
  459         <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
  460     icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
  461     button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
  462 
  463 Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
  464 an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
  465 button, OK, is displayed. Only the caption and message arguments are required,
  466 though setting an icon and appropriate button(s) is strongly
  467 recommended. The message text may contain simple HTML-like markup.
  468 
  469 Returns the number of the button the user pressed. Button numbers start
  470 at 1.
  471 
  472 For the icon and the button parameters there are predefined constants available
  473 with the same names as in the Qt Documentation. These are the BUTTON_* and
  474 ICON_* constants defined in the module. There are also two extra constants that
  475 can be binary-ORed with button constants:
  476     BUTTONOPT_DEFAULT   Pressing enter presses this button.
  477     BUTTONOPT_ESCAPE    Pressing escape presses this button.
  478 
  479 Usage examples:
  480 result = messageBox(&apos;Script failed&apos;,
  481                     &apos;This script only works when you have a text frame selected.&apos;,
  482                     ICON_ERROR)
  483 result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
  484                     ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
  485                     BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
  486 
  487 Defined button and icon constants:
  488 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
  489 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
  490 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
  491 </source>
  492         <translation>messageBox(&quot;caption&quot;, &quot;message&quot;,icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
  493 button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
  494 Zeigt einen Dialog mit dem Titel &quot;caption&quot;, der Botschaft &quot;message&quot; und dem Symbol &quot;icon&quot; sowie
  495 bis zu 3 Buttons an. Standard ist kein Symbol und ein OK-Button. Nur Titel und Botschaft sind
  496 erforderliche Felder, aber Symbol und Buttons werden empfohlen.
  497 Der Text der Botschaft kann auch einfachen HTML-Code enthalten.
  498 Gibt die Nummer des Buttons wieder, der gedrückt wurde, beginnend mit 1.
  499 Für Buttons und Symbole gibt es vordefinierte Konstanten, die gleichen wie in
  500 der Qt-Dokumentation.
  501 Die sind im Modul definiert und heissen BUTTON_* und ICON_* . Es gibt auch zwei
  502 spezielle Konstanten, die auch den Wert 0 annehmen können: BUTTONOPT_DEFAULT aktiviert den 
  503 jeweiligen Button per Druck auf Enter.
  504 BUTTONOPT_ESCAPE drückt die Escape-Taste falls dieser Button gedrückt wird.
  505 Beispiel
  506 result = messageBox(&apos;Script failed&apos;,&apos;This script only works when you have a text frame selected.&apos;,
  507 ICON_ERROR)
  508 result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,ICON_WARNING,
  509 BUTTON_YES|BUTTONOPT_DEFAULT, BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
  510 Konstanten für Buttons und Symbole:
  511 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
  512 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
  513 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.</translation>
  514     </message>
  515     <message>
  516         <source>valueDialog(caption, message [,defaultvalue]) -&gt; string
  517 
  518 Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
  519 Parameters: window title, text in the window and optional &apos;default&apos; value.
  520 
  521 Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
  522 </source>
  523         <translation>valueDialog(caption, message [,defaultvalue]) -&gt; string
  524 
  525 Zeigt einen Dialog an, der einen String verlangt und zurückgibt.
  526 Parameter: Fenstertitel, Text im Fenster und optionaler &apos;default&apos;-Text.
  527 
  528 Beispiel: valueDialog(&apos;TItel&apos;, &apos;Text im Fenster&apos;, &apos;optional&apos;)</translation>
  529     </message>
  530     <message>
  531         <source>closeDoc()
  532 
  533 Closes the current document without prompting to save.
  534 
  535 May throw NoDocOpenError if there is no document to close
  536 </source>
  537         <translation>closeDoc()
  538 
  539 Schliesst das aktuelle Dokument, ohne Änderungen zu sichern.
  540 
  541 Wenn kein Dokument offen ist, tritt der Fehler NoDocOpenError auf</translation>
  542     </message>
  543     <message>
  544         <source>haveDoc() -&gt; bool
  545 
  546 Returns true if there is a document open.
  547 </source>
  548         <translation>haveDoc() -&gt; bool
  549 
  550 Gibt True zurück, wenn ein Dokument geöffnet ist.</translation>
  551     </message>
  552     <message>
  553         <source>openDoc(&quot;name&quot;)
  554 
  555 Opens the document &quot;name&quot;.
  556 
  557 May raise ScribusError if the document could not be opened.
  558 </source>
  559         <translation>openDoc(&quot;name&quot;)
  560 
  561 Öffnet das Dokument &quot;name&quot;.
  562 
  563 Schlägt das fehl, tritt der Fehler ScribusError auf.</translation>
  564     </message>
  565     <message>
  566         <source>saveDoc()
  567 
  568 Saves the current document with its current name, returns true if successful.
  569 If the document has not already been saved, this may bring up an interactive
  570 save file dialog.
  571 
  572 If the save fails, there is currently no way to tell.
  573 </source>
  574         <translation>saveDoc()
  575 
  576 Speichert das Dokument unter dem aktuellen Namen und gibt True zurück, wenn das
  577 erfolgreich war. Wurde das Dokument noch nicht gesichert, öffnet sich der &quot;Speichern&quot;-
  578 Dialog.
  579 
  580 Wenn das Sichern fehlschlägt, erscheint derzeit keine Fehlermeldung.</translation>
  581     </message>
  582     <message>
  583         <source>saveDocAs(&quot;name&quot;)
  584 
  585 Saves the current document under the new name &quot;name&quot; (which may be a full or
  586 relative path).
  587 
  588 May raise ScribusError if the save fails.
  589 </source>
  590         <translation>saveDocAs(&quot;name&quot;)
  591 
  592 Speichert das aktuelle Dokument unter dem neuen Namen &quot;name&quot;. Die Pfadangabe kann dabei
  593 relativ oder absolut sein.
  594 
  595 Schlägt das Sichern fehl, tritt der Fehler ScribusError auf.</translation>
  596     </message>
  597     <message>
  598         <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
  599 
  600 Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
  601 strings.
  602 </source>
  603         <translation type="obsolete">saveDocAs(&quot;Autor&quot;, &quot;Info&quot;, &quot;Beschreibung&quot;) -&gt; bool
  604 
  605 Speichert die Dokumenteigenschaften Autor, Informationen und Beschreibung.
  606 Angabe als Strings.</translation>
  607     </message>
  608     <message>
  609         <source>setMargins(lr, rr, tr, br)
  610 
  611 Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
  612 margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
  613 constants.
  614 </source>
  615         <translation>setMargins(lr, rr, tr, br)
  616 
  617 Verändert die Ränder des Dokuments. Links=lr, Rechts=rr, Oben=tr, Unten=br.
  618 Die Einheit wird durch die Masseinheit des Dokuments vorgegeben, siehe die
  619 Konstanten UNIT_&lt;type&gt;.</translation>
  620     </message>
  621     <message>
  622         <source>setUnit(type)
  623 
  624 Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
  625 defined as constants UNIT_&lt;type&gt;.
  626 
  627 May raise ValueError if an invalid unit is passed.
  628 </source>
  629         <translation>setUnit(type)
  630 
  631 Ändert die Masseinheit des Dokuments auf &quot;type&quot;. Mögliche Einheiten geben Sie durch die 
  632 Konstanten UNIT_&lt;type&gt; an.
  633 
  634 Ist die Einheit ungültig, tritt der Fehler ValueError auf.</translation>
  635     </message>
  636     <message>
  637         <source>getUnit() -&gt; integer (Scribus unit constant)
  638 
  639 Returns the measurement units of the document. The returned value will be one
  640 of the UNIT_* constants:
  641 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
  642 </source>
  643         <translation>getUnit() -&gt; integer (Scribus unit constant)
  644 
  645 Gibt die Masseinheit des Dokuments zurück. Der Rückgabewert ist eine
  646 der möglichen UNIT_*-Konstanten:
  647 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.</translation>
  648     </message>
  649     <message>
  650         <source>loadStylesFromFile(&quot;filename&quot;)
  651 
  652 Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
  653 current document.
  654 </source>
  655         <translation>loadStylesFromFile(&quot;filename&quot;)
  656 
  657 Lädt die Absatzstile aus der Datei &quot;filename&quot; in das aktuelle Dokument.</translation>
  658     </message>
  659     <message>
  660         <source>setDocType(facingPages, firstPageLeft)
  661 
  662 Sets the document type. To get facing pages set the first parameter to
  663 FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
  664 to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
  665 a right page use FIRSTPAGERIGHT.
  666 </source>
  667         <translation>setDocType(facingPages, firstPageLeft)
  668 
  669 Setzt den Dokumenttyp. Gegenüberliegende Seiten erreichen Sie mit FACINGPAGES, normale
  670 Seiten mit NOFACINGPAGES. Wenn die erste Seite links sein soll, schreiben Sie FIRSTPAGELEFT, 
  671 ansonsten FIRSTPAGERIGHT.</translation>
  672     </message>
  673     <message>
  674         <source>getLineColor([&quot;name&quot;]) -&gt; string
  675 
  676 Returns the name of the line color of the object &quot;name&quot;.
  677 If &quot;name&quot; is not given the currently selected item is used.
  678 </source>
  679         <translation>getLineColor([&quot;name&quot;]) -&gt; string
  680 
  681 Gibt den Namen der Linienfarbe des Objekts &quot;name&quot; zurück.
  682 Wenn &quot;name&quot; nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation>
  683     </message>
  684     <message>
  685         <source>getLineWidth([&quot;name&quot;]) -&gt; integer
  686 
  687 Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
  688 is not given the currently selected Item is used.
  689 </source>
  690         <translation>getLineWidth([&quot;name&quot;]) -&gt; integer
  691 
  692 Gibt die Linienbreite des Objekts &quot;name&quot; zurück.
  693 Wenn &quot;name&quot; nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation>
  694     </message>
  695     <message>
  696         <source>getLineShade([&quot;name&quot;]) -&gt; integer
  697 
  698 Returns the shading value of the line color of the object &quot;name&quot;.
  699 If &quot;name&quot; is not given the currently selected item is used.
  700 </source>
  701         <translation>getLineShade([&quot;name&quot;]) -&gt; integer
  702 
  703 Gibt den Tonwert des Objekts &quot;name&quot; zurück.
  704 Wenn &quot;name&quot; nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation>
  705     </message>
  706     <message>
  707         <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
  708 
  709 Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
  710 the currently selected item is used.  The join types are:
  711 JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
  712 </source>
  713         <translation>getLineJoin([&quot;name&quot;]) -&gt; integer (siehe Konstanten)
  714 
  715 Gibt den Stil der Ecken des Objekts &quot;name&quot; zurück. Ist kein &quot;name&quot; angegeben, wird
  716 das aktuelle Objekt benutzt. Die Linientypen sind JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND</translation>
  717     </message>
  718     <message>
  719         <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
  720 
  721 Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
  722 currently selected item is used. The cap types are:
  723 CAP_FLAT, CAP_ROUND, CAP_SQUARE
  724 </source>
  725         <translation>getLineEnd([&quot;name&quot;]) -&gt; integer (siehe Konstanten)
  726 
  727 Gibt den Stil der Linienrundungen des Objekts &quot;name&quot; an. Ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt benutzt.
  728 Die unterstützten Stile sind CAP_FLAT, CAP_ROUND, CAP_SQUARE</translation>
  729     </message>
  730     <message>
  731         <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
  732 
  733 Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
  734 currently selected item is used. Line style constants are:
  735 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
  736 </source>
  737         <translation>getLineStyle([&quot;name&quot;]) -&gt; integer (siehe Konstanten)
  738 
  739 Gibt den Linienstil des Objekts &quot;name&quot; wieder. Ist &quot;name&quot; nicht angegeben,
  740 wird das aktuelle Objekt benutzt. Linienstile sind LINE_DASH, LINE_DASHDOT,
  741 LINE_DASHDOTDOT, LINE_SOLID</translation>
  742     </message>
  743     <message>
  744         <source>getFillShade([&quot;name&quot;]) -&gt; integer
  745 
  746 Returns the shading value of the fill color of the object &quot;name&quot;.
  747 If &quot;name&quot; is not given the currently selected item is used.
  748 </source>
  749         <translation>getFillShade([&quot;name&quot;]) -&gt; integer
  750 
  751 Gibt den Tonwert der Füllfarbe von &quot;name&quot; zurück. Ist &quot;name&quot; nicht angegeben, wird
  752 das aktuelle Objekt verwendet.</translation>
  753     </message>
  754     <message>
  755         <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
  756 
  757 Returns a (x, y) tuple containing the scaling values of the image frame
  758 &quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
  759 </source>
  760         <translation>getImageScale([&quot;name&quot;]) -&gt; (x,y)(
  761 
  762 Gibt ein Zahlenpaar (x,y) zurück mit den Skalierungswerten des Bildes im Rahmen
  763 &quot;name&quot;. Ist &quot;name&quot; nicht angegeben, wird der aktuelle Rahmen verwendet.</translation>
  764     </message>
  765     <message>
  766         <source>getImageName([&quot;name&quot;]) -&gt; string
  767 
  768 Returns the filename for the image in the image frame. If &quot;name&quot; is not
  769 given the currently selected item is used.
  770 </source>
  771         <translation>getImageName([&quot;name&quot;]) -&gt; string
  772 
  773 Gibt den Dateinamen des Bildes im Rahmen &quot;name&quot; zurück. Ist &quot;name&quot; nicht
  774 angegeben, wird das aktuelle Objekt benutzt.</translation>
  775     </message>
  776     <message>
  777         <source>getSize([&quot;name&quot;]) -&gt; (width,height)
  778 
  779 Returns a (width, height) tuple with the size of the object &quot;name&quot;.
  780 If &quot;name&quot; is not given the currently selected item is used. The size is
  781 expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
  782 for reference.
  783 </source>
  784         <translation>getSize([&quot;name&quot;]) -&gt; (Breite,Höhe)
  785 
  786 Gibt das Zahlenpaar (Breite,Höhe) des Objekts &quot;name&quot; zurück. Ist &quot;name&quot; nicht
  787 angegeben, wird das aktuelle Objekt verwendet. Die Grösse wird in der Masseinheit
  788 des Dokuments angegeben - siehe die UNIT_*-Konstanten.</translation>
  789     </message>
  790     <message>
  791         <source>getRotation([&quot;name&quot;]) -&gt; integer
  792 
  793 Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
  794 and clockwise is positive. If &quot;name&quot; is not given the currently selected item
  795 is used.
  796 </source>
  797         <translation>getRotation([&quot;name&quot;]) -&gt; integer
  798 
  799 Gibt die Drehung des Objekts &quot;name&quot; in Grad zurück und im Uhrzeigersinn zurück.
  800 Ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt benutzt.</translation>
  801     </message>
  802     <message>
  803         <source>getAllObjects() -&gt; list
  804 
  805 Returns a list containing the names of all objects on the current page.
  806 </source>
  807         <translation>getAllObjects() -&gt; list
  808 
  809 Gibt eine Liste zurück mit allen auf der aktuellen Seite verwendeten Objekte.</translation>
  810     </message>
  811     <message>
  812         <source>moveObjectAbs(x, y [, &quot;name&quot;])
  813 
  814 Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
  815 the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
  816 is not given the currently selected item is used.  If the object &quot;name&quot;
  817 belongs to a group, the whole group is moved.
  818 </source>
  819         <translation>moveObjectAbs(x, y [, &quot;name&quot;])
  820 
  821 Bewegt das Objekt &quot;name&quot; an die neue Stelle. Die Koordinaten werden in der Masseinheit
  822 des Dokuments angegeben (siehe UNIT_*-Konstanten). Ist &quot;name&quot; nicht angegeben, wird das
  823 aktuelle Objekt benutzt. Gehört &quot;name&quot; zu einer Gruppe, wird die Gruppe verschoben.</translation>
  824     </message>
  825     <message>
  826         <source>rotateObject(rot [, &quot;name&quot;])
  827 
  828 Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
  829 rotated by the vertex that is currently selected as the rotation point - by
  830 default, the top left vertext at zero rotation. Positive values mean counter
  831 clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
  832 given the currently selected item is used.
  833 </source>
  834         <translation>rotateObject(rot [, &quot;name&quot;])
  835 
  836 Dreht das Objekt &quot;name&quot; relativ um &quot;rot&quot; Grad. Beim Drehen wird der Ursprung verwendet,
  837 der gerade aktiv ist - normalerweise der Punkt links oben. Positive Werte für &quot;rot&quot; bedeuten
  838 Drehung in Uhrzeigersinn, negative Werte Drehung gegen den Uhrzeigersinn. Ist &quot;name&quot; nicht
  839 angegeben, wird das aktuelle Objekt benutzt.</translation>
  840     </message>
  841     <message>
  842         <source>sizeObject(width, height [, &quot;name&quot;])
  843 
  844 Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
  845 is not given the currently selected item is used.
  846 </source>
  847         <translation>sizeObject(width, height [, &quot;name&quot;])
  848 
  849 Ändert die Grösse von &quot;name&quot; auf die Breite width und die Höhe height.
  850 ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt benutzt.</translation>
  851     </message>
  852     <message>
  853         <source>getSelectedObject([nr]) -&gt; string
  854 
  855 Returns the name of the selected object. &quot;nr&quot; if given indicates the number
  856 of the selected object, e.g. 0 means the first selected object, 1 means the
  857 second selected Object and so on.
  858 </source>
  859         <translation>getSelectedObject([nr]) -&gt; string
  860 
  861 Gibt den Namen des ausgewählten Objekts zurück. &quot;nr&quot; gibt die Zahl des gewählten
  862 Objekts an. 0 bedeutet das erste ausgewählte Objekt, 1 das zweite usw.</translation>
  863     </message>
  864     <message>
  865         <source>selectionCount() -&gt; integer
  866 
  867 Returns the number of selected objects.
  868 </source>
  869         <translation>selectionCount() -&gt; integer
  870 
  871 Gibt die Anzahl der ausgewählten Objekte zurück.</translation>
  872     </message>
  873     <message>
  874         <source>selectObject(&quot;name&quot;)
  875 
  876 Selects the object with the given &quot;name&quot;.
  877 </source>
  878         <translation>selectObject(&quot;name&quot;)
  879 
  880 Wählt das Objekt &quot;name&quot; aus.</translation>
  881     </message>
  882     <message>
  883         <source>deselectAll()
  884 
  885 Deselects all objects in the whole document.
  886 </source>
  887         <translation>deselectAll()
  888 
  889 Setzt alle Objekte im Dokument auf nicht ausgewählt.</translation>
  890     </message>
  891     <message>
  892         <source>groupObjects(list)
  893 
  894 Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
  895 of the objects to be grouped. If &quot;list&quot; is not given the currently selected
  896 items are used.
  897 </source>
  898         <translation>groupObjects(list)
  899 
  900 Gruppiert die Elemente in &quot;list&quot;. &quot;list&quot; muss die Namen der zu gruppierenden 
  901 Objekte enthalten. Ist &quot;list&quot; nicht angegeben, werden die aktuell gewählten 
  902 Objekte verwendet.</translation>
  903     </message>
  904     <message>
  905         <source>unGroupObjects(&quot;name&quot;)
  906 
  907 Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
  908         <translation>unGroupObjects(&quot;name&quot;)
  909 
  910 Zerstört die Gruppe &quot;name&quot;. Ist &quot;name&quot; nicht angegeben, wird die aktuelle Gruppe verwendet.</translation>
  911     </message>
  912     <message>
  913         <source>scaleGroup(factor [,&quot;name&quot;])
  914 
  915 Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
  916 the group, values smaller than 1 make the group smaller e.g a value of 0.5
  917 scales the group to 50 % of its original size, a value of 1.5 scales the group
  918 to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
  919 0. If &quot;name&quot; is not given the currently selected item is used.
  920 
  921 May raise ValueError if an invalid scale factor is passed.
  922 </source>
  923         <translation>scaleGroup(factor [,&quot;name&quot;])
  924 
  925 Skaliert die Gruppe, zu dem das Objekt &quot;name&quot; gehört. Werte grösser als 1 vergrössern das Objekt, 
  926 Werte kleiner als 1 verkleinert das Objekt. Zum Beispiel bedeutet 0.5 = 50 % oder 1.5=150% der 
  927 Originalgrösse. &quot;factor&quot; muss grösser als 0 sein. Ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt
  928 benutzt.</translation>
  929     </message>
  930     <message>
  931         <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
  932 
  933 Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
  934 not given the currently selected item is used.
  935 
  936 May raise WrongFrameTypeError if the target frame is not an image frame
  937 </source>
  938         <translation>loadImage(&quot;filename&quot; [, &quot;name&quot;])
  939 
  940 Lädt das Bild &quot;picture&quot; in den Bildrahmen &quot;name&quot;. Ist &quot;name&quot; nicht angegeben, 
  941 wird der aktuelle Rahmen benutzt.
  942 
  943 Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf</translation>
  944     </message>
  945     <message>
  946         <source>scaleImage(x, y [, &quot;name&quot;])
  947 
  948 Sets the scaling factors of the picture in the image frame &quot;name&quot;.
  949 If &quot;name&quot; is not given the currently selected item is used. A number of 1
  950 means 100 %.
  951 
  952 May raise WrongFrameTypeError if the target frame is not an image frame
  953 </source>
  954         <translation>scaleImage(x, y [, &quot;name&quot;])
  955 
  956 Skaliert das Bild &quot;name&quot; auf die angegeben Werte. 1 bedeutet 100 %. Ist &quot;name&quot;
  957 nicht angegeben, wird der aktuelle Bildrahmen verwendet.
  958 
  959 Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf,</translation>
  960     </message>
  961     <message>
  962         <source>lockObject([&quot;name&quot;]) -&gt; bool
  963 
  964 Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
  965 If &quot;name&quot; is not given the currently selected item is used. Returns true
  966 if locked.
  967 </source>
  968         <translation>lockObject([&quot;name&quot;]) -&gt; bool
  969 
  970 Sperrt das Objekt &quot;name&quot;, wenn es freigegeben ist und entsperrt es, wenn es
  971 gesperrt ist. Ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt verwendet.
  972 Gibt True zurück, wenn das Objekt gesperrt ist.</translation>
  973     </message>
  974     <message>
  975         <source>isLocked([&quot;name&quot;]) -&gt; bool
  976 
  977 Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
  978 currently selected item is used.
  979 </source>
  980         <translation>isLocked([&quot;name&quot;]) -&gt; bool
  981 
  982 Gibt True zurück, wenn &quot;name&quot; gesperrt ist. Ist &quot;name&quot; nicht angegeben, wird das aktuelle
  983 Objekt verwendet.</translation>
  984     </message>
  985     <message>
  986         <source>getFontNames() -&gt; list
  987 
  988 Returns a list with the names of all available fonts.
  989 </source>
  990         <translation>getFontNames() -&gt; list
  991 
  992 Gibt eine Liste mit allen verfügbaren Schriften zurück.</translation>
  993     </message>
  994     <message>
  995         <source>getXFontNames() -&gt; list of tuples
  996 
  997 Returns a larger font info. It&apos;s a list of the tuples with:
  998 [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
  999 </source>
 1000         <translation>getXFontNames() -&gt; list
 1001 
 1002 Gibt genaue Informationen zu einer Schrift zurück mit den Werten:
 1003 [ (Name in Scribus, Familie, wirklicher Name, Subset (1|0), embed PS (1|0), Fontdatei), (...), ... ]</translation>
 1004     </message>
 1005     <message>
 1006         <source>getLayers() -&gt; list
 1007 
 1008 Returns a list with the names of all defined layers.
 1009 </source>
 1010         <translation>getLayers() -&gt; list
 1011 
 1012 Gibt eine Liste mit allen Ebenen zurück.</translation>
 1013     </message>
 1014     <message>
 1015         <source>setActiveLayer(&quot;name&quot;)
 1016 
 1017 Sets the active layer to the layer named &quot;name&quot;.
 1018 
 1019 May raise NotFoundError if the layer can&apos;t be found.
 1020 May raise ValueError if the layer name isn&apos;t acceptable.
 1021 </source>
 1022         <translation>setActiveLayer(&quot;name&quot;)
 1023 
 1024 Macht die Ebene &quot;name&quot; zur aktiven Ebene.
 1025 
 1026 Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf.
 1027 Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation>
 1028     </message>
 1029     <message>
 1030         <source>getActiveLayer() -&gt; string
 1031 
 1032 Returns the name of the current active layer.
 1033 </source>
 1034         <translation>getActiveLayer() -&gt; string
 1035 
 1036 Gibt die aktive Ebene zurück.</translation>
 1037     </message>
 1038     <message>
 1039         <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 1040 
 1041 Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
 1042 If &quot;name&quot; is not given the currently selected item is used.
 1043 
 1044 May raise NotFoundError if the layer can&apos;t be found.
 1045 May raise ValueError if the layer name isn&apos;t acceptable.
 1046 </source>
 1047         <translation>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
 1048 
 1049 Verschiebt das Objekt &quot;name&quot; auf die Ebene &quot;layer&quot;. Die Ebene muss
 1050 vorhanden sein. Ist &quot;name&quot; nicht angegeben, wird das aktive Objekt benutzt.
 1051 
 1052 Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf.
 1053 Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation>
 1054     </message>
 1055     <message>
 1056         <source>setLayerVisible(&quot;layer&quot;, visible)
 1057 
 1058 Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
 1059 the layer is invisible.
 1060 
 1061 May raise NotFoundError if the layer can&apos;t be found.
 1062 May raise ValueError if the layer name isn&apos;t acceptable.
 1063 </source>
 1064         <translation>setLayerVisible(&quot;layer&quot;, visible)
 1065 
 1066 Zeigt die Ebene &quot;layer&quot; an oder versteckt sie. Ist &quot;visible&quot; auf False gesetzt,
 1067 ist die Ebene unsichtbar.
 1068 
 1069 Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf.
 1070 Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation>
 1071     </message>
 1072     <message>
 1073         <source>setLayerPrintable(&quot;layer&quot;, printable)
 1074 
 1075 Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
 1076 false the layer won&apos;t be printed.
 1077 
 1078 May raise NotFoundError if the layer can&apos;t be found.
 1079 May raise ValueError if the layer name isn&apos;t acceptable.
 1080 </source>
 1081         <translation>setLayerPrintable(&quot;layer&quot;, printable)
 1082 
 1083 Legt fest, ob die Ebene &quot;layer&quot; gedruckt werden soll oder nicht. False bedeutet, dass
 1084 die Ebene nicht gedruckt wird.
 1085 
 1086 Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf.
 1087 Ist der Name Name ungültig, tritt der Fehler ValueError auf.</translation>
 1088     </message>
 1089     <message>
 1090         <source>deleteLayer(&quot;layer&quot;)
 1091 
 1092 Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
 1093 exists or if it&apos;s the only layer in the document.
 1094 
 1095 May raise NotFoundError if the layer can&apos;t be found.
 1096 May raise ValueError if the layer name isn&apos;t acceptable.
 1097 </source>
 1098         <translation>deleteLayer(&quot;layer&quot;)
 1099 
 1100 Löscht die Ebene &quot;layer&quot;. Ist die Ebene nicht vorhanden oder ist nur eine
 1101 Ebene vorhanden, passiert gar nichts.
 1102 
 1103 Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf,
 1104 Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation>
 1105     </message>
 1106     <message>
 1107         <source>createLayer(layer)
 1108 
 1109 Creates a new layer with the name &quot;name&quot;.
 1110 
 1111 May raise ValueError if the layer name isn&apos;t acceptable.
 1112 </source>
 1113         <translation>createLayer(layer)
 1114 
 1115 Erzeugt einen Ebene mit dem Namen &quot;layer&quot;.
 1116 
 1117 Ist der Name ungültig, tritt der Fehler ValueError auf.</translation>
 1118     </message>
 1119     <message>
 1120         <source>getGuiLanguage() -&gt; string
 1121 
 1122 Returns a string with the -lang value.
 1123 </source>
 1124         <translation>getGuiLanguage() -&gt; string
 1125 
 1126 Gibt den Wert der Variable -lang zurück.</translation>
 1127     </message>
 1128     <message>
 1129         <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1130 
 1131 Creates a new ellipse on the current page and returns its name.
 1132 The coordinates are given in the current measurement units of the document
 1133 (see UNIT constants). &quot;name&quot; should be a unique identifier for the object
 1134 because you need this name for further referencing of that object. If &quot;name&quot;
 1135 is not given Scribus will create one for you.
 1136 
 1137 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1138 </source>
 1139         <translation>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1140 
 1141 Erzeugt eine Ellipse auf der aktuellen Seite und gibt ihren Namen zurück. Die Koordinaten
 1142 werden in der Masseinheit des Dokuments angegeben (siehe UNIT-Konstanten). &quot;name&quot; sollte
 1143 das Objekt eindeutig identifizieren, weil Sie den Namen für spätere Zwecke brauchen. Ist &quot;name&quot;
 1144 nicht angegeben, erzeugt Scribus einen Namen für das Objekt.
 1145 
 1146 Ist der Name schon vorhanden, tritt der Fehler NameExistsError auf.</translation>
 1147     </message>
 1148     <message>
 1149         <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1150 
 1151 Creates a new picture frame on the current page and returns its name. The
 1152 coordinates are given in the current measurement units of the document.
 1153 &quot;name&quot; should be a unique identifier for the object because you need this
 1154 name for further access to that object. If &quot;name&quot; is not given Scribus will
 1155 create one for you.
 1156 
 1157 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1158 </source>
 1159         <translation>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1160 
 1161 Erzeugt einen Bildrahmen auf der aktuellen Seite und gibt seinen Namen zurück.
 1162 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1163 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1164 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1165 einen Namen für das Objekt fest.
 1166 
 1167 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation>
 1168     </message>
 1169     <message>
 1170         <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1171 
 1172 Creates a new text frame on the actual page and returns its name.
 1173 The coordinates are given in the actual measurement unit of the document (see
 1174 UNIT constants). &quot;name&quot; should be a unique identifier for the object because
 1175 you need this name for further referencing of that object. If &quot;name&quot; is not
 1176 given Scribus will create one for you.
 1177 
 1178 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1179 </source>
 1180         <translation>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
 1181 
 1182 Erzeugt einen neuen Textrahmen auf der aktuellen Seite und gibt seinen Namen zurück.
 1183 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1184 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1185 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1186 einen Namen für das Objekt fest.
 1187 
 1188 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation>
 1189     </message>
 1190     <message>
 1191         <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
 1192 
 1193 Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
 1194 its name. The coordinates are given in the current measurement unit of the
 1195 document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
 1196 object because you need this name for further access to that object. If
 1197 &quot;name&quot; is not given Scribus will create one for you.
 1198 
 1199 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1200 </source>
 1201         <translation>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
 1202 
 1203 Erzeugt eine Linie von P(x1,y1) zu P(x2,y2) und gibt ihren Namen zurück.
 1204 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1205 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1206 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1207 einen Namen für das Objekt fest.
 1208 
 1209 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation>
 1210     </message>
 1211     <message>
 1212         <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
 1213 
 1214 Creates a new polyline and returns its name. The points for the polyline are
 1215 stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
 1216 The coordinates are given in the current measurement units of the document (see
 1217 UNIT constants). &quot;name&quot; should be a unique identifier for the object because
 1218 you need this name for further access to that object. If &quot;name&quot; is not given
 1219 Scribus will create one for you.
 1220 
 1221 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1222 May raise ValueError if an insufficient number of points is passed or if
 1223 the number of values passed don&apos;t group into points without leftovers.
 1224 </source>
 1225         <translation>createPolyLine(list, [&quot;name&quot;]) -&gt; string
 1226 
 1227 Erzeugt eine Mehrfachlinie und und gibt ihren Namen zurück. Die Punkte werden in
 1228 der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn].
 1229 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1230 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1231 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1232 einen Namen für das Objekt fest.
 1233 
 1234 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.
 1235 Ist die Anzahl der Punkte nicht genügend, tritt der Fehler ValueError auf.</translation>
 1236     </message>
 1237     <message>
 1238         <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
 1239 
 1240 Creates a new polygon and returns its name. The points for the polygon are
 1241 stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
 1242 At least three points are required. There is no need to repeat the first point
 1243 to close the polygon. The polygon is automatically closed by connecting the
 1244 first and the last point.  The coordinates are given in the current measurement
 1245 units of the document (see UNIT constants).  &quot;name&quot; should be a unique
 1246 identifier for the object because you need this name for further access to that
 1247 object. If &quot;name&quot; is not given Scribus will create one for you.
 1248 
 1249 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1250 May raise ValueError if an insufficient number of points is passed or if
 1251 the number of values passed don&apos;t group into points without leftovers.
 1252 </source>
 1253         <translation>createPolygon(list, [&quot;name&quot;]) -&gt; string
 1254 
 1255 Erzeugt ein Vieleck und gibt seinen Namen zurück. Die Punkte werden in
 1256 der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn]. Sie müssen
 1257 mindestens 3 Punkte angeben, aber Sie müssen den ersten Punkt nicht zum
 1258 Schliessen des Polygons erneut angeben - das geschieht automatisch.
 1259 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1260 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1261 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1262 einen Namen für das Objekt fest.
 1263 
 1264 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.
 1265 Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation>
 1266     </message>
 1267     <message>
 1268         <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
 1269 
 1270 Creates a new bezier curve and returns its name. The points for the bezier
 1271 curve are stored in the list &quot;list&quot; in the following order:
 1272 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
 1273 In the points list, x and y mean the x and y coordinates of the point and kx
 1274 and ky meaning the control point for the curve.  The coordinates are given in
 1275 the current measurement units of the document (see UNIT constants). &quot;name&quot;
 1276 should be a unique identifier for the object because you need this name for
 1277 further access to that object. If &quot;name&quot; is not given Scribus will create one
 1278 for you.
 1279 
 1280 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1281 May raise ValueError if an insufficient number of points is passed or if
 1282 the number of values passed don&apos;t group into points without leftovers.
 1283 </source>
 1284         <translation>createBezierLine(list, [&quot;name&quot;]) -&gt; string
 1285 
 1286 Erzeugt eine Bézierkurve und gibt ihren Namen zurück. Die Punkte werden in
 1287 der folgenden Reihenfolge gespeichert: 
 1288 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]. 
 1289 x und y steht dabei für die X- und Y-Koordinaten und kx und ky steht für den
 1290 Kontrollpunkt der Kurve. 
 1291 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1292 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1293 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1294 einen Namen für das Objekt fest.
 1295 
 1296 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.
 1297 Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation>
 1298     </message>
 1299     <message>
 1300         <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 1301 
 1302 Creates a new pathText by merging the two objects &quot;textbox&quot; and
 1303 &quot;beziercurve&quot; and returns its name. The coordinates are given in the current
 1304 measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
 1305 unique identifier for the object because you need this name for further access
 1306 to that object. If &quot;name&quot; is not given Scribus will create one for you.
 1307 
 1308 May raise NameExistsError if you explicitly pass a name that&apos;s already used.
 1309 May raise NotFoundError if one or both of the named base object don&apos;t exist.
 1310 </source>
 1311         <translation>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
 1312 
 1313 Erzeugt Text auf einem Pfad, indem die Objekte &quot;textbox&quot; und &quot;beziercurve&quot;
 1314 zusammengefügt werden.
 1315 Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe
 1316 UNIT-Konstanten). &quot;name&quot; sollte das Objekt eindeutig identifizieren, weil Sie den
 1317 Namen für spätere Zwecke benötigen. Wenn Sie &quot;name&quot; nicht angeben, legt Scribus
 1318 einen Namen für das Objekt fest.
 1319 
 1320 Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.
 1321 Sind ein oder beide Objekte nicht vorhanden, tritt der Fehler NotFoundError auf.</translation>
 1322     </message>
 1323     <message>
 1324         <source>deleteObject([&quot;name&quot;])
 1325 
 1326 Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
 1327 selected item is deleted.
 1328 </source>
 1329         <translation>deleteObject([&quot;name&quot;])
 1330 
 1331 Löscht das Objekt &quot;name&quot;. Ist &quot;name&quot; nicht angegeben, wird das aktuelle
 1332 Objekt gelöscht.</translation>
 1333     </message>
 1334     <message>
 1335         <source>textFlowsAroundFrame(&quot;name&quot; [, state])
 1336 
 1337 Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
 1338 Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
 1339 is not passed, text flow is toggled.
 1340 </source>
 1341         <translation>textFlowsAroundFrame(&quot;name&quot; [, state])
 1342 
 1343 Aktiviert/Deaktiviert &quot;Text umfliesst den Rahmen&quot; für das Objekt &quot;name.
 1344 &quot;state&quot; ist optional, wenn es nicht angegeben ist, wird der Status der
 1345 Option jeweils geändert.</translation>
 1346     </message>
 1347     <message>
 1348         <source>objectExists([&quot;name&quot;]) -&gt; bool
 1349 
 1350 Test if an object with specified name really exists in the document.
 1351 The optional parameter is the object name. When no object name is given,
 1352 returns True if there is something selected.
 1353 </source>
 1354         <translation>objectExists([&quot;name&quot;]) -&gt; bool
 1355 
 1356 Gibt an, ob das Objekt mit dem Name &quot;name&quot; auch wirklich im aktuellen Dokument
 1357 existiert. &quot;name&quot; ist optional, ist &quot;name&quot; nicht angegeben, wird True ausgegeben, wenn
 1358 gerade ein Objekt selektiert ist.</translation>
 1359     </message>
 1360     <message>
 1361         <source>setStyle(&quot;style&quot; [, &quot;name&quot;])
 1362 
 1363 Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
 1364 given, it&apos;s applied on the selected object.
 1365 </source>
 1366         <translation>setStyle(&quot;style&quot; [, &quot;name&quot;])
 1367 
 1368 Setzt den Absatzstil &quot;style&quot; für das Objekt &quot;name&quot;. Ist kein Objekt angegeben,
 1369 wird der Stil auf das aktuelle Objekt angewendet.</translation>
 1370     </message>
 1371     <message>
 1372         <source>getAllStyles() -&gt; list
 1373 
 1374 Return a list of the names of all paragraph styles in the current document.
 1375 </source>
 1376         <translation>getAllStyles() -&gt; list
 1377 
 1378 Gibt eine Listen mit allen Absatzstilen im aktuellen Dokument zurück.</translation>
 1379     </message>
 1380     <message>
 1381         <source>currentPage() -&gt; integer
 1382 
 1383 Returns the number of the current working page. Page numbers are counted from 1
 1384 upwards, no matter what the displayed first page number of your document is.
 1385 </source>
 1386         <translation>currentPage() -&gt; integer
 1387 
 1388 Gibt die Nummer der aktuellen Seite zurück. Seitenzahlen werden ab 1 gezählt, egal welche
 1389 Seitenzahl auf der aktuellen Seite angezeigt wird.</translation>
 1390     </message>
 1391     <message>
 1392         <source>redrawAll()
 1393 
 1394 Redraws all pages.
 1395 </source>
 1396         <translation>redrawAll()
 1397 
 1398 Baut alle Seiten neu auf.</translation>
 1399     </message>
 1400     <message>
 1401         <source>savePageAsEPS(&quot;name&quot;)
 1402 
 1403 Saves the current page as an EPS to the file &quot;name&quot;.
 1404 
 1405 May raise ScribusError if the save failed.
 1406 </source>
 1407         <translation>savePageAsEPS(&quot;name&quot;)
 1408 
 1409 Speichert die aktuelle Seite als EPS-Datei mit dem Namen &quot;name&quot;.
 1410 
 1411 Schlägt das Speichern fehl, tritt der Fehler ScribusError auf.</translation>
 1412     </message>
 1413     <message>
 1414         <source>deletePage(nr)
 1415 
 1416 Deletes the given page. Does nothing if the document contains only one page.
 1417 Page numbers are counted from 1 upwards, no matter what the displayed first
 1418 page number is.
 1419 
 1420 May raise IndexError if the page number is out of range
 1421 </source>
 1422         <translation>deletePage(nr)
 1423 
 1424 Löscht die Seite mit der Nummer &quot;nr&quot;. Besteht das Dokument nur aus einer Seite, passiert nichts.
 1425 Seitenzahlen werden von 1 aufwärts gezählt, egal, welche Seitenzahl Sie auf der aktuellen Seite
 1426 im Dokument sehen.
 1427 
 1428 Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf</translation>
 1429     </message>
 1430     <message>
 1431         <source>gotoPage(nr)
 1432 
 1433 Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
 1434 gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
 1435 just sets the page that script commands will operates on.
 1436 
 1437 May raise IndexError if the page number is out of range.
 1438 </source>
 1439         <translation>gotoPage(nr)
 1440 
 1441 Geht zur Seite &quot;nr&quot;, das heisst, die Seite &quot;nr&quot; wird zur aktuellen Seite. Zur Zeit ändert
 1442 sich allerdings nicht die Seite, die der User sieht, es wird nur intern die aktuelle
 1443 Seite geändert.
 1444 
 1445 Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf.</translation>
 1446     </message>
 1447     <message>
 1448         <source>pageCount() -&gt; integer
 1449 
 1450 Returns the number of pages in the document.
 1451 </source>
 1452         <translation>pageCount() -&gt; integer
 1453 
 1454 Gibt die Anzahl der Seiten im Dokument zurück.</translation>
 1455     </message>
 1456     <message>
 1457         <source>getHGuides() -&gt; list
 1458 
 1459 Returns a list containing positions of the horizontal guides. Values are in the
 1460 document&apos;s current units - see UNIT_&lt;type&gt; constants.
 1461 </source>
 1462         <translation>getHGuides() -&gt; list
 1463 
 1464 Gibt eine Liste zurück, die die Position der horizontalen Hilfslinien enthält. Die Werte
 1465 werden in der Masseinheit des Dokuments angegeben, siehe UNIT-Konstanten.</translation>
 1466     </message>
 1467     <message>
 1468         <source>setHGuides(list)
 1469 
 1470 Sets horizontal guides. Input parameter must be a list of guide positions
 1471 measured in the current document units - see UNIT_&lt;type&gt; constants.
 1472 
 1473 Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
 1474          setHGuides([90,250]) # replace current guides entirely
 1475 </source>
 1476         <translation>setHGuides(list)
 1477 
 1478 Legt horizontale Hilfslinien fest, list muss eine Liste der Linien sein, angegeben in der Masseinheit
 1479 des Dokuments, siehe UNIT-Konstanten.
 1480 
 1481 Beispiel:
 1482 setHGuides(getHGuides() + [200.0, 210.0] # fügt eine neue Hilfslinie hinzu
 1483 </translation>
 1484     </message>
 1485     <message>
 1486         <source>getVGuides()
 1487 
 1488 See getHGuides.
 1489 </source>
 1490         <translation>getVGuides()
 1491 
 1492 Siehe getHGuides.</translation>
 1493     </message>
 1494     <message>
 1495         <source>setVGuides()
 1496 
 1497 See setHGuides.
 1498 </source>
 1499         <translation>setVGuides()
 1500 
 1501 Siehe setHGuides.</translation>
 1502     </message>
 1503     <message>
 1504         <source>getPageSize() -&gt; tuple
 1505 
 1506 Returns a tuple with page dimensions measured in the document&apos;s current units.
 1507 See UNIT_&lt;type&gt; constants and getPageMargins()
 1508 </source>
 1509         <translation>getPageSize() -&gt; tuple
 1510 
 1511 Gibt eine Liste mit der Seitengrösse in der aktuellen Masseinheit zurück, siehe
 1512 UNIT-Konstanten und getPageMargins()</translation>
 1513     </message>
 1514     <message>
 1515         <source>getPageItems() -&gt; list
 1516 
 1517 Returns a list of tuples with items on the current page. The tuple is:
 1518 (name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
 1519 means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
 1520 the page...
 1521 </source>
 1522         <translation>getPageItems() -&gt; list
 1523 
 1524 Gibt eine Liste zurück mit den Objekten auf der aktuelle Seite. Die Reihenfolge
 1525 der Werte ist: (Name, Typ des Objekts, Anordnung).
 1526 
 1527 Beispiel: [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)] bedeutet, dass das Objekt Text1 heisst, 
 1528 ein Textrahmen ist  (type 4) und sich auf der ersten Seite befindet...</translation>
 1529     </message>
 1530     <message>
 1531         <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
 1532 
 1533 Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
 1534 is the name of one of the defined colors. If &quot;name&quot; is not given the
 1535 currently selected item is used.
 1536 </source>
 1537         <translation>setFillColor(&quot;color&quot;, [&quot;name&quot;])
 1538 
 1539 Setzt die Füllfarbe &quot;color&quot; für das Objekt &quot;name&quot;. &quot;color&quot; ist der Name einer
 1540 vorhandenen Farbe. Ist &quot;name&quot; nicht angegeben, wird das aktuelle Objekt
 1541 verwendet.</translation>
 1542     </message>
 1543     <message>
 1544         <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
 1545 
 1546 Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
 1547 is not given the currently selected item is used.
 1548 </source>
 1549         <translation>setLineColor(&quot;color&quot;, [&quot;name&quot;])
 1550 
 1551 Setzt die Linie