Rev 7716 | Rev 7929 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
7919 | mrdocs | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!DOCTYPE TS><TS version="1.1" language="de_DE"> |
||
192 | Franz | 3 | <context> |
1135 | cbradney | 4 | <name></name> |
5 | <message> |
||
7919 | mrdocs | 6 | <location filename="" line="7471221"/> |
1135 | cbradney | 7 | <source>getColorNames() -> list |
8 | |||
9 | Returns a list containing the names of all defined colors in the document. |
||
10 | If no document is open, returns a list of the default document colors. |
||
11 | </source> |
||
12 | <translation>getColorNames() -> list |
||
13 | |||
14 | Gibt eine Liste zurück, die alle vorhandenen Farben des aktuellen Dokuments enthält. |
||
15 | Wenn kein Dokument geöffnet ist, werden die Standardfarben zurückgegeben.</translation> |
||
16 | </message> |
||
17 | <message> |
||
7919 | mrdocs | 18 | <location filename="" line="7471221"/> |
1135 | cbradney | 19 | <source>newDocDialog() -> bool |
20 | |||
21 | Displays the "New Document" dialog box. Creates a new document if the user |
||
22 | accepts the settings. Does not create a document if the user presses cancel. |
||
23 | Returns true if a new document was created. |
||
24 | </source> |
||
25 | <translation>newDocDialog() -> bool |
||
26 | |||
27 | Zeigt den Dialog \"Neues Dokument\" an. Damit können Sie ein neues Dokument erstellen, wenn der Benutzer die standardmäßigen Einstellung aktzeptiert. Erzeugt kein neues Dokument, wenn der Benutzer auf \"Abbrechen\" klickt. |
||
28 | Gibt den Wert \"true\" zurück, wenn ein neues Dokument erstellt wurde.</translation> |
||
29 | </message> |
||
30 | <message> |
||
7919 | mrdocs | 31 | <location filename="" line="7471221"/> |
1135 | cbradney | 32 | <source>getFillColor(["name"]) -> string |
33 | |||
34 | Returns the name of the fill color of the object "name". |
||
35 | If "name" is not given the currently selected item is used. |
||
36 | </source> |
||
37 | <translation>getFillColor(["name"]) -> string |
||
38 | |||
39 | Gibt den Wert der Füllfarbe des Objekts "name" zurück. |
||
40 | Wenn "name" nicht angegeben ist, wird das aktuell ausgewählt Objekt verwendet.</translation> |
||
41 | </message> |
||
42 | <message> |
||
7919 | mrdocs | 43 | <location filename="" line="7471221"/> |
1135 | cbradney | 44 | <source>moveObject(dx, dy [, "name"]) |
45 | |||
46 | Moves the object "name" by dx and dy relative to its current position. The |
||
47 | distances are expressed in the current measurement unit of the document (see |
||
48 | UNIT constants). If "name" is not given the currently selected item is used. |
||
49 | If the object "name" belongs to a group, the whole group is moved. |
||
50 | </source> |
||
51 | <translation>moveObject(dx, dy [, "name"]) |
||
52 | |||
53 | Verschiebt das Objekt "name" um dx und dy relativ zur Position. Die |
||
54 | Entfernungsangaben werden in der Maßeinheit des Dokuments |
||
55 | angegeben (siehe Konstanten UNIT*). Wenn "name" nicht vorhanden ist, |
||
56 | wird das ausgewählte Objekt verschoben und wenn "name" zu einer Gruppe |
||
57 | gehört, wird die gesamte Gruppe verschoben.</translation> |
||
58 | </message> |
||
59 | <message> |
||
7919 | mrdocs | 60 | <location filename="" line="7471221"/> |
1135 | cbradney | 61 | <source>setRedraw(bool) |
62 | |||
63 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
64 | This change will persist even after the script exits, so make sure to call |
||
65 | setRedraw(True) in a finally: clause at the top level of your script. |
||
66 | </source> |
||
67 | <translation>setRedraw(bool) |
||
68 | |||
69 | Wenn bool=False, dann wird die Seite nicht neu neu aufgebaut (redraw ist deaktiviert). |
||
2599 | cbradney | 70 | Standard ist bool=True. Diese Einstellung bleibt bestehen, auch wenn das Script beendet ist. |
71 | Stellen Sie also sicher, dass setRedraw(True) aufgerufen wird, bevor das Script beendet wird.</translation> |
||
1135 | cbradney | 72 | </message> |
73 | <message> |
||
7919 | mrdocs | 74 | <location filename="" line="7471221"/> |
1135 | cbradney | 75 | <source>createRect(x, y, width, height, ["name"]) -> string |
76 | |||
77 | Creates a new rectangle on the current page and returns its name. The |
||
78 | coordinates are given in the current measurement units of the document |
||
79 | (see UNIT constants). "name" should be a unique identifier for the object |
||
80 | because you need this name to reference that object in future. If "name" |
||
81 | is not given Scribus will create one for you. |
||
82 | |||
83 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
84 | </source> |
||
85 | <translation>createRect(x, y, width, height, ["name"]) -> string |
||
86 | |||
87 | Erzeugt ein neues Rechteck auf der aktuellen Seite und gibt seinen Namen zurück. Die |
||
88 | Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe UNIT-Konstanten). |
||
89 | "name" sollte eine eindeutige Identifikation des Rechtecks ermöglichen, weil Sie den Objekt- |
||
90 | namen immer wieder benötigen. Ist "name" nicht vorhanden, wählt Scribus einen Namen für Sie. |
||
91 | |||
92 | Wenn Sie einen schon verwendeten Namen benutzen, tritt der Fehler NameExistsError auf.</translation> |
||
93 | </message> |
||
94 | <message> |
||
7919 | mrdocs | 95 | <location filename="" line="7471221"/> |
1135 | cbradney | 96 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
97 | |||
98 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
99 | the same as for setFillColor() and setFillShade(). See the constants for |
||
100 | available types (FILL_<type>). |
||
101 | </source> |
||
102 | <translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
103 | |||
104 | Füllt das Objekt "name" mit einem Farbverlauf. Farbbezeichnungen sind die |
||
105 | gleichen wie für setFillColor() und setFillShade(). Siehe Konstanten |
||
106 | für mögliche Typen (FILL_<type>).</translation> |
||
107 | </message> |
||
108 | <message> |
||
7919 | mrdocs | 109 | <location filename="" line="7471221"/> |
1135 | cbradney | 110 | <source>getFontSize(["name"]) -> float |
111 | |||
112 | Returns the font size in points for the text frame "name". If this text |
||
113 | frame has some text selected the value assigned to the first character of |
||
114 | the selection is returned. |
||
115 | If "name" is not given the currently selected item is used. |
||
116 | </source> |
||
117 | <translation>getFontSize(["name"]) -> float |
||
118 | |||
119 | Gibt die Schriftgröße in Punkten für den Textrahmen "name" zurück. Wenn innerhalb |
||
120 | des Rahmens Text markiert ist, wird die Schriftgröße des ersten Zeichens verwendet. |
||
121 | Wenn "name" nicht vergeben ist, wird der selektierte Textrahmen verwendet.</translation> |
||
122 | </message> |
||
123 | <message> |
||
7919 | mrdocs | 124 | <location filename="" line="7471221"/> |
1135 | cbradney | 125 | <source>messagebarText("string") |
126 | |||
127 | Writes the "string" into the Scribus message bar (status line). The text |
||
128 | must be UTF8 encoded or 'unicode' string(recommended). |
||
129 | </source> |
||
130 | <translation>messagebarText("string") |
||
131 | |||
132 | Schreibt "string" in die Statuszeile von Scribus. Der Text muss |
||
133 | UTF8-kodiert oder ein 'unicode'-String sein (empfohlen).</translation> |
||
134 | </message> |
||
1525 | cbradney | 135 | <message> |
7919 | mrdocs | 136 | <location filename="" line="7471221"/> |
2576 | cbradney | 137 | <source>newPage(where [,"masterpage"]) |
138 | |||
139 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
140 | document, otherwise the new page is inserted before "where". Page numbers are |
||
141 | counted from 1 upwards, no matter what the displayed first page number of your |
||
142 | document is. The optional parameter "masterpage" specifies the name of the |
||
143 | master page for the new page. |
||
144 | |||
145 | May raise IndexError if the page number is out of range |
||
146 | </source> |
||
3426 | cbradney | 147 | <translation>newPage(where [,"masterpage"]) |
148 | |||
149 | Erzeugt eine neue Seite. Falls "where" -1 ist, wird die neue Seite an das Dokument angefügt, |
||
150 | ansonsten wird die neue Seite vor "where" eingefügt. Seitennummern werden von 1 ab hoch- |
||
151 | gezählt, egal welches die angezeigte erste Seitennummer Ihres Dokumentes ist. Der optionale |
||
152 | Parameter "masterpage" legt den Namen der Musterseite für die neue Seite fest</translation> |
||
2576 | cbradney | 153 | </message> |
2952 | cbradney | 154 | <message> |
7919 | mrdocs | 155 | <location filename="" line="7471221"/> |
2952 | cbradney | 156 | <source>importSVG("string") |
157 | |||
158 | The "string" must be a valid filename for a SVG image. The text |
||
159 | must be UTF8 encoded or 'unicode' string(recommended). |
||
160 | </source> |
||
3426 | cbradney | 161 | <translation>"string" muss ein gültiger Dateiname einer SVG-Datei sein. Der Text |
162 | muss UTF8-kodiert oder ein Unicode-String (empfohlen) sein.</translation> |
||
2952 | cbradney | 163 | </message> |
3824 | cbradney | 164 | <message> |
7919 | mrdocs | 165 | <location filename="" line="7471221"/> |
3824 | cbradney | 166 | <source>newDocument(size, margins, orientation, firstPageNumber, |
7561 | mrdocs | 167 | unit, pagesType, firstPageOrder, numPages) -> bool |
6530 | cbradney | 168 | |
169 | Creates a new document and returns true if successful. The parameters have the |
||
170 | following meaning: |
||
171 | |||
172 | size = A tuple (width, height) describing the size of the document. You can |
||
173 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
174 | |||
175 | margins = A tuple (left, right, top, bottom) describing the document |
||
176 | margins |
||
177 | |||
178 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
179 | |||
180 | firstPageNumer = is the number of the first page in the document used for |
||
181 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
182 | numbers if you're creating a document in several parts. |
||
183 | |||
184 | unit: this value sets the measurement units used by the document. Use a |
||
185 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
186 | UNIT_PICAS, UNIT_POINTS. |
||
187 | |||
188 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
189 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
190 | PAGE_4 is 4-fold. |
||
191 | |||
192 | firstPageOrder = What is position of first page in the document. |
||
193 | Indexed from 0 (0 = first). |
||
194 | |||
195 | numPage = Number of pages to be created. |
||
196 | |||
197 | The values for width, height and the margins are expressed in the given unit |
||
198 | for the document. PAPER_* constants are expressed in points. If your document |
||
199 | is not in points, make sure to account for this. |
||
200 | |||
201 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
202 | PAGE_4, 3, 1) |
||
203 | |||
204 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
205 | </source> |
||
7561 | mrdocs | 206 | <translation>newDocument(size, margins, orientation, firstPageNumber, |
207 | (sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)unit, pagesType, firstPageOrder, numPages) -> bool |
||
7426 | cbradney | 208 | |
7561 | mrdocs | 209 | Creates a new document and returns true if successful. The parameters have the(new line) |
210 | following meaning:(new line) |
||
211 | (new line) |
||
7426 | cbradney | 212 | size = A tuple (width, height) describing the size of the document. You can |
213 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
214 | |||
215 | margins = A tuple (left, right, top, bottom) describing the document |
||
216 | margins |
||
217 | |||
218 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
219 | |||
220 | firstPageNumer = is the number of the first page in the document used for |
||
221 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
222 | numbers if you're creating a document in several parts. |
||
223 | |||
224 | unit: this value sets the measurement units used by the document. Use a |
||
225 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
226 | UNIT_PICAS, UNIT_POINTS. |
||
227 | |||
228 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
229 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
230 | PAGE_4 is 4-fold. |
||
231 | |||
232 | firstPageOrder = What is position of first page in the document. |
||
233 | Indexed from 0 (0 = first). |
||
234 | |||
235 | numPage = Number of pages to be created. |
||
236 | |||
237 | The values for width, height and the margins are expressed in the given unit |
||
238 | for the document. PAPER_* constants are expressed in points. If your document |
||
239 | is not in points, make sure to account for this. |
||
240 | |||
241 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
242 | PAGE_4, 3, 1) |
||
243 | |||
7561 | mrdocs | 244 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.</translation> |
6530 | cbradney | 245 | </message> |
1135 | cbradney | 246 | </context> |
247 | <context> |
||
248 | <name>@default</name> |
||
249 | <message> |
||
7919 | mrdocs | 250 | <location filename="" line="7471221"/> |
1135 | cbradney | 251 | <source>getColor("name") -> tuple |
252 | |||
253 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
254 | color "name" from the current document. If no document is open, returns |
||
255 | the value of the named color from the default document colors. |
||
256 | |||
257 | May raise NotFoundError if the named color wasn't found. |
||
258 | May raise ValueError if an invalid color name is specified. |
||
259 | </source> |
||
260 | <translation>getColor("name") -> tuple |
||
261 | |||
262 | Gibt eine Liste mit den vier Farbkomponenten der Farbe "name" im aktuellen |
||
263 | Dokument wieder. Wenn kein Dokument geöffnet ist, werden die Werte der |
||
264 | angegebenen Standardfarbe zurückgegeben. |
||
265 | |||
266 | Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
267 | Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
268 | </message> |
||
269 | <message> |
||
7919 | mrdocs | 270 | <location filename="" line="7471221"/> |
1135 | cbradney | 271 | <source>changeColor("name", c, m, y, k) |
272 | |||
273 | Changes the color "name" to the specified CMYK value. The color value is |
||
274 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
275 | Color components should be in the range from 0 to 255. |
||
276 | |||
277 | May raise NotFoundError if the named color wasn't found. |
||
278 | May raise ValueError if an invalid color name is specified. |
||
279 | </source> |
||
280 | <translation>changeColor("name", c, m, y, k) |
||
281 | |||
282 | Ändert die Farbe "name" auf die angegeben CMYK-Werte. Die Abkürzungen |
||
283 | stehen für die vier Farben c=Cyan, m=Magenta, y=Yellow, b=Black. |
||
284 | Die Werte müssen zwischen 0 und 255 liegen. |
||
285 | |||
286 | Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
287 | Wenn ein ungültiger Farbname angegeben wird, tritt der Fehler ValueError auf.</translation> |
||
288 | </message> |
||
289 | <message> |
||
7919 | mrdocs | 290 | <location filename="" line="7471221"/> |
1135 | cbradney | 291 | <source>deleteColor("name", "replace") |
292 | |||
293 | Deletes the color "name". Every occurence of that color is replaced by the |
||
294 | color "replace". If not specified, "replace" defaults to the color |
||
295 | "None" - transparent. |
||
296 | |||
297 | deleteColor works on the default document colors if there is no document open. |
||
298 | In that case, "replace", if specified, has no effect. |
||
299 | |||
300 | May raise NotFoundError if a named color wasn't found. |
||
301 | May raise ValueError if an invalid color name is specified. |
||
302 | </source> |
||
303 | <translation>deleteColor("name", "replace") |
||
304 | |||
305 | Löscht die Farbe "name". An allen Stellen, wo "name" im Dokument auftritt, |
||
306 | wird sie durch "replace" ersetzt. Standardmäßig ist "replace" gar keine Farbe - |
||
307 | Transparenz. |
||
308 | |||
309 | Sie können deleteColor auch verwenden, wenn kein Dokument geöffnet ist, dann |
||
310 | bleibt die Angabe von "replace" aber ohne Auswirkung. |
||
311 | |||
312 | Wenn die angegebene Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
313 | Wenn der Farbname ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
314 | </message> |
||
315 | <message> |
||
7919 | mrdocs | 316 | <location filename="" line="7471221"/> |
1135 | cbradney | 317 | <source>replaceColor("name", "replace") |
318 | |||
319 | Every occurence of the color "name" is replaced by the color "replace". |
||
320 | |||
321 | May raise NotFoundError if a named color wasn't found. |
||
322 | May raise ValueError if an invalid color name is specified. |
||
323 | </source> |
||
324 | <translation>replaceColor("name", "replace") |
||
325 | |||
326 | An allen Stellen, wo die Farbe "name" vorkommt, wird sie duch die Farbe |
||
327 | "replace" ersetzt. |
||
328 | |||
329 | Wenn eine der Farben nicht vorhanden ist, tritt der Fehler NotFoundError auf. |
||
330 | Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
331 | </message> |
||
332 | <message> |
||
7919 | mrdocs | 333 | <location filename="" line="7471221"/> |
1135 | cbradney | 334 | <source>messageBox("caption", "message", |
335 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
336 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
337 | |||
338 | Displays a message box with the title "caption", the message "message", and |
||
339 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
340 | button, OK, is displayed. Only the caption and message arguments are required, |
||
341 | though setting an icon and appropriate button(s) is strongly |
||
342 | recommended. The message text may contain simple HTML-like markup. |
||
343 | |||
344 | Returns the number of the button the user pressed. Button numbers start |
||
345 | at 1. |
||
346 | |||
347 | For the icon and the button parameters there are predefined constants available |
||
348 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
349 | ICON_* constants defined in the module. There are also two extra constants that |
||
350 | can be binary-ORed with button constants: |
||
351 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
352 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
353 | |||
354 | Usage examples: |
||
355 | result = messageBox('Script failed', |
||
356 | 'This script only works when you have a text frame selected.', |
||
357 | ICON_ERROR) |
||
358 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
359 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
360 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
361 | |||
362 | Defined button and icon constants: |
||
363 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
364 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
365 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
366 | </source> |
||
367 | <translation>messageBox("caption", "message",icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
368 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
369 | Zeigt einen Dialog mit dem Titel "caption", der Botschaft "message" und dem Symbol "icon" sowie |
||
370 | bis zu 3 Buttons an. Standard ist kein Symbol und ein OK-Button. Nur Titel und Botschaft sind |
||
371 | erforderliche Felder, aber Symbol und Buttons werden empfohlen. |
||
372 | Der Text der Botschaft kann auch einfachen HTML-Code enthalten. |
||
373 | Gibt die Nummer des Buttons wieder, der gedrückt wurde, beginnend mit 1. |
||
374 | Für Buttons und Symbole gibt es vordefinierte Konstanten, die gleichen wie in |
||
375 | der Qt-Dokumentation. |
||
376 | Die sind im Modul definiert und heißen BUTTON_* und ICON_* . Es gibt auch zwei |
||
377 | spezielle Konstanten, die auch den Wert 0 annehmen können: BUTTONOPT_DEFAULT aktiviert den |
||
378 | jeweiligen Button per Druck auf Enter. |
||
379 | BUTTONOPT_ESCAPE drückt die Escape-Taste falls dieser Button gedrückt wird. |
||
380 | Beispiel |
||
381 | result = messageBox('Script failed','This script only works when you have a text frame selected.', |
||
382 | ICON_ERROR) |
||
383 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',ICON_WARNING, |
||
384 | BUTTON_YES|BUTTONOPT_DEFAULT, BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
385 | Konstanten für Buttons und Symbole: |
||
386 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
387 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
388 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.</translation> |
||
389 | </message> |
||
390 | <message> |
||
7919 | mrdocs | 391 | <location filename="" line="7471221"/> |
1135 | cbradney | 392 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
393 | |||
394 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
395 | Parameters: window title, text in the window and optional 'default' value. |
||
396 | |||
397 | Example: valueDialog('title', 'text in the window', 'optional') |
||
398 | </source> |
||
399 | <translation>valueDialog(caption, message [,defaultvalue]) -> string |
||
400 | |||
401 | Zeigt einen Dialog an, der einen String verlangt und zurückgibt. |
||
402 | Parameter: Fenstertitel, Text im Fenster und optionaler 'default'-Text. |
||
403 | |||
404 | Beispiel: valueDialog('TItel', 'Text im Fenster', 'optional')</translation> |
||
405 | </message> |
||
406 | <message> |
||
7919 | mrdocs | 407 | <location filename="" line="7471221"/> |
1135 | cbradney | 408 | <source>closeDoc() |
409 | |||
410 | Closes the current document without prompting to save. |
||
411 | |||
412 | May throw NoDocOpenError if there is no document to close |
||
413 | </source> |
||
414 | <translation>closeDoc() |
||
415 | |||
416 | Schließt das aktuelle Dokument, ohne Änderungen zu sichern. |
||
417 | |||
418 | Wenn kein Dokument offen ist, tritt der Fehler NoDocOpenError auf</translation> |
||
419 | </message> |
||
420 | <message> |
||
7919 | mrdocs | 421 | <location filename="" line="7471221"/> |
1135 | cbradney | 422 | <source>haveDoc() -> bool |
423 | |||
424 | Returns true if there is a document open. |
||
425 | </source> |
||
426 | <translation>haveDoc() -> bool |
||
427 | |||
428 | Gibt True zurück, wenn ein Dokument geöffnet ist.</translation> |
||
429 | </message> |
||
430 | <message> |
||
7919 | mrdocs | 431 | <location filename="" line="7471221"/> |
1135 | cbradney | 432 | <source>openDoc("name") |
433 | |||
434 | Opens the document "name". |
||
435 | |||
436 | May raise ScribusError if the document could not be opened. |
||
437 | </source> |
||
438 | <translation>openDoc("name") |
||
439 | |||
440 | Öffnet das Dokument "name". |
||
441 | |||
442 | Schlägt das fehl, tritt der Fehler ScribusError auf.</translation> |
||
443 | </message> |
||
444 | <message> |
||
7919 | mrdocs | 445 | <location filename="" line="7471221"/> |
1135 | cbradney | 446 | <source>saveDoc() |
447 | |||
448 | Saves the current document with its current name, returns true if successful. |
||
449 | If the document has not already been saved, this may bring up an interactive |
||
450 | save file dialog. |
||
451 | |||
452 | If the save fails, there is currently no way to tell. |
||
453 | </source> |
||
454 | <translation>saveDoc() |
||
455 | |||
456 | Speichert das Dokument unter dem aktuellen Namen und gibt True zurück, wenn das |
||
457 | erfolgreich war. Wurde das Dokument noch nicht gesichert, öffnet sich der "Speichern"- |
||
458 | Dialog. |
||
459 | |||
460 | Wenn das Sichern fehlschlägt, erscheint derzeit keine Fehlermeldung.</translation> |
||
461 | </message> |
||
462 | <message> |
||
7919 | mrdocs | 463 | <location filename="" line="7471221"/> |
1135 | cbradney | 464 | <source>saveDocAs("name") |
465 | |||
466 | Saves the current document under the new name "name" (which may be a full or |
||
467 | relative path). |
||
468 | |||
469 | May raise ScribusError if the save fails. |
||
470 | </source> |
||
471 | <translation>saveDocAs("name") |
||
472 | |||
473 | Speichert das aktuelle Dokument unter dem neuen Namen "name". Die Pfadangabe kann dabei |
||
474 | relativ oder absolut sein. |
||
475 | |||
476 | Schlägt das Sichern fehl, tritt der Fehler ScribusError auf.</translation> |
||
477 | </message> |
||
478 | <message> |
||
7919 | mrdocs | 479 | <location filename="" line="7471221"/> |
1135 | cbradney | 480 | <source>setMargins(lr, rr, tr, br) |
481 | |||
482 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
483 | margins are given in the measurement units of the document - see UNIT_<type> |
||
484 | constants. |
||
485 | </source> |
||
486 | <translation>setMargins(lr, rr, tr, br) |
||
487 | |||
488 | Verändert die Ränder des Dokuments. Links=lr, Rechts=rr, Oben=tr, Unten=br. |
||
489 | Die Einheit wird durch die Maßeinheit des Dokuments vorgegeben, siehe die |
||
490 | Konstanten UNIT_<type>.</translation> |
||
491 | </message> |
||
492 | <message> |
||
7919 | mrdocs | 493 | <location filename="" line="7471221"/> |
1135 | cbradney | 494 | <source>setUnit(type) |
495 | |||
496 | Changes the measurement unit of the document. Possible values for "unit" are |
||
497 | defined as constants UNIT_<type>. |
||
498 | |||
499 | May raise ValueError if an invalid unit is passed. |
||
500 | </source> |
||
501 | <translation>setUnit(type) |
||
502 | |||
503 | Ändert die Maßeinheit des Dokuments auf "type". Mögliche Einheiten geben Sie durch die |
||
504 | Konstanten UNIT_<type> an. |
||
505 | |||
506 | Ist die Einheit ungültig, tritt der Fehler ValueError auf.</translation> |
||
507 | </message> |
||
508 | <message> |
||
7919 | mrdocs | 509 | <location filename="" line="7471221"/> |
1135 | cbradney | 510 | <source>getUnit() -> integer (Scribus unit constant) |
511 | |||
512 | Returns the measurement units of the document. The returned value will be one |
||
513 | of the UNIT_* constants: |
||
514 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
515 | </source> |
||
516 | <translation>getUnit() -> integer (Scribus unit constant) |
||
517 | |||
518 | Gibt die Maßeinheit des Dokuments zurück. Der Rückgabewert ist eine |
||
2222 | cbradney | 519 | der möglichen UNIT_*-Konstanten: |
1135 | cbradney | 520 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.</translation> |
521 | </message> |
||
522 | <message> |
||
7919 | mrdocs | 523 | <location filename="" line="7471221"/> |
1135 | cbradney | 524 | <source>loadStylesFromFile("filename") |
525 | |||
526 | Loads paragraph styles from the Scribus document at "filename" into the |
||
527 | current document. |
||
528 | </source> |
||
529 | <translation>loadStylesFromFile("filename") |
||
530 | |||
531 | Lädt die Absatzstile aus der Datei "filename" in das aktuelle Dokument.</translation> |
||
532 | </message> |
||
533 | <message> |
||
7919 | mrdocs | 534 | <location filename="" line="7471221"/> |
1135 | cbradney | 535 | <source>setDocType(facingPages, firstPageLeft) |
536 | |||
537 | Sets the document type. To get facing pages set the first parameter to |
||
538 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
539 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
540 | a right page use FIRSTPAGERIGHT. |
||
541 | </source> |
||
542 | <translation>setDocType(facingPages, firstPageLeft) |
||
543 | |||
544 | Setzt den Dokumenttyp. Gegenüberliegende Seiten erreichen Sie mit FACINGPAGES, normale |
||
545 | Seiten mit NOFACINGPAGES. Wenn die erste Seite links sein soll, schreiben Sie FIRSTPAGELEFT, |
||
546 | ansonsten FIRSTPAGERIGHT.</translation> |
||
547 | </message> |
||
548 | <message> |
||
7919 | mrdocs | 549 | <location filename="" line="7471221"/> |
1135 | cbradney | 550 | <source>getLineColor(["name"]) -> string |
551 | |||
552 | Returns the name of the line color of the object "name". |
||
553 | If "name" is not given the currently selected item is used. |
||
554 | </source> |
||
555 | <translation>getLineColor(["name"]) -> string |
||
556 | |||
557 | Gibt den Namen der Linienfarbe des Objekts "name" zurück. |
||
558 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
559 | </message> |
||
560 | <message> |
||
7919 | mrdocs | 561 | <location filename="" line="7471221"/> |
1135 | cbradney | 562 | <source>getLineWidth(["name"]) -> integer |
563 | |||
564 | Returns the line width of the object "name". If "name" |
||
565 | is not given the currently selected Item is used. |
||
566 | </source> |
||
567 | <translation>getLineWidth(["name"]) -> integer |
||
568 | |||
569 | Gibt die Linienbreite des Objekts "name" zurück. |
||
570 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
571 | </message> |
||
572 | <message> |
||
7919 | mrdocs | 573 | <location filename="" line="7471221"/> |
1135 | cbradney | 574 | <source>getLineShade(["name"]) -> integer |
575 | |||
576 | Returns the shading value of the line color of the object "name". |
||
577 | If "name" is not given the currently selected item is used. |
||
578 | </source> |
||
579 | <translation>getLineShade(["name"]) -> integer |
||
580 | |||
581 | Gibt den Tonwert des Objekts "name" zurück. |
||
582 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
583 | </message> |
||
584 | <message> |
||
7919 | mrdocs | 585 | <location filename="" line="7471221"/> |
1135 | cbradney | 586 | <source>getLineJoin(["name"]) -> integer (see contants) |
587 | |||
588 | Returns the line join style of the object "name". If "name" is not given |
||
589 | the currently selected item is used. The join types are: |
||
590 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
591 | </source> |
||
592 | <translation>getLineJoin(["name"]) -> integer (siehe Konstanten) |
||
593 | |||
594 | Gibt den Stil der Ecken des Objekts "name" zurück. Ist kein "name" angegeben, wird |
||
595 | das aktuelle Objekt benutzt. Die Linientypen sind JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND</translation> |
||
596 | </message> |
||
597 | <message> |
||
7919 | mrdocs | 598 | <location filename="" line="7471221"/> |
1135 | cbradney | 599 | <source>getLineEnd(["name"]) -> integer (see constants) |
600 | |||
601 | Returns the line cap style of the object "name". If "name" is not given the |
||
602 | currently selected item is used. The cap types are: |
||
603 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
604 | </source> |
||
605 | <translation>getLineEnd(["name"]) -> integer (siehe Konstanten) |
||
606 | |||
607 | Gibt den Stil der Linienrundungen des Objekts "name" an. Ist "name" nicht angegeben, wird das aktuelle Objekt benutzt. |
||
608 | Die unterstützten Stile sind CAP_FLAT, CAP_ROUND, CAP_SQUARE</translation> |
||
609 | </message> |
||
610 | <message> |
||
7919 | mrdocs | 611 | <location filename="" line="7471221"/> |
1135 | cbradney | 612 | <source>getLineStyle(["name"]) -> integer (see constants) |
613 | |||
614 | Returns the line style of the object "name". If "name" is not given the |
||
615 | currently selected item is used. Line style constants are: |
||
616 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
617 | </source> |
||
618 | <translation>getLineStyle(["name"]) -> integer (siehe Konstanten) |
||
619 | |||
620 | Gibt den Linienstil des Objekts "name" wieder. Ist "name" nicht angegeben, |
||
621 | wird das aktuelle Objekt benutzt. Linienstile sind LINE_DASH, LINE_DASHDOT, |
||
622 | LINE_DASHDOTDOT, LINE_SOLID</translation> |
||
623 | </message> |
||
624 | <message> |
||
7919 | mrdocs | 625 | <location filename="" line="7471221"/> |
1135 | cbradney | 626 | <source>getFillShade(["name"]) -> integer |
627 | |||
628 | Returns the shading value of the fill color of the object "name". |
||
629 | If "name" is not given the currently selected item is used. |
||
630 | </source> |
||
631 | <translation>getFillShade(["name"]) -> integer |
||
632 | |||
633 | Gibt den Tonwert der Füllfarbe von "name" zurück. Ist "name" nicht angegeben, wird |
||
634 | das aktuelle Objekt verwendet.</translation> |
||
635 | </message> |
||
636 | <message> |
||
7919 | mrdocs | 637 | <location filename="" line="7471221"/> |
1135 | cbradney | 638 | <source>getImageScale(["name"]) -> (x,y) |
639 | |||
640 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
641 | "name". If "name" is not given the currently selected item is used. |
||
642 | </source> |
||
643 | <translation>getImageScale(["name"]) -> (x,y)( |
||
644 | |||
645 | Gibt ein Zahlenpaar (x,y) zurück mit den Skalierungswerten des Bildes im Rahmen |
||
646 | "name". Ist "name" nicht angegeben, wird der aktuelle Rahmen verwendet.</translation> |
||
647 | </message> |
||
648 | <message> |
||
7919 | mrdocs | 649 | <location filename="" line="7471221"/> |
1135 | cbradney | 650 | <source>getImageName(["name"]) -> string |
651 | |||
652 | Returns the filename for the image in the image frame. If "name" is not |
||
653 | given the currently selected item is used. |
||
654 | </source> |
||
655 | <translation>getImageName(["name"]) -> string |
||
656 | |||
657 | Gibt den Dateinamen des Bildes im Rahmen "name" zurück. Ist "name" nicht |
||
658 | angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
659 | </message> |
||
660 | <message> |
||
7919 | mrdocs | 661 | <location filename="" line="7471221"/> |
1135 | cbradney | 662 | <source>getSize(["name"]) -> (width,height) |
663 | |||
664 | Returns a (width, height) tuple with the size of the object "name". |
||
665 | If "name" is not given the currently selected item is used. The size is |
||
666 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
667 | for reference. |
||
668 | </source> |
||
669 | <translation>getSize(["name"]) -> (Breite,Höhe) |
||
670 | |||
671 | Gibt das Zahlenpaar (Breite,Höhe) des Objekts "name" zurück. Ist "name" nicht |
||
672 | angegeben, wird das aktuelle Objekt verwendet. Die Größe wird in der Maßeinheit |
||
673 | des Dokuments angegeben - siehe die UNIT_*-Konstanten.</translation> |
||
674 | </message> |
||
675 | <message> |
||
7919 | mrdocs | 676 | <location filename="" line="7471221"/> |
1135 | cbradney | 677 | <source>getRotation(["name"]) -> integer |
678 | |||
679 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
680 | and clockwise is positive. If "name" is not given the currently selected item |
||
681 | is used. |
||
682 | </source> |
||
683 | <translation>getRotation(["name"]) -> integer |
||
684 | |||
685 | Gibt die Drehung des Objekts "name" in Grad zurück und im Uhrzeigersinn zurück. |
||
686 | Ist "name" nicht angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
687 | </message> |
||
688 | <message> |
||
7919 | mrdocs | 689 | <location filename="" line="7471221"/> |
1135 | cbradney | 690 | <source>getAllObjects() -> list |
691 | |||
692 | Returns a list containing the names of all objects on the current page. |
||
693 | </source> |
||
694 | <translation>getAllObjects() -> list |
||
695 | |||
696 | Gibt eine Liste zurück mit allen auf der aktuellen Seite verwendeten Objekte.</translation> |
||
697 | </message> |
||
698 | <message> |
||
7919 | mrdocs | 699 | <location filename="" line="7471221"/> |
1135 | cbradney | 700 | <source>moveObjectAbs(x, y [, "name"]) |
701 | |||
702 | Moves the object "name" to a new location. The coordinates are expressed in |
||
703 | the current measurement unit of the document (see UNIT constants). If "name" |
||
704 | is not given the currently selected item is used. If the object "name" |
||
705 | belongs to a group, the whole group is moved. |
||
706 | </source> |
||
707 | <translation>moveObjectAbs(x, y [, "name"]) |
||
708 | |||
709 | Bewegt das Objekt "name" an die neue Stelle. Die Koordinaten werden in der Maßeinheit |
||
710 | des Dokuments angegeben (siehe UNIT_*-Konstanten). Ist "name" nicht angegeben, wird das |
||
711 | aktuelle Objekt benutzt. Gehört "name" zu einer Gruppe, wird die Gruppe verschoben.</translation> |
||
712 | </message> |
||
713 | <message> |
||
7919 | mrdocs | 714 | <location filename="" line="7471221"/> |
1135 | cbradney | 715 | <source>rotateObject(rot [, "name"]) |
716 | |||
717 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
718 | rotated by the vertex that is currently selected as the rotation point - by |
||
719 | default, the top left vertext at zero rotation. Positive values mean counter |
||
720 | clockwise rotation when the default rotation point is used. If "name" is not |
||
721 | given the currently selected item is used. |
||
722 | </source> |
||
723 | <translation>rotateObject(rot [, "name"]) |
||
724 | |||
725 | Dreht das Objekt "name" relativ um "rot" Grad. Beim Drehen wird der Ursprung verwendet, |
||
726 | der gerade aktiv ist - normalerweise der Punkt links oben. Positive Werte für "rot" bedeuten |
||
727 | Drehung in Uhrzeigersinn, negative Werte Drehung gegen den Uhrzeigersinn. Ist "name" nicht |
||
728 | angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
729 | </message> |
||
730 | <message> |
||
7919 | mrdocs | 731 | <location filename="" line="7471221"/> |
1135 | cbradney | 732 | <source>sizeObject(width, height [, "name"]) |
733 | |||
734 | Resizes the object "name" to the given width and height. If "name" |
||
735 | is not given the currently selected item is used. |
||
736 | </source> |
||
737 | <translation>sizeObject(width, height [, "name"]) |
||
738 | |||
739 | Ändert die Größe von "name" auf die Breite width und die Höhe height. |
||
740 | ist "name" nicht angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
741 | </message> |
||
742 | <message> |
||
7919 | mrdocs | 743 | <location filename="" line="7471221"/> |
1135 | cbradney | 744 | <source>getSelectedObject([nr]) -> string |
745 | |||
746 | Returns the name of the selected object. "nr" if given indicates the number |
||
747 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
748 | second selected Object and so on. |
||
749 | </source> |
||
750 | <translation>getSelectedObject([nr]) -> string |
||
751 | |||
752 | Gibt den Namen des ausgewählten Objekts zurück. "nr" gibt die Zahl des gewählten |
||
753 | Objekts an. 0 bedeutet das erste ausgewählte Objekt, 1 das zweite usw.</translation> |
||
754 | </message> |
||
755 | <message> |
||
7919 | mrdocs | 756 | <location filename="" line="7471221"/> |
1135 | cbradney | 757 | <source>selectionCount() -> integer |
758 | |||
759 | Returns the number of selected objects. |
||
760 | </source> |
||
761 | <translation>selectionCount() -> integer |
||
762 | |||
763 | Gibt die Anzahl der ausgewählten Objekte zurück.</translation> |
||
764 | </message> |
||
765 | <message> |
||
7919 | mrdocs | 766 | <location filename="" line="7471221"/> |
1135 | cbradney | 767 | <source>selectObject("name") |
768 | |||
769 | Selects the object with the given "name". |
||
770 | </source> |
||
771 | <translation>selectObject("name") |
||
772 | |||
773 | Wählt das Objekt "name" aus.</translation> |
||
774 | </message> |
||
775 | <message> |
||
7919 | mrdocs | 776 | <location filename="" line="7471221"/> |
1135 | cbradney | 777 | <source>deselectAll() |
778 | |||
779 | Deselects all objects in the whole document. |
||
780 | </source> |
||
781 | <translation>deselectAll() |
||
782 | |||
783 | Setzt alle Objekte im Dokument auf nicht ausgewählt.</translation> |
||
784 | </message> |
||
785 | <message> |
||
7919 | mrdocs | 786 | <location filename="" line="7471221"/> |
1135 | cbradney | 787 | <source>groupObjects(list) |
788 | |||
789 | Groups the objects named in "list" together. "list" must contain the names |
||
790 | of the objects to be grouped. If "list" is not given the currently selected |
||
791 | items are used. |
||
792 | </source> |
||
793 | <translation>groupObjects(list) |
||
794 | |||
795 | Gruppiert die Elemente in "list". "list" muss die Namen der zu gruppierenden |
||
796 | Objekte enthalten. Ist "list" nicht angegeben, werden die aktuell gewählten |
||
797 | Objekte verwendet.</translation> |
||
798 | </message> |
||
799 | <message> |
||
7919 | mrdocs | 800 | <location filename="" line="7471221"/> |
1135 | cbradney | 801 | <source>unGroupObjects("name") |
802 | |||
803 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
804 | <translation>unGroupObjects("name") |
||
805 | |||
806 | Zerstört die Gruppe "name". Ist "name" nicht angegeben, wird die aktuelle Gruppe verwendet.</translation> |
||
807 | </message> |
||
808 | <message> |
||
7919 | mrdocs | 809 | <location filename="" line="7471221"/> |
1135 | cbradney | 810 | <source>scaleGroup(factor [,"name"]) |
811 | |||
812 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
813 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
814 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
815 | to 150 % of its original size. The value for "factor" must be greater than |
||
816 | 0. If "name" is not given the currently selected item is used. |
||
817 | |||
818 | May raise ValueError if an invalid scale factor is passed. |
||
819 | </source> |
||
820 | <translation>scaleGroup(factor [,"name"]) |
||
821 | |||
822 | Skaliert die Gruppe, zu dem das Objekt "name" gehört. Werte größer als 1 vergrößern das Objekt, |
||
823 | Werte kleiner als 1 verkleinert das Objekt. Zum Beispiel bedeutet 0.5 = 50 % oder 1.5=150% der |
||
824 | Originalgröße. "factor" muss größer als 0 sein. Ist "name" nicht angegeben, wird das aktuelle Objekt |
||
825 | benutzt.</translation> |
||
826 | </message> |
||
827 | <message> |
||
7919 | mrdocs | 828 | <location filename="" line="7471221"/> |
1135 | cbradney | 829 | <source>loadImage("filename" [, "name"]) |
830 | |||
831 | Loads the picture "picture" into the image frame "name". If "name" is |
||
832 | not given the currently selected item is used. |
||
833 | |||
834 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
835 | </source> |
||
836 | <translation>loadImage("filename" [, "name"]) |
||
837 | |||
838 | Lädt das Bild "picture" in den Bildrahmen "name". Ist "name" nicht angegeben, |
||
839 | wird der aktuelle Rahmen benutzt. |
||
840 | |||
841 | Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf</translation> |
||
842 | </message> |
||
843 | <message> |
||
7919 | mrdocs | 844 | <location filename="" line="7471221"/> |
1135 | cbradney | 845 | <source>scaleImage(x, y [, "name"]) |
846 | |||
847 | Sets the scaling factors of the picture in the image frame "name". |
||
848 | If "name" is not given the currently selected item is used. A number of 1 |
||
849 | means 100 %. |
||
850 | |||
851 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
852 | </source> |
||
853 | <translation>scaleImage(x, y [, "name"]) |
||
854 | |||
855 | Skaliert das Bild "name" auf die angegeben Werte. 1 bedeutet 100 %. Ist "name" |
||
856 | nicht angegeben, wird der aktuelle Bildrahmen verwendet. |
||
857 | |||
858 | Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf,</translation> |
||
859 | </message> |
||
860 | <message> |
||
7919 | mrdocs | 861 | <location filename="" line="7471221"/> |
1135 | cbradney | 862 | <source>lockObject(["name"]) -> bool |
863 | |||
864 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
865 | If "name" is not given the currently selected item is used. Returns true |
||
866 | if locked. |
||
867 | </source> |
||
868 | <translation>lockObject(["name"]) -> bool |
||
869 | |||
870 | Sperrt das Objekt "name", wenn es freigegeben ist und entsperrt es, wenn es |
||
871 | gesperrt ist. Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet. |
||
872 | Gibt True zurück, wenn das Objekt gesperrt ist.</translation> |
||
873 | </message> |
||
874 | <message> |
||
7919 | mrdocs | 875 | <location filename="" line="7471221"/> |
1135 | cbradney | 876 | <source>isLocked(["name"]) -> bool |
877 | |||
878 | Returns true if is the object "name" locked. If "name" is not given the |
||
879 | currently selected item is used. |
||
880 | </source> |
||
881 | <translation>isLocked(["name"]) -> bool |
||
882 | |||
883 | Gibt True zurück, wenn "name" gesperrt ist. Ist "name" nicht angegeben, wird das aktuelle |
||
884 | Objekt verwendet.</translation> |
||
885 | </message> |
||
886 | <message> |
||
7919 | mrdocs | 887 | <location filename="" line="7471221"/> |
1135 | cbradney | 888 | <source>getFontNames() -> list |
889 | |||
890 | Returns a list with the names of all available fonts. |
||
891 | </source> |
||
892 | <translation>getFontNames() -> list |
||
893 | |||
5003 | cbradney | 894 | Gibt eine Liste mit allen verfügbaren Schriften zurück.</translation> |
1135 | cbradney | 895 | </message> |
896 | <message> |
||
7919 | mrdocs | 897 | <location filename="" line="7471221"/> |
1135 | cbradney | 898 | <source>getXFontNames() -> list of tuples |
899 | |||
900 | Returns a larger font info. It's a list of the tuples with: |
||
901 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
902 | </source> |
||
903 | <translation>getXFontNames() -> list |
||
904 | |||
5102 | mrdocs | 905 | Gibt genaue Informationen zu einer Schrift zurück mit den Werten: |
1135 | cbradney | 906 | [ (Name in Scribus, Familie, wirklicher Name, Subset (1|0), embed PS (1|0), Fontdatei), (...), ... ]</translation> |
907 | </message> |
||
908 | <message> |
||
7919 | mrdocs | 909 | <location filename="" line="7471221"/> |
1135 | cbradney | 910 | <source>getLayers() -> list |
911 | |||
912 | Returns a list with the names of all defined layers. |
||
913 | </source> |
||
914 | <translation>getLayers() -> list |
||
915 | |||
916 | Gibt eine Liste mit allen Ebenen zurück.</translation> |
||
917 | </message> |
||
918 | <message> |
||
7919 | mrdocs | 919 | <location filename="" line="7471221"/> |
1135 | cbradney | 920 | <source>setActiveLayer("name") |
921 | |||
922 | Sets the active layer to the layer named "name". |
||
923 | |||
924 | May raise NotFoundError if the layer can't be found. |
||
925 | May raise ValueError if the layer name isn't acceptable. |
||
926 | </source> |
||
927 | <translation>setActiveLayer("name") |
||
928 | |||
929 | Macht die Ebene "name" zur aktiven Ebene. |
||
930 | |||
931 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
932 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
933 | </message> |
||
934 | <message> |
||
7919 | mrdocs | 935 | <location filename="" line="7471221"/> |
1135 | cbradney | 936 | <source>getActiveLayer() -> string |
937 | |||
938 | Returns the name of the current active layer. |
||
939 | </source> |
||
940 | <translation>getActiveLayer() -> string |
||
941 | |||
942 | Gibt die aktive Ebene zurück.</translation> |
||
943 | </message> |
||
944 | <message> |
||
7919 | mrdocs | 945 | <location filename="" line="7471221"/> |
1135 | cbradney | 946 | <source>sentToLayer("layer" [, "name"]) |
947 | |||
948 | Sends the object "name" to the layer "layer". The layer must exist. |
||
949 | If "name" is not given the currently selected item is used. |
||
950 | |||
951 | May raise NotFoundError if the layer can't be found. |
||
952 | May raise ValueError if the layer name isn't acceptable. |
||
953 | </source> |
||
954 | <translation>sentToLayer("layer" [, "name"]) |
||
955 | |||
956 | Verschiebt das Objekt "name" auf die Ebene "layer". Die Ebene muss |
||
957 | vorhanden sein. Ist "name" nicht angegeben, wird das aktive Objekt benutzt. |
||
958 | |||
959 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
960 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
961 | </message> |
||
962 | <message> |
||
7919 | mrdocs | 963 | <location filename="" line="7471221"/> |
1135 | cbradney | 964 | <source>setLayerVisible("layer", visible) |
965 | |||
966 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
967 | the layer is invisible. |
||
968 | |||
969 | May raise NotFoundError if the layer can't be found. |
||
970 | May raise ValueError if the layer name isn't acceptable. |
||
971 | </source> |
||
972 | <translation>setLayerVisible("layer", visible) |
||
973 | |||
974 | Zeigt die Ebene "layer" an oder versteckt sie. Ist "visible" auf False gesetzt, |
||
975 | ist die Ebene unsichtbar. |
||
976 | |||
977 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
978 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
979 | </message> |
||
980 | <message> |
||
7919 | mrdocs | 981 | <location filename="" line="7471221"/> |
1135 | cbradney | 982 | <source>deleteLayer("layer") |
983 | |||
984 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
985 | exists or if it's the only layer in the document. |
||
986 | |||
987 | May raise NotFoundError if the layer can't be found. |
||
988 | May raise ValueError if the layer name isn't acceptable. |
||
989 | </source> |
||
990 | <translation>deleteLayer("layer") |
||
991 | |||
992 | Löscht die Ebene "layer". Ist die Ebene nicht vorhanden oder ist nur eine |
||
993 | Ebene vorhanden, passiert gar nichts. |
||
994 | |||
995 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf, |
||
996 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
997 | </message> |
||
998 | <message> |
||
7919 | mrdocs | 999 | <location filename="" line="7471221"/> |
1135 | cbradney | 1000 | <source>createLayer(layer) |
1001 | |||
1002 | Creates a new layer with the name "name". |
||
1003 | |||
1004 | May raise ValueError if the layer name isn't acceptable. |
||
1005 | </source> |
||
1006 | <translation>createLayer(layer) |
||
1007 | |||
1008 | Erzeugt einen Ebene mit dem Namen "layer". |
||
1009 | |||
1010 | Ist der Name ungültig, tritt der Fehler ValueError auf.</translation> |
||
1011 | </message> |
||
1012 | <message> |
||
7919 | mrdocs | 1013 | <location filename="" line="7471221"/> |
1135 | cbradney | 1014 | <source>getGuiLanguage() -> string |
1015 | |||
1016 | Returns a string with the -lang value. |
||
1017 | </source> |
||
1018 | <translation>getGuiLanguage() -> string |
||
1019 | |||
1020 | Gibt den Wert der Variable -lang zurück.</translation> |
||
1021 | </message> |
||
1022 | <message> |
||
7919 | mrdocs | 1023 | <location filename="" line="7471221"/> |
1135 | cbradney | 1024 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
1025 | |||
1026 | Creates a new ellipse on the current page and returns its name. |
||
1027 | The coordinates are given in the current measurement units of the document |
||
1028 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1029 | because you need this name for further referencing of that object. If "name" |
||
1030 | is not given Scribus will create one for you. |
||
1031 | |||
1032 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1033 | </source> |
||
1034 | <translation>createEllipse(x, y, width, height, ["name"]) -> string |
||
1035 | |||
1036 | Erzeugt eine Ellipse auf der aktuellen Seite und gibt ihren Namen zurück. Die Koordinaten |
||
1037 | werden in der Maßeinheit des Dokuments angegeben (siehe UNIT-Konstanten). "name" sollte |
||
1038 | das Objekt eindeutig identifizieren, weil Sie den Namen für spätere Zwecke brauchen. Ist "name" |
||
1039 | nicht angegeben, erzeugt Scribus einen Namen für das Objekt. |
||
1040 | |||
1041 | Ist der Name schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
1042 | </message> |
||
1043 | <message> |
||
7919 | mrdocs | 1044 | <location filename="" line="7471221"/> |
1135 | cbradney | 1045 | <source>createImage(x, y, width, height, ["name"]) -> string |
1046 | |||
1047 | Creates a new picture frame on the current page and returns its name. The |
||
1048 | coordinates are given in the current measurement units of the document. |
||
1049 | "name" should be a unique identifier for the object because you need this |
||
1050 | name for further access to that object. If "name" is not given Scribus will |
||
1051 | create one for you. |
||
1052 | |||
1053 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1054 | </source> |
||
1055 | <translation>createImage(x, y, width, height, ["name"]) -> string |
||
1056 | |||
1057 | Erzeugt einen Bildrahmen auf der aktuellen Seite und gibt seinen Namen zurück. |
||
1058 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1059 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1060 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1061 | einen Namen für das Objekt fest. |
||
1062 | |||
1063 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
1064 | </message> |
||
1065 | <message> |
||
7919 | mrdocs | 1066 | <location filename="" line="7471221"/> |
1135 | cbradney | 1067 | <source>createText(x, y, width, height, ["name"]) -> string |
1068 | |||
1069 | Creates a new text frame on the actual page and returns its name. |
||
1070 | The coordinates are given in the actual measurement unit of the document (see |
||
1071 | UNIT constants). "name" should be a unique identifier for the object because |
||
1072 | you need this name for further referencing of that object. If "name" is not |
||
1073 | given Scribus will create one for you. |
||
1074 | |||
1075 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1076 | </source> |
||
1077 | <translation>createText(x, y, width, height, ["name"]) -> string |
||
1078 | |||
1079 | Erzeugt einen neuen Textrahmen auf der aktuellen Seite und gibt seinen Namen zurück. |
||
1080 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1081 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1082 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1083 | einen Namen für das Objekt fest. |
||
1084 | |||
1085 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
1086 | </message> |
||
1087 | <message> |
||
7919 | mrdocs | 1088 | <location filename="" line="7471221"/> |
1135 | cbradney | 1089 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
1090 | |||
1091 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1092 | its name. The coordinates are given in the current measurement unit of the |
||
1093 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1094 | object because you need this name for further access to that object. If |
||
1095 | "name" is not given Scribus will create one for you. |
||
1096 | |||
1097 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1098 | </source> |
||
1099 | <translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
1100 | |||
1101 | Erzeugt eine Linie von P(x1,y1) zu P(x2,y2) und gibt ihren Namen zurück. |
||
1102 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1103 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1104 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1105 | einen Namen für das Objekt fest. |
||
1106 | |||
1107 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
1108 | </message> |
||
1109 | <message> |
||
7919 | mrdocs | 1110 | <location filename="" line="7471221"/> |
1135 | cbradney | 1111 | <source>createPolyLine(list, ["name"]) -> string |
1112 | |||
1113 | Creates a new polyline and returns its name. The points for the polyline are |
||
1114 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1115 | The coordinates are given in the current measurement units of the document (see |
||
1116 | UNIT constants). "name" should be a unique identifier for the object because |
||
1117 | you need this name for further access to that object. If "name" is not given |
||
1118 | Scribus will create one for you. |
||
1119 | |||
1120 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1121 | May raise ValueError if an insufficient number of points is passed or if |
||
1122 | the number of values passed don't group into points without leftovers. |
||
1123 | </source> |
||
1124 | <translation>createPolyLine(list, ["name"]) -> string |
||
1125 | |||
1126 | Erzeugt eine Mehrfachlinie und und gibt ihren Namen zurück. Die Punkte werden in |
||
1127 | der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn]. |
||
1128 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1129 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1130 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1131 | einen Namen für das Objekt fest. |
||
1132 | |||
1133 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1134 | Ist die Anzahl der Punkte nicht genügend, tritt der Fehler ValueError auf.</translation> |
||
1135 | </message> |
||
1136 | <message> |
||
7919 | mrdocs | 1137 | <location filename="" line="7471221"/> |
1135 | cbradney | 1138 | <source>createPolygon(list, ["name"]) -> string |
1139 | |||
1140 | Creates a new polygon and returns its name. The points for the polygon are |
||
1141 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1142 | At least three points are required. There is no need to repeat the first point |
||
1143 | to close the polygon. The polygon is automatically closed by connecting the |
||
1144 | first and the last point. The coordinates are given in the current measurement |
||
1145 | units of the document (see UNIT constants). "name" should be a unique |
||
1146 | identifier for the object because you need this name for further access to that |
||
1147 | object. If "name" is not given Scribus will create one for you. |
||
1148 | |||
1149 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1150 | May raise ValueError if an insufficient number of points is passed or if |
||
1151 | the number of values passed don't group into points without leftovers. |
||
1152 | </source> |
||
1153 | <translation>createPolygon(list, ["name"]) -> string |
||
1154 | |||
1155 | Erzeugt ein Vieleck und gibt seinen Namen zurück. Die Punkte werden in |
||
1156 | der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn]. Sie müssen |
||
1157 | mindestens 3 Punkte angeben, aber Sie müssen den ersten Punkt nicht zum |
||
1158 | Schließen des Polygons erneut angeben - das geschieht automatisch. |
||
1159 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1160 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1161 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1162 | einen Namen für das Objekt fest. |
||
1163 | |||
1164 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1165 | Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation> |
||
1166 | </message> |
||
1167 | <message> |
||
7919 | mrdocs | 1168 | <location filename="" line="7471221"/> |
1135 | cbradney | 1169 | <source>createBezierLine(list, ["name"]) -> string |
1170 | |||
1171 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1172 | curve are stored in the list "list" in the following order: |
||
1173 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1174 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1175 | and ky meaning the control point for the curve. The coordinates are given in |
||
1176 | the current measurement units of the document (see UNIT constants). "name" |
||
1177 | should be a unique identifier for the object because you need this name for |
||
1178 | further access to that object. If "name" is not given Scribus will create one |
||
1179 | for you. |
||
1180 | |||
1181 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1182 | May raise ValueError if an insufficient number of points is passed or if |
||
1183 | the number of values passed don't group into points without leftovers. |
||
1184 | </source> |
||
1185 | <translation>createBezierLine(list, ["name"]) -> string |
||
1186 | |||
3426 | cbradney | 1187 | Erzeugt eine Bézierkurve und gibt ihren Namen zurück. Die Punkte werden in |
1135 | cbradney | 1188 | der folgenden Reihenfolge gespeichert: |
1189 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]. |
||
1190 | x und y steht dabei für die X- und Y-Koordinaten und kx und ky steht für den |
||
1191 | Kontrollpunkt der Kurve. |
||
1192 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1193 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1194 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1195 | einen Namen für das Objekt fest. |
||
1196 | |||
1197 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1198 | Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation> |
||
1199 | </message> |
||
1200 | <message> |
||
7919 | mrdocs | 1201 | <location filename="" line="7471221"/> |
1135 | cbradney | 1202 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
1203 | |||
1204 | Creates a new pathText by merging the two objects "textbox" and |
||
1205 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1206 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1207 | unique identifier for the object because you need this name for further access |
||
1208 | to that object. If "name" is not given Scribus will create one for you. |
||
1209 | |||
1210 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1211 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1212 | </source> |
||
1213 | <translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
1214 | |||
1215 | Erzeugt Text auf einem Pfad, indem die Objekte "textbox" und "beziercurve" |
||
1216 | zusammengefügt werden. |
||
1217 | Die Koordinaten werden in der Maßeinheit des Dokuments angegeben (siehe |
||
1218 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1219 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1220 | einen Namen für das Objekt fest. |
||
1221 | |||
1222 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1223 | Sind ein oder beide Objekte nicht vorhanden, tritt der Fehler NotFoundError auf.</translation> |
||
1224 | </message> |
||
1225 | <message> |
||
7919 | mrdocs | 1226 | <location filename="" line="7471221"/> |
1135 | cbradney | 1227 | <source>deleteObject(["name"]) |
1228 | |||
1229 | Deletes the item with the name "name". If "name" is not given the currently |
||
1230 | selected item is deleted. |
||
1231 | </source> |
||
1232 | <translation>deleteObject(["name"]) |
||
1233 | |||
1234 | Löscht das Objekt "name". Ist "name" nicht angegeben, wird das aktuelle |
||
1235 | Objekt gelöscht.</translation> |
||
1236 | </message> |
||
1237 | <message> |
||
7919 | mrdocs | 1238 | <location filename="" line="7471221"/> |
1135 | cbradney | 1239 | <source>objectExists(["name"]) -> bool |
1240 | |||
1241 | Test if an object with specified name really exists in the document. |
||
1242 | The optional parameter is the object name. When no object name is given, |
||
1243 | returns True if there is something selected. |
||
1244 | </source> |
||
1245 | <translation>objectExists(["name"]) -> bool |
||
1246 | |||
1247 | Gibt an, ob das Objekt mit dem Name "name" auch wirklich im aktuellen Dokument |
||
1248 | existiert. "name" ist optional, ist "name" nicht angegeben, wird True ausgegeben, wenn |
||
1249 | gerade ein Objekt selektiert ist.</translation> |
||
1250 | </message> |
||
1251 | <message> |
||
7919 | mrdocs | 1252 | <location filename="" line="7471221"/> |
1135 | cbradney | 1253 | <source>setStyle("style" [, "name"]) |
1254 | |||
1255 | Apply the named "style" to the object named "name". If is no object name |
||
1256 | given, it's applied on the selected object. |
||
1257 | </source> |
||
1258 | <translation>setStyle("style" [, "name"]) |
||
1259 | |||
1260 | Setzt den Absatzstil "style" für das Objekt "name". Ist kein Objekt angegeben, |
||
1261 | wird der Stil auf das aktuelle Objekt angewendet.</translation> |
||
1262 | </message> |
||
1263 | <message> |
||
7919 | mrdocs | 1264 | <location filename="" line="7471221"/> |
1135 | cbradney | 1265 | <source>getAllStyles() -> list |
1266 | |||
1267 | Return a list of the names of all paragraph styles in the current document. |
||
1268 | </source> |
||
1269 | <translation>getAllStyles() -> list |
||
1270 | |||
1271 | Gibt eine Listen mit allen Absatzstilen im aktuellen Dokument zurück.</translation> |
||
1272 | </message> |
||
1273 | <message> |
||
7919 | mrdocs | 1274 | <location filename="" line="7471221"/> |
1135 | cbradney | 1275 | <source>currentPage() -> integer |
1276 | |||
1277 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1278 | upwards, no matter what the displayed first page number of your document is. |
||
1279 | </source> |
||
1280 | <translation>currentPage() -> integer |
||
1281 | |||
1282 | Gibt die Nummer der aktuellen Seite zurück. Seitenzahlen werden ab 1 gezählt, egal welche |
||
1283 | Seitenzahl auf der aktuellen Seite angezeigt wird.</translation> |
||
1284 | </message> |
||
1285 | <message> |
||
7919 | mrdocs | 1286 | <location filename="" line="7471221"/> |
1135 | cbradney | 1287 | <source>redrawAll() |
1288 | |||
1289 | Redraws all pages. |
||
1290 | </source> |
||
1291 | <translation>redrawAll() |
||
1292 | |||
1293 | Baut alle Seiten neu auf.</translation> |
||
1294 | </message> |
||
1295 | <message> |
||
7919 | mrdocs | 1296 | <location filename="" line="7471221"/> |
1135 | cbradney | 1297 | <source>savePageAsEPS("name") |
1298 | |||
1299 | Saves the current page as an EPS to the file "name". |
||
1300 | |||
1301 | May raise ScribusError if the save failed. |
||
1302 | </source> |
||
1303 | <translation>savePageAsEPS("name") |
||
1304 | |||
1305 | Speichert die aktuelle Seite als EPS-Datei mit dem Namen "name". |
||
1306 | |||
1307 | Schlägt das Speichern fehl, tritt der Fehler ScribusError auf.</translation> |
||
1308 | </message> |
||
1309 | <message> |
||
7919 | mrdocs | 1310 | <location filename="" line="7471221"/> |
1135 | cbradney | 1311 | <source>deletePage(nr) |
1312 | |||
1313 | Deletes the given page. Does nothing if the document contains only one page. |
||
1314 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1315 | page number is. |
||
1316 | |||
1317 | May raise IndexError if the page number is out of range |
||
1318 | </source> |
||
1319 | <translation>deletePage(nr) |
||
1320 | |||
1321 | Löscht die Seite mit der Nummer "nr". Besteht das Dokument nur aus einer Seite, passiert nichts. |
||
1322 | Seitenzahlen werden von 1 aufwärts gezählt, egal, welche Seitenzahl Sie auf der aktuellen Seite |
||
1323 | im Dokument sehen. |
||
1324 | |||
1325 | Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf</translation> |
||
1326 | </message> |
||
1327 | <message> |
||
7919 | mrdocs | 1328 | <location filename="" line="7471221"/> |
1135 | cbradney | 1329 | <source>gotoPage(nr) |
1330 | |||
1331 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1332 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
||
1333 | just sets the page that script commands will operates on. |
||
1334 | |||
1335 | May raise IndexError if the page number is out of range. |
||
1336 | </source> |
||
1337 | <translation>gotoPage(nr) |
||
1338 | |||
1339 | Geht zur Seite "nr", das heißt, die Seite "nr" wird zur aktuellen Seite. Zur Zeit ändert |
||
1340 | sich allerdings nicht die Seite, die der User sieht, es wird nur intern die aktuelle |
||
1341 | Seite geändert. |
||
1342 | |||
1343 | Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf.</translation> |
||
1344 | </message> |
||
1345 | <message> |
||
7919 | mrdocs | 1346 | <location filename="" line="7471221"/> |
1135 | cbradney | 1347 | <source>pageCount() -> integer |
1348 | |||
1349 | Returns the number of pages in the document. |
||
1350 | </source> |
||
1351 | <translation>pageCount() -> integer |
||
1352 | |||
1353 | Gibt die Anzahl der Seiten im Dokument zurück.</translation> |
||
1354 | </message> |
||
1355 | <message> |
||
7919 | mrdocs | 1356 | <location filename="" line="7471221"/> |
1135 | cbradney | 1357 | <source>getHGuides() -> list |
1358 | |||
1359 | Returns a list containing positions of the horizontal guides. Values are in the |
||
1360 | document's current units - see UNIT_<type> constants. |
||
1361 | </source> |
||
1362 | <translation>getHGuides() -> list |
||
1363 | |||
1364 | Gibt eine Liste zurück, die die Position der horizontalen Hilfslinien enthält. Die Werte |
||
1365 | werden in der Maßeinheit des Dokuments angegeben, siehe UNIT-Konstanten.</translation> |
||
1366 | </message> |
||
1367 | <message> |
||
7919 | mrdocs | 1368 | <location filename="" line="7471221"/> |
1135 | cbradney | 1369 | <source>setHGuides(list) |
1370 | |||
1371 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
1372 | measured in the current document units - see UNIT_<type> constants. |
||
1373 | |||
1374 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1375 | setHGuides([90,250]) # replace current guides entirely |
||
1376 | </source> |
||
1377 | <translation>setHGuides(list) |
||
1378 | |||
1379 | Legt horizontale Hilfslinien fest, list muss eine Liste der Linien sein, angegeben in der Maßeinheit |
||
1380 | des Dokuments, siehe UNIT-Konstanten. |
||
1381 | |||
1382 | Beispiel: |
||
1383 | setHGuides(getHGuides() + [200.0, 210.0] # fügt eine neue Hilfslinie hinzu |
||
1384 | </translation> |
||
1385 | </message> |
||
1386 | <message> |
||
7919 | mrdocs | 1387 | <location filename="" line="7471221"/> |
1135 | cbradney | 1388 | <source>getVGuides() |
1389 | |||
1390 | See getHGuides. |
||
1391 | </source> |
||
1392 | <translation>getVGuides() |
||
1393 | |||
1394 | Siehe getHGuides.</translation> |
||
1395 | </message> |
||
1396 | <message> |
||
7919 | mrdocs | 1397 | <location filename="" line="7471221"/> |
1135 | cbradney | 1398 | <source>setVGuides() |
1399 | |||
1400 | See setHGuides. |
||
1401 | </source> |
||
1402 | <translation>setVGuides() |
||
1403 | |||
1404 | Siehe setHGuides.</translation> |
||
1405 | </message> |
||
1406 | <message> |
||
7919 | mrdocs | 1407 | <location filename="" line="7471221"/> |
1135 | cbradney | 1408 | <source>getPageSize() -> tuple |
1409 | |||
1410 | Returns a tuple with page dimensions measured in the document's current units. |
||
1411 | See UNIT_<type> constants and getPageMargins() |
||
1412 | </source> |
||
1413 | <translation>getPageSize() -> tuple |
||
1414 | |||
1415 | Gibt eine Liste mit der Seitengröße in der aktuellen Maßeinheit zurück, siehe |
||
1416 | UNIT-Konstanten und getPageMargins()</translation> |
||
1417 | </message> |
||
1418 | <message> |
||
7919 | mrdocs | 1419 | <location filename="" line="7471221"/> |
1135 | cbradney | 1420 | <source>getPageItems() -> list |
1421 | |||
1422 | Returns a list of tuples with items on the current page. The tuple is: |
||
1423 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1424 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
1425 | the page... |
||
1426 | </source> |
||
1427 | <translation>getPageItems() -> list |
||
1428 | |||
1429 | Gibt eine Liste zurück mit den Objekten auf der aktuelle Seite. Die Reihenfolge |
||
1430 | der Werte ist: (Name, Typ des Objekts, Anordnung). |
||
1431 | |||
1432 | Beispiel: [('Text1', 4, 0), ('Image1', 2, 1)] bedeutet, dass das Objekt Text1 heißt, |
||
1433 | ein Textrahmen ist (type 4) und sich auf der ersten Seite befindet...</translation> |
||
1434 | </message> |
||
1435 | <message> |
||
7919 | mrdocs | 1436 | <location filename="" line="7471221"/> |
1135 | cbradney | 1437 | <source>setFillColor("color", ["name"]) |
1438 | |||
1439 | Sets the fill color of the object "name" to the color "color". "color" |
||
1440 | is the name of one of the defined colors. If "name" is not given the |
||
1441 | currently selected item is used. |
||
1442 | </source> |
||
1443 | <translation>setFillColor("color", ["name"]) |
||
1444 | |||
1445 | Setzt die Füllfarbe "color" für das Objekt "name". "color" ist der Name einer |
||
1446 | vorhandenen Farbe. Ist "name" nicht angegeben, wird das aktuelle Objekt |
||
1447 | verwendet.</translation> |
||
1448 | </message> |
||
1449 | <message> |
||
7919 | mrdocs | 1450 | <location filename="" line="7471221"/> |
1135 | cbradney | 1451 | <source>setLineColor("color", ["name"]) |
1452 | |||
1453 | Sets the line color of the object "name" to the color "color". If "name" |
||
1454 | is not given the currently selected item is used. |
||
1455 | </source> |
||
1456 | <translation>setLineColor("color", ["name"]) |
||
1457 | |||
1458 | Setzt die Linienfarbe "color" für das Objekt "name". Ist "name" nicht angegeben, |
||
1459 | wird das aktuelle Objekt verwendet.</translation> |
||
1460 | </message> |
||
1461 | <message> |
||
7919 | mrdocs | 1462 | <location filename="" line="7471221"/> |
1135 | cbradney | 1463 | <source>setLineWidth(width, ["name"]) |
1464 | |||
1465 | Sets line width of the object "name" to "width". "width" must be in the |
||
1466 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1467 | given the currently selected item is used. |
||
1468 | |||
1469 | May raise ValueError if the line width is out of bounds. |
||
1470 | </source> |
||
1471 | <translation>setLineWidth(width, ["name"]) |
||
1472 | |||
1473 | Setzt die Linienbreite für das Objekt "name" auf "width". "width" muss zwischen |
||
1474 | 0.0 und 12.0 groß sein und wird in Punkt angegeben. Ist "name" nicht angegeben, |
||
1475 | wird das aktuelle Objekt verwendet. |
||
1476 | |||
1477 | Ist die Linienbreite ungültig, tritt der Fehler ValueError auf.</translation> |
||
1478 | </message> |
||
1479 | <message> |
||
7919 | mrdocs | 1480 | <location filename="" line="7471221"/> |
1135 | cbradney | 1481 | <source>setLineShade(shade, ["name"]) |
1482 | |||
1483 | Sets the shading of the line color of the object "name" to "shade". |
||
1484 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1485 | (full color intensity). If "name" is not given the currently selected item |
||
1486 | is used. |
||
1487 | |||
1488 | May raise ValueError if the line shade is out of bounds. |
||
1489 | </source> |
||
1490 | <translation>setLineShade(shade, ["name"]) |
||
1491 | |||
1492 | Setzt den Tonwert der Linie des Objekts "name" auf "shade". "shade" ist eine |
||
1493 | ganze Zahl zwischen 0 und 100. Ist "name" nicht angegeben, wird das aktuelle |
||
1494 | Objekt verwendet. |
||
1495 | |||
1496 | Ist der Tonwert ungültig, tritt der Fehler ValueError auf.</translation> |
||
1497 | </message> |
||
1498 | <message> |
||
7919 | mrdocs | 1499 | <location filename="" line="7471221"/> |
1135 | cbradney | 1500 | <source>setLineJoin(join, ["name"]) |
1501 | |||
1502 | Sets the line join style of the object "name" to the style "join". |
||
1503 | If "name" is not given the currently selected item is used. There are |
||
1504 | predefined constants for join - JOIN_<type>. |
||
1505 | </source> |
||
1506 | <translation>setLineJoin(join, ["name"]) |
||
1507 | |||
1508 | Setzt die Ecken der Linien des Objekts "name" auf den Stil join. |
||
1509 | Ist "name" nicht angegeben, wird das aktuelle Obekt verwendet. |
||
1510 | Benutzen Sie die vorgegeben Konstaten des Typs JOIN_*.</translation> |
||
1511 | </message> |
||
1512 | <message> |
||
7919 | mrdocs | 1513 | <location filename="" line="7471221"/> |
1135 | cbradney | 1514 | <source>setLineEnd(endtype, ["name"]) |
1515 | |||
1516 | Sets the line cap style of the object "name" to the style "cap". |
||
1517 | If "name" is not given the currently selected item is used. There are |
||
1518 | predefined constants for "cap" - CAP_<type>. |
||
1519 | </source> |
||
1520 | <translation>SetLineEnd(endtype, ["name"]) |
||
1521 | |||
1522 | Setzt die Linienenden des Objekts "name" auf den Stil "endtype". |
||
1523 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet. |
||
1524 | Benutzen Sie die vorgegebenen Konstanten des Typs CAP_*.</translation> |
||
1525 | </message> |
||
1526 | <message> |
||
7919 | mrdocs | 1527 | <location filename="" line="7471221"/> |
1135 | cbradney | 1528 | <source>setLineStyle(style, ["name"]) |
1529 | |||
1530 | Sets the line style of the object "name" to the style "style". If "name" |
||
1531 | is not given the currently selected item is used. There are predefined |
||
1532 | constants for "style" - LINE_<style>. |
||
1533 | </source> |
||
1534 | <translation>setLineStyle(style, ["name"]) |
||
1535 | |||
1536 | Setzt den Linienstil des Objekts "name" auf den Stil "style". Ist "name" nicht |
||
1537 | angegeben, wird das aktuelle Objekt verwendet. Benutzen Sie die |
||
1538 | vorgegebenen Konstanten des Typs LINE_*.</translation> |
||
1539 | </message> |
||
1540 | <message> |
||
7919 | mrdocs | 1541 | <location filename="" line="7471221"/> |
1135 | cbradney | 1542 | <source>setFillShade(shade, ["name"]) |
1543 | |||
1544 | Sets the shading of the fill color of the object "name" to "shade". |
||
1545 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1546 | (full Color intensity). If "name" is not given the currently selected |
||
1547 | Item is used. |
||
1548 | |||
1549 | May raise ValueError if the fill shade is out of bounds. |
||
1550 | </source> |
||
1551 | <translation>setFillShade(shade, ["name"]) |
||
1552 | |||
1553 | Setzt den Tonwert der Füllfarbe für das Objekt "name" auf "shade". |
||
1554 | "shade" muss eine ganze Zahl zwischen 0 und 100 sein. Ist "name" |
||
1555 | nicht angegeben, wird das aktuelle Objekt benutzt. |
||
1556 | |||
1557 | Ist der Tonwert ungültig, tritt der Fehler ValueError auf.</translation> |
||
1558 | </message> |
||
1559 | <message> |
||
7919 | mrdocs | 1560 | <location filename="" line="7471221"/> |
1135 | cbradney | 1561 | <source>setCornerRadius(radius, ["name"]) |
1562 | |||
1563 | Sets the corner radius of the object "name". The radius is expressed |
||
1564 | in points. If "name" is not given the currently selected item is used. |
||
1565 | |||
1566 | May raise ValueError if the corner radius is negative. |
||
1567 | </source> |
||
1568 | <translation>setCornerRadius(radius, ["name"]) |
||
1569 | |||
1570 | Setzt den Eckradius für das Objekt "name" auf radius. Der Radius wird |
||
1571 | in Punkt angegeben. Ist "name" nicht angegeben, wird das aktuelle |
||
1572 | Objekt verwendet. |
||
1573 | |||
1574 | Ist der Eckradius negativ, tritt der Fehler ValueError auf.</translation> |
||
1575 | </message> |
||
1576 | <message> |
||
7919 | mrdocs | 1577 | <location filename="" line="7471221"/> |
1135 | cbradney | 1578 | <source>setMultiLine("namedStyle", ["name"]) |
1579 | |||
1580 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1581 | If "name" is not given the currently selected item is used. |
||
1582 | |||
1583 | May raise NotFoundError if the line style doesn't exist. |
||
1584 | </source> |
||
1585 | <translation>setMultiLine("namedStyle", ["name"]) |
||
1586 | |||
1587 | Setzt den Linienstil für das Objekt "name" auf den angegebenen Stil. |
||
1588 | Ist "name" nicht angegeben, wird der aktuelle Stil benutzt. |
||
1589 | |||
1590 | Ist der Stil nicht vorhanden, tritt der Fehler NotFoundError auf.</translation> |
||
1591 | </message> |
||
1592 | <message> |
||
7919 | mrdocs | 1593 | <location filename="" line="7471221"/> |
1135 | cbradney | 1594 | <source>getFont(["name"]) -> string |
1595 | |||
1596 | Returns the font name for the text frame "name". If this text frame |
||
1597 | has some text selected the value assigned to the first character |
||
1598 | of the selection is returned. If "name" is not given the currently |
||
1599 | selected item is used. |
||
1600 | </source> |
||
1601 | <translation>getFont(["name"]) -> string |
||
1602 | |||
5102 | mrdocs | 1603 | Gibt den Namen der Schrift für den Textrahmen "name" zurück. Ist in |
1604 | dem Textfeld Text ausgewählt, wird die Schrift des ersten gewählten |
||
1135 | cbradney | 1605 | Zeichens angegeben. Ist "name" nicht angegeben, wird das aktuelle Objekt |
1606 | verwendet.</translation> |
||
1607 | </message> |
||
1608 | <message> |
||
7919 | mrdocs | 1609 | <location filename="" line="7471221"/> |
1135 | cbradney | 1610 | <source>getTextLength(["name"]) -> integer |
1611 | |||
1612 | Returns the length of the text in the text frame "name". |
||
1613 | If "name" is not given the currently selected item is used. |
||
1614 | </source> |
||
1615 | <translation>getTextLength(["name"]) -> integer |
||
1616 | |||
1617 | Gibt die Länge des Textes im Textrahmen "name" zurück. |
||
1618 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1619 | </message> |
||
1620 | <message> |
||
7919 | mrdocs | 1621 | <location filename="" line="7471221"/> |
1135 | cbradney | 1622 | <source>getText(["name"]) -> string |
1623 | |||
1624 | Returns the text of the text frame "name". If this text frame has some text |
||
1625 | selected, the selected text is returned. All text in the frame, not just |
||
1626 | currently visible text, is returned. If "name" is not given the currently |
||
1627 | selected item is used. |
||
1628 | </source> |
||
1629 | <translation>getText(["name"]) -> string |
||
1630 | |||
1631 | Gibt den Text aus dem Textrahmen "name" zurück. Ist in dem Textfeld Text markiert, |
||
1632 | wird der selektierte Text zurückgegeben. Der gesamte Text wird zurückgegeben, nicht |
||
1633 | nur der sichtbare Teil des Textes, Ist "name" nicht angegeben, wird das aktuelle |
||
1634 | Objekt verwendet.</translation> |
||
1635 | </message> |
||
1636 | <message> |
||
7919 | mrdocs | 1637 | <location filename="" line="7471221"/> |
1135 | cbradney | 1638 | <source>getAllText(["name"]) -> string |
1639 | |||
1640 | Returns the text of the text frame "name" and of all text frames which are |
||
1641 | linked with this frame. If this textframe has some text selected, the selected |
||
1642 | text is returned. If "name" is not given the currently selected item is |
||
1643 | used. |
||
1644 | </source> |
||
1645 | <translation>getAllText(["name"]) -> string |
||
1646 | |||
1647 | Gibt den Text aus dem Textrahmen "name" zurück und aus allen Rahmen, die mit |
||
1648 | dem Rahmen "name" verbunden sind. Ist in dem Textfeld Text markiert, |
||
1649 | wird der selektierte Text zurückgegeben. Ist "name" nicht angegeben, wird das aktuelle |
||
1650 | Objekt verwendet.</translation> |
||
1651 | </message> |
||
1652 | <message> |
||
7919 | mrdocs | 1653 | <location filename="" line="7471221"/> |
1135 | cbradney | 1654 | <source>getLineSpacing(["name"]) -> float |
1655 | |||
1656 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1657 | points. If "name" is not given the currently selected item is used. |
||
1658 | </source> |
||
1659 | <translation>getLineSpacing(["name"]) -> float |
||
1660 | |||
1661 | Gibt den Zeilenabstand für den Textrahmen "name" in Punkten zurück. |
||
1662 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1663 | </message> |
||
1664 | <message> |
||
7919 | mrdocs | 1665 | <location filename="" line="7471221"/> |
1135 | cbradney | 1666 | <source>getColumnGap(["name"]) -> float |
1667 | |||
1668 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1669 | "name" is not given the currently selected item is used. |
||
1670 | </source> |
||
1671 | <translation>getColumnGap(["name"]) -> float |
||
1672 | |||
1673 | Gibt den Zeilenabstand für den Text im Rahmen "name" in Punkten zurück. Ist |
||
1674 | "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1675 | </message> |
||
1676 | <message> |
||
7919 | mrdocs | 1677 | <location filename="" line="7471221"/> |
1135 | cbradney | 1678 | <source>getColumns(["name"]) -> integer |
1679 | |||
1680 | Gets the number of columns of the text frame "name". If "name" is not |
||
1681 | given the currently selected item is used. |
||
1682 | </source> |
||
1683 | <translation>getColumns(["name"]) -> integer |
||
1684 | |||
1685 | Gibt die Anzahl der Spalten im Textrahmen "name" zurück. Ist "name" nicht |
||
1686 | angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1687 | </message> |
||
1688 | <message> |
||
7919 | mrdocs | 1689 | <location filename="" line="7471221"/> |
1135 | cbradney | 1690 | <source>setText("text", ["name"]) |
1691 | |||
1692 | Sets the text of the text frame "name" to the text of the string "text". |
||
1693 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
1694 | for more details. If "name" is not given the currently selected item is |
||
1695 | used. |
||
1696 | </source> |
||
1697 | <translation>setText("text", ["name"]) |
||
1698 | |||
1699 | Ändert den Text im Rahmen "name" auf den String "text". |
||
7561 | mrdocs | 1700 | Der Text muss URF8-kodiert sein - verwenden Sie z.B. unicode(text, 'iso-8859-2'). |
1135 | cbradney | 1701 | Lesen Sie in der FAQ nach für weitere Informationen. Ist "name" nicht angegeben, |
1702 | wird der aktuelle Textrahmen verwendet.</translation> |
||
1703 | </message> |
||
1704 | <message> |
||
7919 | mrdocs | 1705 | <location filename="" line="7471221"/> |
1135 | cbradney | 1706 | <source>setFont("font", ["name"]) |
1707 | |||
1708 | Sets the font of the text frame "name" to "font". If there is some text |
||
1709 | selected only the selected text is changed. If "name" is not given the |
||
1710 | currently selected item is used. |
||
1711 | |||
1712 | May throw ValueError if the font cannot be found. |
||
1713 | </source> |
||
1714 | <translation>setFont("font", ["name"]) |
||
1715 | |||
5102 | mrdocs | 1716 | Setzt die Schrift für den Rahmen "name" auf "font". Ist Text ausgewählt, |
1135 | cbradney | 1717 | wird nur die Markierung verändert. Ist "name" nicht angegeben, wird der |
1718 | aktuelle Textrahmen verwendet. |
||
1719 | |||
5102 | mrdocs | 1720 | Ist die Schrift ungültig, wird der Fehler ValueError ausgegeben.</translation> |
1135 | cbradney | 1721 | </message> |
1722 | <message> |
||
7919 | mrdocs | 1723 | <location filename="" line="7471221"/> |
1135 | cbradney | 1724 | <source>setFontSize(size, ["name"]) |
1725 | |||
1726 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1727 | as a value in points. If there is some text selected only the selected text is |
||
1728 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1729 | currently selected item is used. |
||
1730 | |||
1731 | May throw ValueError for a font size that's out of bounds. |
||
1732 | </source> |
||
1733 | <translation>setFontSize(size, ["name"]) |
||
1734 | |||
1735 | Setzt die Schriftgröße im Textrahmen "name" auf den Wert "size". "size" ist |
||
1736 | ein Wert in Punkten zwischen 1 und 512. Ist eine Markierung vorhanden, wird |
||
1737 | nur die die Markiertung verändert. Ist "name" nicht angegeben, wird der aktuelle |
||
1738 | Textrahmen verwendet. |
||
1739 | |||
1740 | Ist die Schriftgröße ungültig, wird der Fehler ValueError ausgegeben.</translation> |
||
1741 | </message> |
||
1742 | <message> |
||
7919 | mrdocs | 1743 | <location filename="" line="7471221"/> |
1135 | cbradney | 1744 | <source>setLineSpacing(size, ["name"]) |
1745 | |||
1746 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1747 | "size" is a value in points. If "name" is not given the currently selected |
||
1748 | item is used. |
||
1749 | |||
1750 | May throw ValueError if the line spacing is out of bounds. |
||
1751 | </source> |
||
1752 | <translation>setLineSpacing(size, ["name"]) |
||
1753 | |||
1754 | Setzt den Zeilenabstand im Rahmen "name" auf den Wert "size". |
||
1755 | "size" ist ein Wert in Punkten. Ist "name" nicht angegeben, wird der |
||
1756 | aktuelle Textrahmen verwendet. |
||
1757 | |||
1758 | Ist der Wert für Zeilenabstand ungültig, wird der Fehler ValueError |
||
1759 | ausgegeben.</translation> |
||
1760 | </message> |
||
1761 | <message> |
||
7919 | mrdocs | 1762 | <location filename="" line="7471221"/> |
1135 | cbradney | 1763 | <source>setColumnGap(size, ["name"]) |
1764 | |||
1765 | Sets the column gap of the text frame "name" to the value "size". If |
||
1766 | "name" is not given the currently selected item is used. |
||
1767 | |||
1768 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1769 | </source> |
||
1770 | <translation>setColumnGap(size, ["name"]) |
||
1771 | |||
1772 | Setzt den Spaltenabstand im Rahmen "name" auf den Wert "size". |
||
1773 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1774 | |||
1775 | Ist der Abstand nicht positiv, wird der Fehler ValueError ausgegeben.</translation> |
||
1776 | </message> |
||
1777 | <message> |
||
7919 | mrdocs | 1778 | <location filename="" line="7471221"/> |
1135 | cbradney | 1779 | <source>setColumns(nr, ["name"]) |
1780 | |||
1781 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1782 | If "name" is not given the currently selected item is used. |
||
1783 | |||
1784 | May throw ValueError if number of columns is not at least one. |
||
1785 | </source> |
||
1786 | <translation>setColumns(nr, ["name"]) |
||
1787 | |||
1788 | Legt die Anzahl der Spalten im Textrahmen "name" fest auf "nr" fest. |
||
1789 | Wenn "name" nicht angegeben ist, wird der aktuelle Textrahmen verwendet. |
||
1790 | |||
1791 | Ist die Anzahl der Spalten kleiner als 1, wird der Fehler ValueError ausgegeben.</translation> |
||
1792 | </message> |
||
1793 | <message> |
||
7919 | mrdocs | 1794 | <location filename="" line="7471221"/> |
1135 | cbradney | 1795 | <source>setTextAlignment(align, ["name"]) |
1796 | |||
1797 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1798 | If "name" is not given the currently selected item is used. "align" should |
||
1799 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1800 | |||
1801 | May throw ValueError for an invalid alignment constant. |
||
1802 | </source> |
||
1803 | <translation>setTextAlignment(align, ["name"]) |
||
1804 | |||
1805 | Richtet den Text in dem Objekt "name" nach der Art "align" aus. Ist "name" |
||
1806 | nicht angegeben, wird der aktuelle Textrahmen verwendet. "align" ist eine der |
||
1807 | ALIGN_*-Konstanten. Siehe dir(scribus). |
||
1808 | |||
1809 | Bei einem falschen Argument wird der Fehler ValueError ausgegeben.</translation> |
||
1810 | </message> |
||
1811 | <message> |
||
7919 | mrdocs | 1812 | <location filename="" line="7471221"/> |
1135 | cbradney | 1813 | <source>selectText(start, count, ["name"]) |
1814 | |||
1815 | Selects "count" characters of text in the text frame "name" starting from the |
||
1816 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1817 | text selection will be cleared. If "name" is not given the currently |
||
1818 | selected item is used. |
||
1819 | |||
1820 | May throw IndexError if the selection is outside the bounds of the text. |
||
1821 | </source> |
||
2913 | mrdocs | 1822 | <translation>selectText(start, count, ["name"]) |
1135 | cbradney | 1823 | |
1824 | Markiert "count" Zeichen des Textrahmens "name" beginnend mit dem Zeichen "start". |
||
1825 | Die Zählung beginnt bei 0. Wenn "count"=0 ist, wird die Markierung gelöscht. Wenn "name" |
||
1826 | nicht angegeben ist, wird der aktuelle Textrahmen verwendet. |
||
1827 | |||
1828 | Wenn die Werte ungültig sind, wird der Fehler IndexError ausgegeben.</translation> |
||
1829 | </message> |
||
1830 | <message> |
||
7919 | mrdocs | 1831 | <location filename="" line="7471221"/> |
1135 | cbradney | 1832 | <source>deleteText(["name"]) |
1833 | |||
1834 | Deletes any text in the text frame "name". If there is some text selected, |
||
1835 | only the selected text will be deleted. If "name" is not given the currently |
||
1836 | selected item is used. |
||
1837 | </source> |
||
1838 | <translation>deleteText(["name"]) |
||
1839 | |||
1840 | Löscht den Textrahmen "name". Wenn Text ausgewählt ist, wird nur die Markierung |
||
1841 | gelöscht. Ist "name" nicht angegeben, wird der aktuelle Textrahmen gelöscht.</translation> |
||
1842 | </message> |
||
1843 | <message> |
||
7919 | mrdocs | 1844 | <location filename="" line="7471221"/> |
1135 | cbradney | 1845 | <source>setTextColor("color", ["name"]) |
1846 | |||
1847 | Sets the text color of the text frame "name" to the color "color". If there |
||
1848 | is some text selected only the selected text is changed. If "name" is not |
||
1849 | given the currently selected item is used. |
||
1850 | </source> |
||
1851 | <translation>setTextColor("color", ["name"]) |
||
1852 | |||
1853 | Ändert die Farbe des Textes auf "color". Wenn Text ausgewählt ist, wird die |
||
1854 | Markierung auf "color" geändert. Ist "name" nicht angegeben, wird der aktuelle |
||
1855 | Textrahmen verwendet.</translation> |
||
1856 | </message> |
||
1857 | <message> |
||
7919 | mrdocs | 1858 | <location filename="" line="7471221"/> |
1135 | cbradney | 1859 | <source>setTextStroke("color", ["name"]) |
1860 | |||
1861 | Set "color" of the text stroke. If "name" is not given the currently |
||
1862 | selected item is used. |
||
1863 | </source> |
||
1864 | <translation>setTextStroke("color", ["name"]) |
||
1865 | |||
1866 | Setzt die Farbe "color" für die Umrandung des Textes. Ist "name" nicht angegeben, wird der aktuelle |
||
1867 | Textrahmen verwendet.</translation> |
||
1868 | </message> |
||
1869 | <message> |
||
7919 | mrdocs | 1870 | <location filename="" line="7471221"/> |
1135 | cbradney | 1871 | <source>setTextShade(shade, ["name"]) |
1872 | |||
1873 | Sets the shading of the text color of the object "name" to "shade". If |
||
1874 | there is some text selected only the selected text is changed. "shade" must |
||
1875 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1876 | intensity). If "name" is not given the currently selected item is |
||
1877 | used. |
||
1878 | </source> |
||
1879 | <translation>setTextShade(shade, ["name"]) |
||
1880 | |||
1881 | Setzt den Tonwert für den Textrahmen "name" auf "shade". |
||
1882 | Ist Text in dem Rahmen ausgewählt, wird nur der ausgewählt Text |
||
1883 | verändert. "shade" muss eine ganze Zahl zwischen 0 und 100 sein. |
||
1884 | Ist "name" nicht vorhanden oder angegeben, wird der aktuelle Rahmen verwendet.</translation> |
||
1885 | </message> |
||
1886 | <message> |
||
7919 | mrdocs | 1887 | <location filename="" line="7471221"/> |
1135 | cbradney | 1888 | <source>linkTextFrames("fromname", "toname") |
1889 | |||
1890 | Link two text frames. The frame named "fromname" is linked to the |
||
1891 | frame named "toname". The target frame must be an empty text frame |
||
1892 | and must not link to or be linked from any other frames already. |
||
1893 | |||
1894 | May throw ScribusException if linking rules are violated. |
||
1895 | </source> |
||
1896 | <translation>linkTextFrames("fromname", "toname") |
||
1897 | |||
1898 | Zwei Textrahmen verketten. "Fromname" wird mit "Toname" verkettet. Der Zielrahmen |
||
1899 | muss leer sein und darf nicht mit anderen Rahmen verkettet sein. |
||
1900 | |||
1901 | Werden die Regeln verletzt, erscheint der Fehler ScribusException.</translation> |
||
1902 | </message> |
||
1903 | <message> |
||
7919 | mrdocs | 1904 | <location filename="" line="7471221"/> |
1135 | cbradney | 1905 | <source>unlinkTextFrames("name") |
1906 | |||
1907 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
1908 | frame was in the middle of a chain, the previous and next frames will be |
||
1909 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
1910 | |||
1911 | May throw ScribusException if linking rules are violated. |
||
1912 | </source> |
||
1913 | <translation>unlinkTextFrames("name") |
||
1914 | |||
1915 | Entfernt den Textrahmen "name" aus der Reihe der verketteten Rahmen. Ist der |
||
1916 | zu entfernende Rahmen einer aus der Mitte der Reihe, wird der vorherige und nächste |
||
1917 | Rahmen miteinander verkettet, z.B. wird aus a->b->c dann a->c, wenn Sie Rahmen b |
||
1918 | entfernen. |
||
1919 | |||
1920 | Wenn die Verkettungsregeln gebrochen werden, erscheint der Fehler ScribusException.</translation> |
||
1921 | </message> |
||
1922 | <message> |
||
7919 | mrdocs | 1923 | <location filename="" line="7471221"/> |
1135 | cbradney | 1924 | <source>traceText(["name"]) |
1925 | |||
1926 | Convert the text frame "name" to outlines. If "name" is not given the |
||
1927 | currently selected item is used.</source> |
||
1928 | <translation>traceText(["name"]) |
||
1929 | |||
1930 | Konvertiert den Textrahmen "name" in Umrisse. Ist "name" nicht vorhanden oder |
||
1931 | vorgegeben, wird der aktuelle Textrahmen verwendet.</translation> |
||
1932 | </message> |
||
1933 | <message> |
||
7919 | mrdocs | 1934 | <location filename="" line="7471221"/> |
1135 | cbradney | 1935 | <source>progressReset() |
1936 | |||
1937 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1938 | new progress bar use. See progressSet. |
||
1939 | </source> |
||
1940 | <translation>progressReset() |
||
1941 | |||
1942 | Löscht die Fortschrittsanzeige. Wird aufgerufen, bevor eine neue Verlaufsanzeige benutzt wird. |
||
7919 | mrdocs | 1943 | Siehe progressSet.</translation> |
1135 | cbradney | 1944 | </message> |
1945 | <message> |
||
7919 | mrdocs | 1946 | <location filename="" line="7471221"/> |
1135 | cbradney | 1947 | <source>progressTotal(max) |
1948 | |||
1949 | Sets the progress bar's maximum steps value to the specified number. |
||
1950 | See progressSet. |
||
1951 | </source> |
||
1952 | <translation>progressTotal(max) |
||
1953 | |||
1954 | Setzt die Gesamtzahl der Schritte für die Fortschrittsanzeige. Siehe progressSet.</translation> |
||
1955 | </message> |
||
1956 | <message> |
||
7919 | mrdocs | 1957 | <location filename="" line="7471221"/> |
1135 | cbradney | 1958 | <source>progressSet(nr) |
1959 | |||
1960 | Set the progress bar position to "nr", a value relative to the previously set |
||
1961 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1962 | total number of steps and the number of steps completed so far and it will |
||
1963 | display the percentage of steps that have been completed. You can specify the |
||
1964 | total number of steps with progressTotal(). The current number of steps is set |
||
1965 | with progressSet(). The progress bar can be rewound to the beginning with |
||
1966 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
1967 | </source> |
||
1968 | <translation>progressSet(nr) |
||
1969 | |||
1970 | Die Fortschrittsanzeigen auf "nr" setzen, ein Wert relativ zum vorher festgelegten Wert |
||
1971 | für progressTotal. Die Fortschrittsanzeige verwendet Schritte zum Anzeigen des Verlaufs: |
||
1972 | Sie geben die Gesamtzahl der Schritte an und dann immer die fertigen Schritte - die Verlaufs- |
||
1973 | anzeige zeigt immer den Prozentsatz der fertigen Schritte an. Die Gesamtzahl der Schritte können |
||
1974 | Sie mit progressTotal() festlegen, die aktuelle Zahl der Schritte mit progressSet(). |
||
1975 | Die Fortschrittsanzeige kann mit progressReset() zurückgesetzt werden. [Infos sind aus den |
||
1976 | Dokumenten von Trolltech Qt]</translation> |
||
1977 | </message> |
||
1978 | <message> |
||
7919 | mrdocs | 1979 | <location filename="" line="7471221"/> |
1135 | cbradney | 1980 | <source>setCursor() |
1981 | |||
1982 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1983 | </source> |
||
1984 | <translation>setCursor() |
||
1985 | |||
1986 | [nicht unterstützt!] Bitte verwenden Sie diese Funktion zur Zeit noch nicht.</translation> |
||
1987 | </message> |
||
1988 | <message> |
||
7919 | mrdocs | 1989 | <location filename="" line="7471221"/> |
1135 | cbradney | 1990 | <source>docChanged(bool) |
1991 | |||
1992 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
1993 | useful to call this procedure when you're changing the document, because Scribus |
||
1994 | won't automatically notice when you change the document using a script. |
||
1995 | </source> |
||
1996 | <translation>docChanged(bool) |
||
1997 | |||
1998 | Aktiviert/Deaktivert das Icon zum Speichern und den entsprechenden Eintrag im Datei-Menü. |
||
1999 | Wenn Sie ein Dokument verändert ist es hilfreich, diese Funktion aufzurufen, weil Scribus im Script- |
||
2000 | Modus nicht automatisch erkennt, wann ein Dokument verändert wurde.</translation> |
||
2001 | </message> |
||
1525 | cbradney | 2002 | <message> |
7919 | mrdocs | 2003 | <location filename="" line="7471221"/> |
1525 | cbradney | 2004 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
2005 | |||
2006 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
2007 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
2008 | Both `scaletoframe' and `proportional' are boolean. |
||
2009 | |||
2010 | May raise WrongFrameTypeError. |
||
2011 | </source> |
||
2222 | cbradney | 2012 | <translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
2013 | |||
2014 | Setzt die Eigenschaft An Rahmen anpassen für den gewählten Bildrahmen oder angegebenen |
||
2015 | Bildrahmen. |
||
2016 | 'proportional' verkleinert das Bild proportional zur ursprünglichen Größe. |
||
2017 | Sowohl 'scaletoframe' als auch 'proportional' sind boolsche Werte. |
||
2018 | |||
2019 | Kann den Fehler WrongFrameTypeError verursachen.</translation> |
||
1525 | cbradney | 2020 | </message> |
2021 | <message> |
||
7919 | mrdocs | 2022 | <location filename="" line="7471221"/> |
1525 | cbradney | 2023 | <source>isLayerPrintable("layer") -> bool |
2024 | |||
2025 | Returns whether the layer "layer" is printable or not, a value of True means |
||
2026 | that the layer "layer" can be printed, a value of False means that printing |
||
2027 | the layer "layer" is disabled. |
||
2028 | |||
2029 | May raise NotFoundError if the layer can't be found. |
||
2030 | May raise ValueError if the layer name isn't acceptable. |
||
2031 | </source> |
||
2222 | cbradney | 2032 | <translation>isLayerPrintable("layer") -> bool |
2033 | |||
2034 | Gibt zurück, ob die Ebene gedruckt wird oder nicht. True bedeutet, dass die Ebene |
||
2035 | gedruckt wird, False bedeutet, dass das Drucken deaktiviert ist. |
||
2036 | |||
2037 | Der Fehler NotFoundError tritt auf, wenn die Ebene nicht existiert. |
||
2038 | Der Fehler ValueError tritt auf, wenn der Ebenenname ungültig ist.</translation> |
||
1525 | cbradney | 2039 | </message> |
2040 | <message> |
||
7919 | mrdocs | 2041 | <location filename="" line="7471221"/> |
2222 | cbradney | 2042 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
1525 | cbradney | 2043 | |
2222 | cbradney | 2044 | Creates an image preview of font "name" with given text "sample" and size. |
2045 | If "filename" is not "", image is saved into "filename". Otherwise |
||
2046 | image data is returned as a string. The optional "format" argument |
||
2047 | specifies the image format to generate, and supports any format allowed |
||
2048 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
2049 | |||
2050 | May raise NotFoundError if the specified font can't be found. |
||
2051 | May raise ValueError if an empty sample or filename is passed. |
||
1525 | cbradney | 2052 | </source> |
2222 | cbradney | 2053 | <translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
1525 | cbradney | 2054 | |
5102 | mrdocs | 2055 | Erzeugt ein Bild mit dem Text "sample" in der Schrift "font" und der Größe "size". |
2222 | cbradney | 2056 | Ist "filename" angegeben, wird das Bild unter "filename" abgespeichert. Ansonsten |
2057 | werden die Bilddaten als String zurückgegeben. Das optionale Argument "format" gibt |
||
2058 | an, welches Bildformat generiert werden soll. Unterstützt werden die Formate, die auch |
||
2059 | QPixmap.save() kennt, zum Beispiel PPM, JPEG, PNG und XPM. |
||
2060 | |||
5102 | mrdocs | 2061 | Der Fehler NotFoundError tritt auf, wenn die Schrift nicht gefunden wird. |
2222 | cbradney | 2062 | Der Fehler ValueError tritt auf, wenn "sample" leer ist oder der Dateiname ungültig ist.</translation> |
1525 | cbradney | 2063 | </message> |
2064 | <message> |
||
7919 | mrdocs | 2065 | <location filename="" line="7471221"/> |
2222 | cbradney | 2066 | <source>setPDFBookmark("toggle", ["name"]) |
1525 | cbradney | 2067 | |
2222 | cbradney | 2068 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
2069 | If "name" is not given the currently selected item is used. |
||
1525 | cbradney | 2070 | |
2222 | cbradney | 2071 | May raise WrongFrameTypeError if the target frame is not a text frame |
2072 | </source> |
||
2073 | <translation>setPDFBookmark("toggle", ["name"]) |
||
1525 | cbradney | 2074 | |
2222 | cbradney | 2075 | Legt fest (toggle=1), ob der Textrahmen "name" ein Lesezeichen ist oder nicht. |
2076 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1525 | cbradney | 2077 | |
2222 | cbradney | 2078 | Der Fehler WrongFrameTypeError tritt auf, wenn der Zielrahmen kein Textrahmen ist</translation> |
1525 | cbradney | 2079 | </message> |
2080 | <message> |
||
7919 | mrdocs | 2081 | <location filename="" line="7471221"/> |
2222 | cbradney | 2082 | <source>isPDFBookmark(["name"]) -> bool |
1525 | cbradney | 2083 | |
2222 | cbradney | 2084 | Returns true if the text frame "name" is a PDF bookmark. |
2085 | If "name" is not given the currently selected item is used. |
||
1525 | cbradney | 2086 | |
2222 | cbradney | 2087 | May raise WrongFrameTypeError if the target frame is not a text frame |
1525 | cbradney | 2088 | </source> |
2222 | cbradney | 2089 | <translation>isPDFBookmark(["name"]) -> bool |
1525 | cbradney | 2090 | |
2222 | cbradney | 2091 | Gibt zurück, ob der Textrahmen "name" ein PDF-Lesezeichen ist. |
2092 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1525 | cbradney | 2093 | |
2222 | cbradney | 2094 | Der Fehler WrongFrameTypeError tritt auf, wenn der Zielrahmen kein Textrahmen ist</translation> |
1525 | cbradney | 2095 | </message> |
2096 | <message> |
||
7919 | mrdocs | 2097 | <location filename="" line="7471221"/> |
2222 | cbradney | 2098 | <source>getPageMargins() |
1525 | cbradney | 2099 | |
2222 | cbradney | 2100 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
2101 | units. See UNIT_<type> constants and getPageSize(). |
||
1525 | cbradney | 2102 | </source> |
2222 | cbradney | 2103 | <translation>getPageMargins() |
1525 | cbradney | 2104 | |
2222 | cbradney | 2105 | Gibt die Seitenränder als ein Tupel in der gerade aktiven Einheit zurück (oben, unten, links, rechts). |
2106 | Mögliche Einheiten finden Sie bei UNIT_<tye> und getPageSize(). |
||
2107 | </translation> |
||
1525 | cbradney | 2108 | </message> |
2109 | <message> |
||
7919 | mrdocs | 2110 | <location filename="" line="7471221"/> |
2576 | cbradney | 2111 | <source>getColorAsRGB("name") -> tuple |
2112 | |||
2113 | Returns a tuple (R,G,B) containing the three color components of the |
||
2114 | color "name" from the current document, converted to the RGB color |
||
2115 | space. If no document is open, returns the value of the named color |
||
2116 | from the default document colors. |
||
2117 | |||
2118 | May raise NotFoundError if the named color wasn't found. |
||
2119 | May raise ValueError if an invalid color name is specified. |
||
2120 | </source> |
||
3426 | cbradney | 2121 | <translation>getColorAsRGB("name") -> tuple |
2122 | |||
2123 | Returns a tuple (R,G,B) containing the three color components of the |
||
2124 | color "name" from the current document, converted to the RGB color |
||
2125 | space. If no document is open, returns the value of the named color |
||
2126 | from the default document colors. |
||
2127 | |||
2128 | May raise NotFoundError if the named color wasn't found. |
||
2129 | May raise ValueError if an invalid color name is specified.</translation> |
||
2576 | cbradney | 2130 | </message> |
2131 | <message> |
||
7919 | mrdocs | 2132 | <location filename="" line="7471221"/> |
2576 | cbradney | 2133 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
2134 | |||
2135 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
2136 | with the filter string "filter". A default filename or file path can also |
||
2137 | supplied, leave this string empty when you don't want to use it. A value of |
||
2138 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
2139 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
2140 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
2141 | the dialog shows and returns only directories. The default for all of the |
||
2142 | opional parameters is False. |
||
2143 | |||
2144 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
2145 | For example 'Images (*.png *.xpm *.jpg)'. |
||
2146 | |||
2147 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
2148 | |||
2149 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
2150 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
2151 | </source> |
||
3426 | cbradney | 2152 | <translation>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
2153 | |||
2154 | Zeigt einen Datei öffnen-Dialog mit der Beschriftung "caption". Dateien werden |
||
2155 | gefiltert mit dem String "filter". Ein Standard-Dateiname oder -pfad kann auch |
||
2156 | angegeben werden. Lassen Sie diesen String leer, wenn Sie ihn nicht verwenden |
||
2157 | möchten. Der Wert "True" für "haspreview" aktiviert die Dateivorschau im FileSelect- |
||
2158 | Dialog. Wenn der "issave"-Parameter den Wert "True" hat, verhält sich der Dialog wie |
||
2159 | der "Speichern unter"-Dialog, ansonsten wie der "Date öffnen"-Dialog. Wenn der "isdir"- |
||
2160 | Parameter den Wert "True" hat, zeigt der Dialog lediglich Verzeichnisse an. Der Standard- |
||
2161 | wert aller optionalen Parameter ist "False"</translation> |
||
2576 | cbradney | 2162 | </message> |
2163 | <message> |
||
7919 | mrdocs | 2164 | <location filename="" line="7471221"/> |
2576 | cbradney | 2165 | <source>getPropertyCType(object, property, includesuper=True) |
2166 | |||
2167 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
2168 | for details of arguments. |
||
2169 | |||
2170 | If `includesuper' is true, search inherited properties too. |
||
2171 | </source> |
||
3426 | cbradney | 2172 | <translation>getPropertyCType(object, property, includesuper=True) |
2173 | |||
2174 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
2175 | for details of arguments. |
||
2176 | |||
2177 | If `includesuper' is true, search inherited properties too.</translation> |
||
2576 | cbradney | 2178 | </message> |
2179 | <message> |
||
7919 | mrdocs | 2180 | <location filename="" line="7471221"/> |
2576 | cbradney | 2181 | <source>getPropertyNames(object, includesuper=True) |
2182 | |||
2183 | Return a list of property names supported by `object'. |
||
2184 | If `includesuper' is true, return properties supported |
||
2185 | by parent classes as well. |
||
2186 | </source> |
||
3426 | cbradney | 2187 | <translation>getPropertyNames(object, includesuper=True) |
2188 | |||
2189 | Return a list of property names supported by `object'. |
||
2190 | If `includesuper' is true, return properties supported |
||
2191 | by parent classes as well.</translation> |
||
2576 | cbradney | 2192 | </message> |
2193 | <message> |
||
7919 | mrdocs | 2194 | <location filename="" line="7471221"/> |
2576 | cbradney | 2195 | <source>getProperty(object, property) |
2196 | |||
2197 | Return the value of the property `property' of the passed `object'. |
||
2198 | |||
2199 | The `object' argument may be a string, in which case the named PageItem |
||
2200 | is searched for. It may also be a PyCObject, which may point to any |
||
2201 | C++ QObject instance. |
||
2202 | |||
2203 | The `property' argument must be a string, and is the name of the property |
||
2204 | to look up on `object'. |
||
2205 | |||
2206 | The return value varies depending on the type of the property. |
||
2207 | </source> |
||
3426 | cbradney | 2208 | <translation>getProperty(object, property) |
2209 | |||
2210 | Return the value of the property `property' of the passed `object'. |
||
2211 | |||
2212 | The `object' argument may be a string, in which case the named PageItem |
||
2213 | is searched for. It may also be a PyCObject, which may point to any |
||
2214 | C++ QObject instance. |
||
2215 | |||
2216 | The `property' argument must be a string, and is the name of the property |
||
2217 | to look up on `object'. |
||
2218 | |||
2219 | The return value varies depending on the type of the property.</translation> |
||
2576 | cbradney | 2220 | </message> |
2221 | <message> |
||
7919 | mrdocs | 2222 | <location filename="" line="7471221"/> |
2576 | cbradney | 2223 | <source>setProperty(object, property, value) |
2224 | |||
2225 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
2226 | compatible with the type of `property', an exception is raised. An exception may |
||
2227 | also be raised if the underlying setter fails. |
||
2228 | |||
2229 | See getProperty() for more information. |
||
2230 | </source> |
||
3426 | cbradney | 2231 | <translation>setProperty(object, property, value) |
2232 | |||
2233 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
2234 | compatible with the type of `property', an exception is raised. An exception may |
||
2235 | also be raised if the underlying setter fails. |
||
2236 | |||
2237 | See getProperty() for more information.</translation> |
||
2576 | cbradney | 2238 | </message> |
2239 | <message> |
||
7919 | mrdocs | 2240 | <location filename="" line="7471221"/> |
2576 | cbradney | 2241 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2242 | |||
2243 | Return a list of children of `object', possibly restricted to children |
||
2244 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2245 | search recursively through children, grandchildren, etc. |
||
2246 | |||
2247 | See QObject::children() in the Qt docs for more information. |
||
2248 | </source> |
||
3426 | cbradney | 2249 | <translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2250 | |||
2251 | Return a list of children of `object', possibly restricted to children |
||
2252 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2253 | search recursively through children, grandchildren, etc. |
||
2254 | |||
2255 | See QObject::children() in the Qt docs for more information.</translation> |
||
2576 | cbradney | 2256 | </message> |
2257 | <message> |
||
7919 | mrdocs | 2258 | <location filename="" line="7471221"/> |
2576 | cbradney | 2259 | <source>getChild(object, childname, ofclass=None, recursive=True) |
2260 | |||
2261 | Return the first child of `object' named `childname', possibly restricting |
||
2262 | the search to children of type name `ofclass'. If `recursive' is true, |
||
2263 | search recursively through children, grandchildren, etc. |
||
2264 | </source> |
||
3426 | cbradney | 2265 | <translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2266 | |||
2267 | Return a list of children of `object', possibly restricted to children |
||
2268 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2269 | search recursively through children, grandchildren, etc. |
||
2270 | |||
2271 | See QObject::children() in the Qt docs for more information.</translation> |
||
2576 | cbradney | 2272 | </message> |
2273 | <message> |
||
7919 | mrdocs | 2274 | <location filename="" line="7471221"/> |
2576 | cbradney | 2275 | <source>textOverflows(["name", nolinks]) -> integer |
2276 | |||
2277 | Returns the actual number of overflowing characters in text frame "name". |
||
2278 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2279 | use text frame linking. Without this parameter it search all linking chain. |
||
2280 | |||
2281 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2282 | </source> |
||
3426 | cbradney | 2283 | <translation>isLayerPrintable("layer") -> bool |
2284 | |||
2285 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2286 | that the layer "layer" is visible, a value of False means that the layer |
||
2287 | "layer" is invisible. |
||
2288 | |||
2289 | May raise NotFoundError if the layer can't be found. |
||
2290 | May raise ValueError if the layer name isn't acceptable</translation> |
||
2576 | cbradney | 2291 | </message> |
3278 | cbradney | 2292 | <message> |
7919 | mrdocs | 2293 | <location filename="" line="7471221"/> |
3278 | cbradney | 2294 | <source>newStyleDialog() -> string |
2295 | |||
2296 | Shows 'Create new paragraph style' dialog. Function returns real |
||
2297 | style name or None when user cancels the dialog. |
||
2298 | </source> |
||
3426 | cbradney | 2299 | <translation>isLayerPrintable("layer") -> bool |
2300 | |||
2301 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2302 | that the layer "layer" is visible, a value of False means that the layer |
||
2303 | "layer" is invisible. |
||
2304 | |||
2305 | May raise NotFoundError if the layer can't be found. |
||
2306 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
3278 | cbradney | 2307 | </message> |
3824 | cbradney | 2308 | <message> |
7919 | mrdocs | 2309 | <location filename="" line="7471221"/> |
3824 | cbradney | 2310 | <source>newDoc(size, margins, orientation, firstPageNumber, |
2311 | unit, facingPages, firstSideLeft) -> bool |
||
2312 | |||
2313 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2314 | |||
2315 | Creates a new document and returns true if successful. The parameters have the |
||
2316 | following meaning: |
||
2317 | |||
2318 | size = A tuple (width, height) describing the size of the document. You can |
||
2319 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
2320 | |||
2321 | margins = A tuple (left, right, top, bottom) describing the document |
||
2322 | margins |
||
2323 | |||
2324 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2325 | |||
2326 | firstPageNumer = is the number of the first page in the document used for |
||
2327 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
2328 | numbers if you're creating a document in several parts. |
||
2329 | |||
2330 | unit: this value sets the measurement units used by the document. Use a |
||
2331 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2332 | UNIT_PICAS, UNIT_POINTS. |
||
2333 | |||
2334 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2335 | |||
2336 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2337 | |||
2338 | The values for width, height and the margins are expressed in the given unit |
||
2339 | for the document. PAPER_* constants are expressed in points. If your document |
||
2340 | is not in points, make sure to account for this. |
||
2341 | |||
2342 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2343 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2344 | </source> |
||
3869 | cbradney | 2345 | <translation>newDoc(size, margins, orientation, firstPageNumber, |
2346 | unit, facingPages, firstSideLeft) -> bool |
||
2347 | |||
2348 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2349 | |||
2350 | Creates a new document and returns true if successful. The parameters have the |
||
2351 | following meaning: |
||
2352 | |||
2353 | size = A tuple (width, height) describing the size of the document. You can |
||
2354 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
2355 | |||
2356 | margins = A tuple (left, right, top, bottom) describing the document |
||
2357 | margins |
||
2358 | |||
2359 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2360 | |||
2361 | firstPageNumer = is the number of the first page in the document used for |
||
2362 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
2363 | numbers if you're creating a document in several parts. |
||
2364 | |||
2365 | unit: this value sets the measurement units used by the document. Use a |
||
2366 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2367 | UNIT_PICAS, UNIT_POINTS. |
||
2368 | |||
2369 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2370 | |||
2371 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2372 | |||
2373 | The values for width, height and the margins are expressed in the given unit |
||
2374 | for the document. PAPER_* constants are expressed in points. If your document |
||
2375 | is not in points, make sure to account for this. |
||
2376 | |||
2377 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2378 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2379 | </translation> |
||
3824 | cbradney | 2380 | </message> |
4141 | cbradney | 2381 | <message> |
7919 | mrdocs | 2382 | <location filename="" line="7471221"/> |
4141 | cbradney | 2383 | <source>closeMasterPage() |
2384 | |||
2385 | Closes the currently active master page, if any, and returns editing |
||
2386 | to normal. Begin editing with editMasterPage(). |
||
2387 | </source> |
||
4356 | cbradney | 2388 | <translation>closeMasterPage() |
2389 | |||
2390 | Closes the currently active master page, if any, and returns editing |
||
2391 | to normal. Begin editing with editMasterPage().</translation> |
||
4141 | cbradney | 2392 | </message> |
2393 | <message> |
||
7919 | mrdocs | 2394 | <location filename="" line="7471221"/> |
4141 | cbradney | 2395 | <source>masterPageNames() |
2396 | |||
2397 | Returns a list of the names of all master pages in the document. |
||
2398 | </source> |
||
4356 | cbradney | 2399 | <translation>masterPageNames()(new line) |
2400 | (new line) |
||
2401 | Returns a list of the names of all master pages in the document.</translation> |
||
4141 | cbradney | 2402 | </message> |
2403 | <message> |
||
7919 | mrdocs | 2404 | <location filename="" line="7471221"/> |
4141 | cbradney | 2405 | <source>editMasterPage(pageName) |
2406 | |||
2407 | Enables master page editing and opens the named master page |
||
2408 | for editing. Finish editing with closeMasterPage(). |
||
2409 | </source> |
||
4356 | cbradney | 2410 | <translation>editMasterPage(pageName)(new line) |
2411 | (new line) |
||
2412 | Enables master page editing and opens the named master page(new line) |
||
2413 | for editing. Finish editing with closeMasterPage().</translation> |
||
4141 | cbradney | 2414 | </message> |
2415 | <message> |
||
7919 | mrdocs | 2416 | <location filename="" line="7471221"/> |
4141 | cbradney | 2417 | <source>createMasterPage(pageName) |
2418 | |||
2419 | Creates a new master page named pageName and opens it for |
||
2420 | editing. |
||
2421 | </source> |
||
4356 | cbradney | 2422 | <translation>createMasterPage(pageName)(new line) |
2423 | (new line) |
||
2424 | Creates a new master page named pageName and opens it for(new line) |
||
2425 | editing.</translation> |
||
4141 | cbradney | 2426 | </message> |
2427 | <message> |
||
7919 | mrdocs | 2428 | <location filename="" line="7471221"/> |
4141 | cbradney | 2429 | <source>deleteMasterPage(pageName) |
2430 | |||
2431 | Delete the named master page. |
||
2432 | </source> |
||
4356 | cbradney | 2433 | <translation>deleteMasterPage(pageName)(new line) |
2434 | (new line) |
||
2435 | Delete the named master page.</translation> |
||
4141 | cbradney | 2436 | </message> |
2437 | <message> |
||
7919 | mrdocs | 2438 | <location filename="" line="7471221"/> |
4141 | cbradney | 2439 | <source>zoomDocument(double) |
2440 | |||
2441 | Zoom the document in main GUI window. Actions have whole number |
||
2442 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2443 | </source> |
||
4356 | cbradney | 2444 | <translation>zoomDocument(double)(new line) |
2445 | (new line) |
||
2446 | Zoom the document in main GUI window. Actions have whole number(new line) |
||
2447 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.</translation> |
||
4141 | cbradney | 2448 | </message> |
6261 | cbradney | 2449 | <message> |
7919 | mrdocs | 2450 | <location filename="" line="7471221"/> |
7508 | cbradney | 2451 | <source>getFillTransparency(["name"]) -> float |
2452 | |||
2453 | Returns the fill transparency of the object "name". If "name" |
||
2454 | is not given the currently selected Item is used. |
||
2455 | </source> |
||
7561 | mrdocs | 2456 | <translation>getFillTransparency(["name"]) -> float |
2457 | |||
2458 | Returns the fill transparency of the object "name". If "name" |
||
2459 | is not given the currently selected Item is used.</translation> |
||
7508 | cbradney | 2460 | </message> |
2461 | <message> |
||
7919 | mrdocs | 2462 | <location filename="" line="7471221"/> |
7508 | cbradney | 2463 | <source>getFillBlendmode(["name"]) -> integer |
2464 | |||
2465 | Returns the fill blendmode of the object "name". If "name" |
||
2466 | is not given the currently selected Item is used. |
||
2467 | </source> |
||
7561 | mrdocs | 2468 | <translation>getFillBlendmode(["name"]) -> integer |
2469 | |||
2470 | Returns the fill blendmode of the object "name". If "name" |
||
2471 | is not given the currently selected Item is used.</translation> |
||
7508 | cbradney | 2472 | </message> |
2473 | <message> |
||
7919 | mrdocs | 2474 | <location filename="" line="7471221"/> |
7508 | cbradney | 2475 | <source>getLineTransparency(["name"]) -> float |
2476 | |||
2477 | Returns the line transparency of the object "name". If "name" |
||
2478 | is not given the currently selected Item is used. |
||
2479 | </source> |
||
7561 | mrdocs | 2480 | <translation>getLineTransparency(["name"]) -> float |
2481 | |||
2482 | Returns the line transparency of the object "name". If "name" |
||
2483 | is not given the currently selected Item is used.</translation> |
||
7508 | cbradney | 2484 | </message> |
2485 | <message> |
||
7919 | mrdocs | 2486 | <location filename="" line="7471221"/> |
7508 | cbradney | 2487 | <source>getLineBlendmode(["name"]) -> integer |
2488 | |||
2489 | Returns the line blendmode of the object "name". If "name" |
||
2490 | is not given the currently selected Item is used. |
||
2491 | </source> |
||
7561 | mrdocs | 2492 | <translation>getLineBlendmode(["name"]) -> integer |
7508 | cbradney | 2493 | |
7561 | mrdocs | 2494 | Returns the line blendmode of the object "name". If "name" |
2495 | is not given the currently selected Item is used.</translation> |
||
7508 | cbradney | 2496 | </message> |
2497 | <message> |
||
7919 | mrdocs | 2498 | <location filename="" line="7471221"/> |
7508 | cbradney | 2499 | <source>setLayerLocked("layer", locked) |
2500 | |||
2501 | Sets the layer "layer" to be locked or not. If locked is set to |
||
2502 | true the layer will be locked. |
||
2503 | |||
2504 | May raise NotFoundError if the layer can't be found. |
||
2505 | May raise ValueError if the layer name isn't acceptable. |
||
2506 | </source> |
||
7561 | mrdocs | 2507 | <translation>setLayerLocked("layer", locked) |
2508 | |||
2509 | Sets the layer "layer" to be locked or not. If locked is set to |
||
2510 | true the layer will be locked. |
||
2511 | |||
2512 | May raise NotFoundError if the layer can't be found. |
||
2513 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2514 | </message> |
2515 | <message> |
||
7919 | mrdocs | 2516 | <location filename="" line="7471221"/> |
7508 | cbradney | 2517 | <source>setLayerOutlined"layer", outline) |
2518 | |||
2519 | Sets the layer "layer" to be locked or not. If outline is set to |
||
2520 | true the layer will be displayed outlined. |
||
2521 | |||
2522 | May raise NotFoundError if the layer can't be found. |
||
2523 | May raise ValueError if the layer name isn't acceptable. |
||
2524 | </source> |
||
7561 | mrdocs | 2525 | <translation>setLayerOutlined"layer", outline) |
2526 | |||
2527 | Sets the layer "layer" to be locked or not. If outline is set to |
||
2528 | true the layer will be displayed outlined. |
||
2529 | |||
2530 | May raise NotFoundError if the layer can't be found. |
||
2531 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2532 | </message> |
2533 | <message> |
||
7919 | mrdocs | 2534 | <location filename="" line="7471221"/> |
7508 | cbradney | 2535 | <source>setLayerFlow"layer", flow) |
2536 | |||
2537 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
2538 | true text in layers above this one will flow around objects on this layer. |
||
2539 | |||
2540 | May raise NotFoundError if the layer can't be found. |
||
2541 | May raise ValueError if the layer name isn't acceptable. |
||
2542 | </source> |
||
7561 | mrdocs | 2543 | <translation>setLayerFlow"layer", flow) |
2544 | |||
2545 | Sets the layers "layer"(sp)(sp)flowcontrol to flow. If flow is set to |
||
2546 | true text in layers above this one will flow around objects on this layer. |
||
2547 | |||
2548 | May raise NotFoundError if the layer can't be found. |
||
2549 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2550 | </message> |
2551 | <message> |
||
7919 | mrdocs | 2552 | <location filename="" line="7471221"/> |
7508 | cbradney | 2553 | <source>setLayerBlendmode"layer", blend) |
2554 | |||
2555 | Sets the layers "layer" blendmode to blend. |
||
2556 | |||
2557 | May raise NotFoundError if the layer can't be found. |
||
2558 | May raise ValueError if the layer name isn't acceptable. |
||
2559 | </source> |
||
7561 | mrdocs | 2560 | <translation>setLayerBlendmode"layer", blend) |
2561 | |||
2562 | Sets the layers "layer"(sp)(sp)blendmode to blend. |
||
2563 | |||
2564 | May raise NotFoundError if the layer can't be found. |
||
2565 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2566 | </message> |
2567 | <message> |
||
7919 | mrdocs | 2568 | <location filename="" line="7471221"/> |
7508 | cbradney | 2569 | <source>setLayerTransparency"layer", trans) |
2570 | |||
2571 | Sets the layers "layer" transparency to trans. |
||
2572 | |||
2573 | May raise NotFoundError if the layer can't be found. |
||
2574 | May raise ValueError if the layer name isn't acceptable. |
||
2575 | </source> |
||
7561 | mrdocs | 2576 | <translation>setLayerTransparency"layer", trans) |
7508 | cbradney | 2577 | |
7561 | mrdocs | 2578 | Sets the layers "layer"(sp)(sp)transparency to trans. |
7508 | cbradney | 2579 | |
2580 | May raise NotFoundError if the layer can't be found. |
||
7561 | mrdocs | 2581 | May raise ValueError if the layer name isn't acceptable.</translation> |
7508 | cbradney | 2582 | </message> |
2583 | <message> |
||
7919 | mrdocs | 2584 | <location filename="" line="7471221"/> |
7508 | cbradney | 2585 | <source>isLayerLocked("layer") -> bool |
2586 | |||
2587 | Returns whether the layer "layer" is locked or not, a value of True means |
||
2588 | that the layer "layer" is editable, a value of False means that the layer |
||
2589 | "layer" is locked. |
||
2590 | |||
2591 | May raise NotFoundError if the layer can't be found. |
||
2592 | May raise ValueError if the layer name isn't acceptable. |
||
2593 | </source> |
||
7561 | mrdocs | 2594 | <translation>isLayerLocked("layer") -> bool |
2595 | |||
2596 | Returns whether the layer "layer" is locked or not, a value of True means |
||
2597 | that the layer "layer" is editable, a value of False means that the layer |
||
2598 | "layer" is locked. |
||
2599 | |||
2600 | May raise NotFoundError if the layer can't be found. |
||
2601 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2602 | </message> |
2603 | <message> |
||
7919 | mrdocs | 2604 | <location filename="" line="7471221"/> |
7508 | cbradney | 2605 | <source>isLayerOutlined("layer") -> bool |
2606 | |||
2607 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
2608 | that the layer "layer" is outlined, a value of False means that the layer |
||
2609 | "layer" is normal. |
||
2610 | |||
2611 | May raise NotFoundError if the layer can't be found. |
||
2612 | May raise ValueError if the layer name isn't acceptable. |
||
2613 | </source> |
||
7561 | mrdocs | 2614 | <translation>isLayerOutlined("layer") -> bool |
2615 | |||
2616 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
2617 | that the layer "layer" is outlined, a value of False means that the layer |
||
2618 | "layer" is normal. |
||
2619 | |||
2620 | May raise NotFoundError if the layer can't be found. |
||
2621 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2622 | </message> |
2623 | <message> |
||
7919 | mrdocs | 2624 | <location filename="" line="7471221"/> |
7508 | cbradney | 2625 | <source>isLayerFlow("layer") -> bool |
2626 | |||
2627 | Returns whether text flows around objects on layer "layer", a value of True means |
||
2628 | that text flows around, a value of False means that the text does not flow around. |
||
2629 | |||
2630 | May raise NotFoundError if the layer can't be found. |
||
2631 | May raise ValueError if the layer name isn't acceptable. |
||
2632 | </source> |
||
7561 | mrdocs | 2633 | <translation>isLayerFlow("layer") -> bool |
2634 | |||
2635 | Returns whether text flows around objects on layer "layer", a value of True means |
||
2636 | that text flows around, a value of False means that the text does not flow around. |
||
2637 | |||
2638 | May raise NotFoundError if the layer can't be found. |
||
2639 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2640 | </message> |
2641 | <message> |
||
7919 | mrdocs | 2642 | <location filename="" line="7471221"/> |
7508 | cbradney | 2643 | <source>getLayerBlendmode("layer") -> int |
2644 | |||
2645 | Returns the "layer" layer blendmode, |
||
2646 | |||
2647 | May raise NotFoundError if the layer can't be found. |
||
2648 | May raise ValueError if the layer name isn't acceptable. |
||
2649 | </source> |
||
7561 | mrdocs | 2650 | <translation>getLayerBlendmode("layer") -> int |
2651 | |||
2652 | Returns the "layer" layer blendmode, |
||
2653 | |||
2654 | May raise NotFoundError if the layer can't be found. |
||
2655 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2656 | </message> |
2657 | <message> |
||
7919 | mrdocs | 2658 | <location filename="" line="7471221"/> |
7508 | cbradney | 2659 | <source>getLayerTransparency("layer") -> float |
2660 | |||
2661 | Returns the "layer" layer transparency, |
||
2662 | |||
2663 | May raise NotFoundError if the layer can't be found. |
||
2664 | May raise ValueError if the layer name isn't acceptable. |
||
2665 | </source> |
||
7561 | mrdocs | 2666 | <translation>getLayerTransparency("layer") -> float |
2667 | |||
2668 | Returns the "layer" layer transparency, |
||
2669 | |||
2670 | May raise NotFoundError if the layer can't be found. |
||
2671 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7508 | cbradney | 2672 | </message> |
2673 | <message> |
||
7919 | mrdocs | 2674 | <location filename="" line="7471221"/> |
7508 | cbradney | 2675 | <source>textFlowMode("name" [, state]) |
2676 | |||
2677 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
2678 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
2679 | Setting "state" to 0 will disable text flow. |
||
2680 | Setting "state" to 1 will make text flow around object frame. |
||
2681 | Setting "state" to 2 will make text flow around bounding box. |
||
2682 | Setting "state" to 3 will make text flow around contour line. |
||
2683 | If "state" is not passed, text flow is toggled. |
||
2684 | </source> |
||
7561 | mrdocs | 2685 | <translation>textFlowMode("name" [, state]) |
2686 | |||
2687 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
2688 | Called with parameters string name and optional int "state" (0 <= state <= 3).(new line) |
||
2689 | Setting "state" to 0 will disable text flow. |
||
2690 | Setting "state" to 1 will make text flow around object frame. |
||
2691 | Setting "state" to 2 will make text flow around bounding box. |
||
2692 | Setting "state" to 3 will make text flow around contour line. |
||
2693 | If "state" is not passed, text flow is toggled.</translation> |
||
7508 | cbradney | 2694 | </message> |
2695 | <message> |
||
7919 | mrdocs | 2696 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2697 | <source>duplicateObject(["name"]) -> string |
7508 | cbradney | 2698 | |
7561 | mrdocs | 2699 | creates a Duplicate of the selected Object (or Selection Group). |
7508 | cbradney | 2700 | </source> |
7561 | mrdocs | 2701 | <translation>duplicateObject(["name"]) -> string |
2702 | |||
2703 | creates a Duplicate of the selected Object (or Selection Group).</translation> |
||
7508 | cbradney | 2704 | </message> |
2705 | <message> |
||
7919 | mrdocs | 2706 | <location filename="" line="7471221"/> |
7508 | cbradney | 2707 | <source>setFillTransparency(transparency, ["name"]) |
2708 | |||
2709 | Sets the fill transparency of the object "name" to transparency |
||
2710 | is the name of one of the defined colors. If "name" is not given the |
||
2711 | currently selected item is used. |
||
2712 | </source> |
||
7561 | mrdocs | 2713 | <translation>setFillTransparency(transparency, ["name"]) |
2714 | |||
2715 | Sets the fill transparency of the object "name" to transparency |
||
2716 | is the name of one of the defined colors. If "name" is not given the |
||
2717 | currently selected item is used.</translation> |
||
7508 | cbradney | 2718 | </message> |
2719 | <message> |
||
7919 | mrdocs | 2720 | <location filename="" line="7471221"/> |
7508 | cbradney | 2721 | <source>setFillBlendmode(blendmode, ["name"]) |
2722 | |||
2723 | Sets the fill blendmode of the object "name" to blendmode |
||
2724 | is the name of one of the defined colors. If "name" is not given the |
||
2725 | currently selected item is used. |
||
2726 | </source> |
||
7561 | mrdocs | 2727 | <translation>setFillBlendmode(blendmode, ["name"]) |
2728 | |||
2729 | Sets the fill blendmode of the object "name" to blendmode |
||
2730 | is the name of one of the defined colors. If "name" is not given the |
||
2731 | currently selected item is used.</translation> |
||
7508 | cbradney | 2732 | </message> |
2733 | <message> |
||
7919 | mrdocs | 2734 | <location filename="" line="7471221"/> |
7508 | cbradney | 2735 | <source>setLineTransparency(transparency, ["name"]) |
2736 | |||
2737 | Sets the line transparency of the object "name" to transparency |
||
2738 | is the name of one of the defined colors. If "name" is not given the |
||
2739 | currently selected item is used. |
||
2740 | </source> |
||
7561 | mrdocs | 2741 | <translation>setLineTransparency(transparency, ["name"]) |
2742 | |||
2743 | Sets the line transparency of the object "name" to transparency |
||
2744 | is the name of one of the defined colors. If "name" is not given the |
||
2745 | currently selected item is used.</translation> |
||
7508 | cbradney | 2746 | </message> |
2747 | <message> |
||
7919 | mrdocs | 2748 | <location filename="" line="7471221"/> |
7508 | cbradney | 2749 | <source>setLineBlendmode(blendmode, ["name"]) |
2750 | |||
2751 | Sets the line blendmode of the object "name" to blendmode |
||
2752 | is the name of one of the defined colors. If "name" is not given the |
||
2753 | currently selected item is used. |
||
2754 | </source> |
||
7561 | mrdocs | 2755 | <translation>setLineBlendmode(blendmode, ["name"]) |
2756 | |||
2757 | Sets the line blendmode of the object "name" to blendmode |
||
2758 | is the name of one of the defined colors. If "name" is not given the |
||
2759 | currently selected item is used.</translation> |
||
7508 | cbradney | 2760 | </message> |
2761 | <message> |
||
7919 | mrdocs | 2762 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2763 | <source>setInfo("author", "info", "description") -> bool |
2764 | |||
2765 | Sets the document information. "Author", "Info", "Description" are |
||
2766 | strings. |
||
2767 | </source> |
||
2768 | <translation>setInfo("author", "info", "description") -> bool |
||
2769 | |||
2770 | Sets the document information. "Author", "Info", "Description" are |
||
2771 | strings.</translation> |
||
2772 | </message> |
||
2773 | <message> |
||
7919 | mrdocs | 2774 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2775 | <source>getPageType() -> integer |
2776 | |||
2777 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
2778 | </source> |
||
7919 | mrdocs | 2779 | <translation>getPageType() -> integerReturns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page</translation> |
7561 | mrdocs | 2780 | </message> |
2781 | <message> |
||
7919 | mrdocs | 2782 | <location filename="" line="7471221"/> |
7508 | cbradney | 2783 | <source>getTextLines(["name"]) -> integer |
2784 | |||
2785 | Returns the number of lines of the text in the text frame "name". |
||
2786 | If "name" is not given the currently selected item is used. |
||
2787 | </source> |
||
7561 | mrdocs | 2788 | <translation>getTextLines(["name"]) -> integer |
2789 | |||
2790 | Returns the number of lines of the text in the text frame "name". |
||
2791 | If "name" is not given the currently selected item is used.</translation> |
||
7508 | cbradney | 2792 | </message> |
2793 | <message> |
||
7919 | mrdocs | 2794 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2795 | <source>defineColor("name", c, m, y, k) |
2796 | |||
2797 | Defines a new color "name". The color Value is defined via four components: |
||
2798 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
2799 | the range from 0 to 255. |
||
2800 | |||
2801 | May raise ValueError if an invalid color name is specified. |
||
2802 | </source> |
||
2803 | <translation>defineColor("name", c, m, y, k) |
||
2804 | |||
2805 | Defines a new color "name". The color Value is defined via four components: |
||
2806 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
2807 | the range from 0 to 255. |
||
2808 | |||
2809 | May raise ValueError if an invalid color name is specified.</translation> |
||
2810 | </message> |
||
2811 | <message> |
||
7919 | mrdocs | 2812 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2813 | <source>getCornerRadius(["name"]) -> integer |
2814 | |||
2815 | Returns the corner radius of the object "name". The radius is |
||
2816 | expressed in points. If "name" is not given the currently |
||
2817 | selected item is used. |
||
2818 | </source> |
||
2819 | <translation>getCornerRadius(["name"]) -> integer |
||
2820 | |||
2821 | Returns the corner radius of the object "name". The radius is |
||
2822 | expressed in points. If "name" is not given the currently |
||
2823 | selected item is used.</translation> |
||
2824 | </message> |
||
2825 | <message> |
||
7919 | mrdocs | 2826 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2827 | <source>getPosition(["name"]) -> (x,y) |
2828 | |||
2829 | Returns a (x, y) tuple with the position of the object "name". |
||
2830 | If "name" is not given the currently selected item is used. |
||
2831 | The position is expressed in the actual measurement unit of the document |
||
2832 | - see UNIT_<type> for reference. |
||
2833 | </source> |
||
2834 | <translation>getPosition(["name"]) -> (x,y) |
||
2835 | |||
2836 | Returns a (x, y) tuple with the position of the object "name". |
||
2837 | If "name" is not given the currently selected item is used. |
||
2838 | The position is expressed in the actual measurement unit of the document |
||
2839 | - see UNIT_<type> for reference.</translation> |
||
2840 | </message> |
||
2841 | <message> |
||
7919 | mrdocs | 2842 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2843 | <source>rotateObjectAbs(rot [, "name"]) |
2844 | |||
2845 | Sets the rotation of the object "name" to "rot". Positive values |
||
2846 | mean counter clockwise rotation. If "name" is not given the currently |
||
2847 | selected item is used. |
||
2848 | </source> |
||
2849 | <translation>rotateObjectAbs(rot [, "name"]) |
||
2850 | |||
2851 | Sets the rotation of the object "name" to "rot". Positive values |
||
2852 | mean counter clockwise rotation. If "name" is not given the currently |
||
2853 | selected item is used.</translation> |
||
2854 | </message> |
||
2855 | <message> |
||
7919 | mrdocs | 2856 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2857 | <source>setLayerPrintable("layer", printable) |
2858 | |||
2859 | Sets the layer "layer" to be printable or not. If is the |
||
2860 | printable set to false the layer won't be printed. |
||
2861 | |||
2862 | May raise NotFoundError if the layer can't be found. |
||
2863 | May raise ValueError if the layer name isn't acceptable. |
||
2864 | </source> |
||
2865 | <translation>setLayerPrintable("layer", printable) |
||
2866 | |||
2867 | Sets the layer "layer" to be printable or not. If is the |
||
2868 | printable set to false the layer won't be printed. |
||
2869 | |||
2870 | May raise NotFoundError if the layer can't be found. |
||
2871 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
2872 | </message> |
||
2873 | <message> |
||
7919 | mrdocs | 2874 | <location filename="" line="7471221"/> |
7561 | mrdocs | 2875 | <source>isLayerVisible("layer") -> bool |
2876 | |||
2877 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2878 | that the layer "layer" is visible, a value of False means that the layer |
||
2879 | "layer" is invisible. |
||
2880 | |||
2881 | May raise NotFoundError if the layer can't be found. |
||
2882 | May raise ValueError if the layer name isn't acceptable. |
||
2883 | </source> |
||
2884 | <translation>isLayerVisible("layer") -> bool |
||
2885 | |||
2886 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2887 | that the layer "layer" is visible, a value of False means that the layer |
||
2888 | "layer" is invisible. |
||
2889 | |||
2890 | May raise NotFoundError if the layer can't be found. |
||
2891 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
2892 | </message> |
||
2893 | <message> |
||
7919 | mrdocs | 2894 | <location filename="" line="7471221"/> |
7508 | cbradney | 2895 | <source>insertText("text", pos, ["name"]) |
2896 | |||
2897 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2898 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2899 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2900 | not given the currently selected Item is used. |
||
2901 | |||
2902 | May throw IndexError for an insertion out of bounds. |
||
2903 | </source> |
||
7561 | mrdocs | 2904 | <translation>nsertText("text", pos, ["name"]) |
2905 | |||
2906 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2907 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2908 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2909 | not given the currently selected Item is used. |
||
2910 | |||
2911 | May throw IndexError for an insertion out of bounds.</translation> |
||
7508 | cbradney | 2912 | </message> |
1135 | cbradney | 2913 | </context> |
2914 | <context> |
||
192 | Franz | 2915 | <name>About</name> |
2916 | <message> |
||
7919 | mrdocs | 2917 | <location filename="" line="7471221"/> |
192 | Franz | 2918 | <source>Contributions from:</source> |
2919 | <translation>Beiträge von:</translation> |
||
2920 | </message> |
||
2921 | <message> |
||
7919 | mrdocs | 2922 | <location filename="" line="7471221"/> |
341 | Franz | 2923 | <source>&About</source> |
345 | Franz | 2924 | <translation>Ü&ber</translation> |
341 | Franz | 2925 | </message> |
2926 | <message> |
||
7919 | mrdocs | 2927 | <location filename="" line="7471221"/> |
341 | Franz | 2928 | <source>A&uthors</source> |
345 | Franz | 2929 | <translation>A&utoren</translation> |
341 | Franz | 2930 | </message> |
2931 | <message> |
||
7919 | mrdocs | 2932 | <location filename="" line="7471221"/> |
341 | Franz | 2933 | <source>&Translations</source> |
345 | Franz | 2934 | <translation>Über&setzungen</translation> |
341 | Franz | 2935 | </message> |
2936 | <message> |
||
7919 | mrdocs | 2937 | <location filename="" line="7471221"/> |
341 | Franz | 2938 | <source>&Online</source> |
345 | Franz | 2939 | <translation>&Online</translation> |
341 | Franz | 2940 | </message> |
2941 | <message> |
||
7919 | mrdocs | 2942 | <location filename="" line="7471221"/> |
341 | Franz | 2943 | <source>&Close</source> |
2913 | mrdocs | 2944 | <translation>Sch&ließen</translation> |
341 | Franz | 2945 | </message> |
407 | Franz | 2946 | <message> |
7919 | mrdocs | 2947 | <location filename="" line="7471221"/> |
418 | Franz | 2948 | <source>Development Team:</source> |
3426 | cbradney | 2949 | <translation>Entwicklerteam:</translation> |
418 | Franz | 2950 | </message> |
2951 | <message> |
||
7919 | mrdocs | 2952 | <location filename="" line="7471221"/> |
418 | Franz | 2953 | <source>Official Documentation:</source> |
444 | fschmid | 2954 | <translation>Offizielle Dokumentation:</translation> |
418 | Franz | 2955 | </message> |
2956 | <message> |
||
7919 | mrdocs | 2957 | <location filename="" line="7471221"/> |
418 | Franz | 2958 | <source>Other Documentation:</source> |
444 | fschmid | 2959 | <translation>Andere Dokumentationen:</translation> |
418 | Franz | 2960 | </message> |
2961 | <message> |
||
7919 | mrdocs | 2962 | <location filename="" line="7471221"/> |
418 | Franz | 2963 | <source>Homepage</source> |
444 | fschmid | 2964 | <translation>Homepage</translation> |
418 | Franz | 2965 | </message> |
2966 | <message> |
||
7919 | mrdocs | 2967 | <location filename="" line="7471221"/> |
418 | Franz | 2968 | <source>Online Reference</source> |
444 | fschmid | 2969 | <translation>Onlinereferenz</translation> |
418 | Franz | 2970 | </message> |
2971 | <message> |
||
7919 | mrdocs | 2972 | <location filename="" line="7471221"/> |
418 | Franz | 2973 | <source>Bugs and Feature Requests</source> |
444 | fschmid | 2974 | <translation>Fehler und Featurewünsche</translation> |
418 | Franz | 2975 | </message> |
2976 | <message> |
||
7919 | mrdocs | 2977 | <location filename="" line="7471221"/> |
418 | Franz | 2978 | <source>Mailing List</source> |
444 | fschmid | 2979 | <translation>Mailingliste</translation> |
418 | Franz | 2980 | </message> |
444 | fschmid | 2981 | <message> |
7919 | mrdocs | 2982 | <location filename="" line="7471221"/> |
454 | fschmid | 2983 | <source>Official Translations and Translators:</source> |
550 | fschmid | 2984 | <translation>Offizielle Übersetzungen und Übersetzer:</translation> |
454 | fschmid | 2985 | </message> |
2986 | <message> |
||
7919 | mrdocs | 2987 | <location filename="" line="7471221"/> |
454 | fschmid | 2988 | <source>Previous Translation Contributors:</source> |
550 | fschmid | 2989 | <translation>Ehemalige Übersetzer:</translation> |
454 | fschmid | 2990 | </message> |
769 | cbradney | 2991 | <message> |
7919 | mrdocs | 2992 | <location filename="" line="7471221"/> |
769 | cbradney | 2993 | <source>About Scribus %1</source> |
1135 | cbradney | 2994 | <translation>Über Scribus %1</translation> |
769 | cbradney | 2995 | </message> |
776 | fschmid | 2996 | <message> |
7919 | mrdocs | 2997 | <location filename="" line="7471221"/> |
2913 | mrdocs | 2998 | <source>Wiki</source> |
2999 | <translation>Wiki</translation> |
||
2576 | cbradney | 3000 | </message> |
3001 | <message> |
||
7919 | mrdocs | 3002 | <location filename="" line="7471221"/> |
3824 | cbradney | 3003 | <source>%1 %2 %3</source> |
3869 | cbradney | 3004 | <translation>%1 %2 %3</translation> |
3824 | cbradney | 3005 | </message> |
3006 | <message> |
||
7919 | mrdocs | 3007 | <location filename="" line="7471221"/> |
3824 | cbradney | 3008 | <source>%3-%2-%1 %4 %5</source> |
3869 | cbradney | 3009 | <translation>%3-%2-%1 %4 %5</translation> |
3824 | cbradney | 3010 | </message> |
3011 | <message> |
||
7919 | mrdocs | 3012 | <location filename="" line="7471221"/> |
3824 | cbradney | 3013 | <source>Using Ghostscript version %1</source> |
3869 | cbradney | 3014 | <translation>Ghostscript-Version: %1</translation> |
3824 | cbradney | 3015 | </message> |
3016 | <message> |
||
7919 | mrdocs | 3017 | <location filename="" line="7471221"/> |
3824 | cbradney | 3018 | <source>No Ghostscript version available</source> |
3869 | cbradney | 3019 | <translation>Ghostscript ist nicht vorhanden</translation> |
3824 | cbradney | 3020 | </message> |
3021 | <message> |
||
7919 | mrdocs | 3022 | <location filename="" line="7471221"/> |
3824 | cbradney | 3023 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
3869 | cbradney | 3024 | <translation><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></translation> |
3824 | cbradney | 3025 | </message> |
3026 | <message> |
||
7919 | mrdocs | 3027 | <location filename="" line="7471221"/> |
3824 | cbradney | 3028 | <source>Build ID:</source> |
3869 | cbradney | 3029 | <translation>Build ID:</translation> |
3824 | cbradney | 3030 | </message> |
3031 | <message> |
||
7919 | mrdocs | 3032 | <location filename="" line="7471221"/> |
4759 | cbradney | 3033 | <source>Mac OS&#174; X Aqua Port:</source> |
7919 | mrdocs | 3034 | <translation>Mac OS&#174; X Aqua Portierung:</translation> |
4759 | cbradney | 3035 | </message> |
3036 | <message> |
||
7919 | mrdocs | 3037 | <location filename="" line="7471221"/> |
4759 | cbradney | 3038 | <source>Windows&#174; Port:</source> |
7919 | mrdocs | 3039 | <translation>Windows&#174; Portierung:</translation> |
4759 | cbradney | 3040 | </message> |
4850 | cbradney | 3041 | <message> |
7919 | mrdocs | 3042 | <location filename="" line="7471221"/> |
7426 | cbradney | 3043 | <source>Tango Project Icons:</source> |
7561 | mrdocs | 3044 | <translation>Icons aus dem Tango-Projekt:</translation> |
6261 | cbradney | 3045 | </message> |
7508 | cbradney | 3046 | <message> |
7919 | mrdocs | 3047 | <location filename="" line="7471221"/> |
7508 | cbradney | 3048 | <source>&Updates</source> |
7561 | mrdocs | 3049 | <translation>&Updates</translation> |
7508 | cbradney | 3050 | </message> |
3051 | <message> |
||
7919 | mrdocs | 3052 | <location filename="" line="7471221"/> |
7508 | cbradney | 3053 | <source>Check for &Updates</source> |
7561 | mrdocs | 3054 | <translation>Auf Updates über&prüfen</translation> |
7508 | cbradney | 3055 | </message> |
3056 | <message> |
||
7919 | mrdocs | 3057 | <location filename="" line="7471221"/> |
7508 | cbradney | 3058 | <source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected. The Windows version does not use fontconfig or CUPS libraries.</source> |
7561 | mrdocs | 3059 | <translation>Diese Leiste zeigt die Version, das Build-Datum und die kompilierte Unterstützung für Programmbibliotheken. C-C-T-F bedeutet im einzelnen: |
3060 | C= littleCMS C=CUPS, T=TIFF-Unterstützung, F=Fontconfig-Unterstützung. Der zusätzliche Buchstabe am Ende bezeichnet den Renderer, nämlich entweder C (Cairo) oder A (libart). Wird eine der Bibliotheken nicht unterstützt, steht statt dessen ein *. Hier wird auch die von Scribus gefundene Ghostscript-Version angezeigt. Die Windows-Version benutz weder fontconfig noch CUPS.</translation> |
||
7508 | cbradney | 3061 | </message> |
3062 | <message> |
||
7919 | mrdocs | 3063 | <location filename="" line="7471221"/> |
7508 | cbradney | 3064 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
7561 | mrdocs | 3065 | <translation>Auf Updates für Scribus überprüfen. Es werden keine Daten von Ihrem Computer übertragen.</translation> |
7508 | cbradney | 3066 | </message> |
7716 | cbradney | 3067 | <message> |
7919 | mrdocs | 3068 | <location filename="" line="7471221"/> |
7716 | cbradney | 3069 | <source>OS/2&#174;/eComStation&#8482; Port:</source> |
7919 | mrdocs | 3070 | <translation>OS/2&#174;/eComStation&#8482; Portierung:</translation> |
7716 | cbradney | 3071 | </message> |
192 | Franz | 3072 | </context> |
3073 | <context> |
||
3278 | cbradney | 3074 | <name>AboutPlugins</name> |
3075 | <message> |
||
7919 | mrdocs | 3076 | <location filename="" line="7471221"/> |
4759 | cbradney | 3077 | <source>Filename:</source> |
4808 | cbradney | 3078 | <translation>Dateiname:</translation> |
4759 | cbradney | 3079 | </message> |
3080 | <message> |
||
7919 | mrdocs | 3081 | <location filename="" line="7471221"/> |
4759 | cbradney | 3082 | <source>Version:</source> |
4808 | cbradney | 3083 | <translation>Version:</translation> |
4759 | cbradney | 3084 | </message> |
3085 | <message> |
||
7919 | mrdocs | 3086 | <location filename="" line="7471221"/> |
4759 | cbradney | 3087 | <source>Enabled:</source> |
4808 | cbradney | 3088 | <translation>Aktiviert:</translation> |
4759 | cbradney | 3089 | </message> |
3090 | <message> |
||
7919 | mrdocs | 3091 | <location filename="" line="7471221"/> |
4759 | cbradney | 3092 | <source>Release Date:</source> |
4808 | cbradney | 3093 | <translation>Datum der Veröffentlichung:</translation> |
4759 | cbradney | 3094 | </message> |
3095 | <message> |
||
7919 | mrdocs | 3096 | <location filename="" line="7471221"/> |
4759 | cbradney | 3097 | <source>Description:</source> |
4808 | cbradney | 3098 | <translation>Beschreibung:</translation> |
4759 | cbradney | 3099 | </message> |
3100 | <message> |
||
7919 | mrdocs | 3101 | <location filename="" line="7471221"/> |
4759 | cbradney | 3102 | <source>Author(s):</source> |
4808 | cbradney | 3103 | <translation>Autor(en):</translation> |
4759 | cbradney | 3104 | </message> |
3105 | <message> |
||
7919 | mrdocs | 3106 | <location filename="" line="7471221"/> |
4759 | cbradney | 3107 | <source>Copyright:</source> |
4808 | cbradney | 3108 | <translation>Urheberrecht:</translation> |
4759 | cbradney | 3109 | </message> |
3110 | <message> |
||
7919 | mrdocs | 3111 | <location filename="" line="7471221"/> |
4759 | cbradney | 3112 | <source>License:</source> |
4808 | cbradney | 3113 | <translation>Lizenz:</translation> |
4759 | cbradney | 3114 | </message> |
3278 | cbradney | 3115 | </context> |
3116 | <context> |
||
3117 | <name>AboutPluginsBase</name> |
||
3118 | <message> |
||
7919 | mrdocs | 3119 | <location filename="" line="7471221"/> |
3278 | cbradney | 3120 | <source>Scribus: About Plug-ins</source> |
3426 | cbradney | 3121 | <translation>Scribus: Über die Plug-Ins</translation> |
3278 | cbradney | 3122 | </message> |
3123 | <message> |
||
7919 | mrdocs | 3124 | <location filename="" line="7471221"/> |
3278 | cbradney | 3125 | <source>&Close</source> |
3426 | cbradney | 3126 | <translation>Sch&ließen</translation> |
3278 | cbradney | 3127 | </message> |
3128 | <message> |
||
7919 | mrdocs | 3129 | <location filename="" line="7471221"/> |
3278 | cbradney | 3130 | <source>Alt+C</source> |
3426 | cbradney | 3131 | <translation>Alt+C</translation> |
3278 | cbradney | 3132 | </message> |
3133 | </context> |
||
3134 | <context> |
||
2576 | cbradney | 3135 | <name>ActionManager</name> |
3136 | <message> |
||
7919 | mrdocs | 3137 | <location filename="" line="7471221"/> |
2576 | cbradney | 3138 | <source>&New</source> |
3139 | <translation>&Neu</translation> |
||
3140 | </message> |
||
3141 | <message> |
||
7919 | mrdocs | 3142 | <location filename="" line="7471221"/> |
2576 | cbradney | 3143 | <source>&Open...</source> |
3144 | <translation>Ö&ffnen...</translation> |
||
3145 | </message> |
||
3146 | <message> |
||
7919 | mrdocs | 3147 | <location filename="" line="7471221"/> |
2576 | cbradney | 3148 | <source>&Close</source> |
2913 | mrdocs | 3149 | <translation>Sch&ließen</translation> |
2576 | cbradney | 3150 | </message> |
3151 | <message> |
||
7919 | mrdocs | 3152 | <location filename="" line="7471221"/> |
2576 | cbradney | 3153 | <source>&Save</source> |
2913 | mrdocs | 3154 | <translation>&Speichern</translation> |
2576 | cbradney | 3155 | </message> |
3156 | <message> |
||
7919 | mrdocs | 3157 | <location filename="" line="7471221"/> |
2576 | cbradney | 3158 | <source>Save &As...</source> |
3159 | <translation>Speichern &unter...</translation> |
||
3160 | </message> |
||
3161 | <message> |
||
7919 | mrdocs | 3162 | <location filename="" line="7471221"/> |
2576 | cbradney | 3163 | <source>Re&vert to Saved</source> |
3164 | <translation>Neu la&den</translation> |
||
3165 | </message> |
||
3166 | <message> |
||
7919 | mrdocs | 3167 | <location filename="" line="7471221"/> |
2576 | cbradney | 3168 | <source>Collect for O&utput...</source> |
2913 | mrdocs | 3169 | <translation>Für Aus&gabe sammeln...</translation> |
2576 | cbradney | 3170 | </message> |
3171 | <message> |
||
7919 | mrdocs | 3172 | <location filename="" line="7471221"/> |
2576 | cbradney | 3173 | <source>Get Text...</source> |
3174 | <translation>Text laden...</translation> |
||
3175 | </message> |
||
3176 | <message> |
||
7919 | mrdocs | 3177 | <location filename="" line="7471221"/> |
2576 | cbradney | 3178 | <source>Append &Text...</source> |
3179 | <translation>&Text anfügen...</translation> |
||
3180 | </message> |
||
3181 | <message> |
||
7919 | mrdocs | 3182 | <location filename="" line="7471221"/> |
2576 | cbradney | 3183 | <source>Get Image...</source> |
3184 | <translation>Bild laden...</translation> |
||
3185 | </message> |
||
3186 | <message> |
||
7919 | mrdocs | 3187 | <location filename="" line="7471221"/> |
2576 | cbradney | 3188 | <source>Save &Text...</source> |
3189 | <translation>&Text speichern...</translation> |
||
3190 | </message> |
||
3191 | <message> |
||
7919 | mrdocs | 3192 | <location filename="" line="7471221"/> |
2576 | cbradney | 3193 | <source>Save as P&DF...</source> |
3194 | <translation>Als &PDF speichern...</translation> |
||
3195 | </message> |
||
3196 | <message> |
||
7919 | mrdocs | 3197 | <location filename="" line="7471221"/> |
2576 | cbradney | 3198 | <source>Document &Setup...</source> |
4992 | cbradney | 3199 | <translation>Dokument &einrichten...</translation> |
2576 | cbradney | 3200 | </message> |
3201 | <message> |
||
7919 | mrdocs | 3202 | <location filename="" line="7471221"/> |
2576 | cbradney | 3203 | <source>&Print...</source> |
3204 | <translation>&Drucken...</translation> |
||
3205 | </message> |
||
3206 | <message> |
||
7919 | mrdocs | 3207 | <location filename="" line="7471221"/> |
2576 | cbradney | 3208 | <source>&Quit</source> |
3209 | <translation>&Beenden</translation> |
||
3210 | </message> |
||
3211 | <message> |
||
7919 | mrdocs | 3212 | <location filename="" line="7471221"/> |
2576 | cbradney | 3213 | <source>&Undo</source> |
3214 | <translation>&Rückgängig</translation> |
||
3215 | </message> |
||
3216 | <message> |
||
7919 | mrdocs | 3217 | <location filename="" line="7471221"/> |
2576 | cbradney | 3218 | <source>&Redo</source> |
3219 | <translation>Wieder&herstellen</translation> |
||
3220 | </message> |
||
3221 | <message> |
||
7919 | mrdocs | 3222 | <location filename="" line="7471221"/> |
2576 | cbradney | 3223 | <source>&Item Action Mode</source> |
3224 | <translation>&Objektbezogener Modus</translation> |
||
3225 | </message> |
||
3226 | <message> |
||
7919 | mrdocs | 3227 | <location filename="" line="7471221"/> |
2576 | cbradney | 3228 | <source>Cu&t</source> |
3229 | <translation>&Ausschneiden</translation> |
||
3230 | </message> |
||
3231 | <message> |
||
7919 | mrdocs | 3232 | <location filename="" line="7471221"/> |
2576 | cbradney | 3233 | <source>&Copy</source> |
3234 | <translation>&Kopieren</translation> |
||
3235 | </message> |
||
3236 | <message> |
||
7919 | mrdocs | 3237 | <location filename="" line="7471221"/> |
2576 | cbradney | 3238 | <source>&Paste</source> |
3239 | <translation>Einf&ügen</translation> |
||
3240 | </message> |
||
3241 | <message> |
||
7919 | mrdocs | 3242 | <location filename="" line="7471221"/> |
2576 | cbradney | 3243 | <source>Select &All</source> |
3244 | <translation>Alles aus&wählen</translation> |
||
3245 | </message> |
||
3246 | <message> |
||
7919 | mrdocs | 3247 | <location filename="" line="7471221"/> |
2576 | cbradney | 3248 | <source>&Deselect All</source> |
7561 | mrdocs | 3249 | <translation>Alles auswählen &rückgängig machen</translation> |
2576 | cbradney | 3250 | </message> |
3251 | <message> |
||
7919 | mrdocs | 3252 | <location filename="" line="7471221"/> |
2576 | cbradney | 3253 | <source>&Search/Replace...</source> |
7919 | mrdocs | 3254 | <translation>&Suchen und Ersetzen...</translation> |
2576 | cbradney | 3255 | </message> |
3256 | <message> |
||
7919 | mrdocs | 3257 | <location filename="" line="7471221"/> |
2576 | cbradney | 3258 | <source>Edit Image...</source> |
3259 | <translation>Bild bearbeiten...</translation> |
||
3260 | </message> |
||
3261 | <message> |
||
7919 | mrdocs | 3262 | <location filename="" line="7471221"/> |
2576 | cbradney | 3263 | <source>C&olors...</source> |
3264 | <translation>&Farben...</translation> |
||
3265 | </message> |
||
3266 | <message> |
||
7919 | mrdocs | 3267 | <location filename="" line="7471221"/> |
2576 | cbradney | 3268 | <source>&Paragraph Styles...</source> |
7561 | mrdocs | 3269 | <translation>&Absatzstile...</translation> |
2576 | cbradney | 3270 | </message> |
3271 | <message> |
||
7919 | mrdocs | 3272 | <location filename="" line="7471221"/> |
2576 | cbradney | 3273 | <source>&Line Styles...</source> |
2599 | cbradney | 3274 | <translation>&Linienstile...</translation> |
2576 | cbradney | 3275 | </message> |
3276 | <message> |
||
7919 | mrdocs | 3277 | <location filename="" line="7471221"/> |
2576 | cbradney | 3278 | <source>&Master Pages...</source> |
3279 | <translation>&Musterseiten...</translation> |
||
3280 | </message> |
||
3281 | <message> |
||
7919 | mrdocs | 3282 | <location filename="" line="7471221"/> |
2576 | cbradney | 3283 | <source>P&references...</source> |
7561 | mrdocs | 3284 | <translation>Allgemeine &Einstellungen...</translation> |
2576 | cbradney | 3285 | </message> |
3286 | <message> |
||
7919 | mrdocs | 3287 | <location filename="" line="7471221"/> |
2576 | cbradney | 3288 | <source>%1 pt</source> |
3289 | <translation>%1 pt</translation> |
||
3290 | </message> |
||
3291 | <message> |
||
7919 | mrdocs | 3292 | <location filename="" line="7471221"/> |
2576 | cbradney | 3293 | <source>&Other...</source> |
3294 | <translation>&Andere...</translation> |
||
3295 | </message> |
||
3296 | <message> |
||
7919 | mrdocs | 3297 | <location filename="" line="7471221"/> |
2576 | cbradney | 3298 | <source>&Left</source> |
3299 | <translation>&Links</translation> |
||
3300 | </message> |
||
3301 | <message> |
||
7919 | mrdocs | 3302 | <location filename="" line="7471221"/> |
2576 | cbradney | 3303 | <source>&Center</source> |
3304 | <translation>&Zentriert</translation> |
||
3305 | </message> |
||
3306 | <message> |
||
7919 | mrdocs | 3307 | <location filename="" line="7471221"/> |
2576 | cbradney | 3308 | <source>&Right</source> |
3309 | <translation>&Rechts</translation> |
||
3310 | </message> |
||
3311 | <message> |
||
7919 | mrdocs | 3312 | <location filename="" line="7471221"/> |
2576 | cbradney | 3313 | <source>&Block</source> |
3314 | <translation>&Blocksatz</translation> |
||
3315 | </message> |
||
3316 | <message> |
||
7919 | mrdocs | 3317 | <location filename="" line="7471221"/> |
2576 | cbradney | 3318 | <source>&Forced</source> |
3319 | <translation>&Erzwungener Blocksatz</translation> |
||
3320 | </message> |
||
3321 | <message> |
||
7919 | mrdocs | 3322 | <location filename="" line="7471221"/> |
2576 | cbradney | 3323 | <source>&%1 %</source> |
3324 | <translation>&%1 %</translation> |
||
3325 | </message> |
||
3326 | <message> |
||
7919 | mrdocs | 3327 | <location filename="" line="7471221"/> |
2576 | cbradney | 3328 | <source>&Normal</source> |
3329 | <translation>&Normal</translation> |
||
3330 | </message> |
||
3331 | <message> |
||
7919 | mrdocs | 3332 | <location filename="" line="7471221"/> |
2576 | cbradney | 3333 | <source>&Underline</source> |
3334 | <translation>&Unterstrichen</translation> |
||
3335 | </message> |
||
3336 | <message> |
||
7919 | mrdocs | 3337 | <location filename="" line="7471221"/> |
2576 | cbradney | 3338 | <source>Underline &Words</source> |
2913 | mrdocs | 3339 | <translation>Wörter unterst&richen</translation> |
2576 | cbradney | 3340 | </message> |
3341 | <message> |
||
7919 | mrdocs | 3342 | <location filename="" line="7471221"/> |
2576 | cbradney | 3343 | <source>&Strike Through</source> |
3344 | <translation>&Durchgestrichen</translation> |
||
3345 | </message> |
||
3346 | <message> |
||
7919 | mrdocs | 3347 | <location filename="" line="7471221"/> |
2576 | cbradney | 3348 | <source>&All Caps</source> |
2913 | mrdocs | 3349 | <translation>&Großbuchstaben</translation> |
2576 | cbradney | 3350 | </message> |
3351 | <message> |
||
7919 | mrdocs | 3352 | <location filename="" line="7471221"/> |
2576 | cbradney | 3353 | <source>Small &Caps</source> |
3354 | <translation>&Kapitälchen</translation> |
||
3355 | </message> |
||
3356 | <message> |
||
7919 | mrdocs | 3357 | <location filename="" line="7471221"/> |
2576 | cbradney | 3358 | <source>Su&perscript</source> |
3359 | <translation>&Hochgestellt</translation> |
||
3360 | </message> |
||
3361 | <message> |
||
7919 | mrdocs | 3362 | <location filename="" line="7471221"/> |
2576 | cbradney | 3363 | <source>Su&bscript</source> |
3364 | <translation>&Tiefgestellt</translation> |
||
3365 | </message> |
||
3366 | <message> |
||
7919 | mrdocs | 3367 | <location filename="" line="7471221"/> |
2576 | cbradney | 3368 | <source>S&hadow</source> |
3369 | <translation>&Schatten</translation> |
||
3370 | </message> |
||
3371 | <message> |
||
7919 | mrdocs | 3372 | <location filename="" line="7471221"/> |
2576 | cbradney | 3373 | <source>&Image Effects</source> |
5102 | mrdocs | 3374 | <translation>&Bildeffekte</translation> |
2576 | cbradney | 3375 | </message> |
3376 | <message> |
||
7919 | mrdocs | 3377 | <location filename="" line="7471221"/> |
2576 | cbradney | 3378 | <source>&Tabulators...</source> |
3379 | <translation>&Tabulatoren...</translation> |
||
3380 | </message> |
||
3381 | <message> |
||
7919 | mrdocs | 3382 | <location filename="" line="7471221"/> |
2576 | cbradney | 3383 | <source>D&uplicate</source> |
3384 | <translation>&Duplizieren</translation> |
||
3385 | </message> |
||
3386 | <message> |
||
7919 | mrdocs | 3387 | <location filename="" line="7471221"/> |
2576 | cbradney | 3388 | <source>&Multiple Duplicate</source> |
7561 | mrdocs | 3389 | <translation>&Mehrfach duplizieren</translation> |
2576 | cbradney | 3390 | </message> |
3391 | <message> |
||
7919 | mrdocs | 3392 | <location filename="" line="7471221"/> |
2576 | cbradney | 3393 | <source>&Delete</source> |
3394 | <translation>&Löschen</translation> |
||
3395 | </message> |
||
3396 | <message> |
||
7919 | mrdocs | 3397 | <location filename="" line="7471221"/> |
2576 | cbradney | 3398 | <source>&Group</source> |
3399 | <translation>&Gruppieren</translation> |
||
3400 | </message> |
||
3401 | <message> |
||
7919 | mrdocs | 3402 | <location filename="" line="7471221"/> |
2576 | cbradney | 3403 | <source>&Ungroup</source> |
7561 | mrdocs | 3404 | <translation>Gruppe auf&lösen</translation> |
2576 | cbradney | 3405 | </message> |
3406 | <message> |
||
7919 | mrdocs | 3407 | <location filename="" line="7471221"/> |
2576 | cbradney | 3408 | <source>Is &Locked</source> |
2913 | mrdocs | 3409 | <translation>Ge&sperrt</translation> |
2576 | cbradney | 3410 | </message> |
3411 | <message> |
||
7919 | mrdocs | 3412 | <location filename="" line="7471221"/> |
2576 | cbradney | 3413 | <source>Si&ze is Locked</source> |
3414 | <translation>Größen&änderung gesperrt</translation> |
||
3415 | </message> |
||
3416 | <message> |
||
7919 | mrdocs | 3417 | <location filename="" line="7471221"/> |
2576 | cbradney | 3418 | <source>Lower to &Bottom</source> |
3419 | <translation>In den &Hintergrund</translation> |
||
3420 | </message> |
||
3421 | <message> |
||
7919 | mrdocs | 3422 | <location filename="" line="7471221"/> |
2576 | cbradney | 3423 | <source>Raise to &Top</source> |
3424 | <translation>In den &Vordergrund</translation> |
||
3425 | </message> |
||
3426 | <message> |
||
7919 | mrdocs | 3427 | <location filename="" line="7471221"/> |
2576 | cbradney | 3428 | <source>&Lower</source> |
3429 | <translation>Weiter nach hin&ten</translation> |
||
3430 | </message> |
||
3431 | <message> |
||
7919 | mrdocs | 3432 | <location filename="" line="7471221"/> |
2576 | cbradney | 3433 | <source>&Raise</source> |
3434 | <translation>Weiter nach vor&n</translation> |
||
3435 | </message> |
||
3436 | <message> |
||
7919 | mrdocs | 3437 | <location filename="" line="7471221"/> |
2576 | cbradney | 3438 | <source>Send to S&crapbook</source> |
3439 | <translation>In &Bibliothek speichern</translation> |
||
3440 | </message> |
||
3441 | <message> |
||
7919 | mrdocs | 3442 | <location filename="" line="7471221"/> |
2576 | cbradney | 3443 | <source>&Attributes...</source> |
7561 | mrdocs | 3444 | <translation>&Attribute...</translation> |
2576 | cbradney | 3445 | </message> |
3446 | <message> |
||
7919 | mrdocs | 3447 | <location filename="" line="7471221"/> |
2576 | cbradney | 3448 | <source>I&mage Visible</source> |
3449 | <translation>Bild an&zeigen</translation> |
||
3450 | </message> |
||
3451 | <message> |
||
7919 | mrdocs | 3452 | <location filename="" line="7471221"/> |
2576 | cbradney | 3453 | <source>&Update Image</source> |
3454 | <translation>Bild &aktualisieren</translation> |
||
3455 | </message> |
||
3456 | <message> |
||
7919 | mrdocs | 3457 | <location filename="" line="7471221"/> |
2576 | cbradney | 3458 | <source>Adjust Frame to Image</source> |
3459 | <translation>Rahmen an Bild anpassen</translation> |
||
3460 | </message> |
||
3461 | <message> |
||
7919 | mrdocs | 3462 | <location filename="" line="7471221"/> |
2576 | cbradney | 3463 | <source>Extended Image Properties</source> |
3426 | cbradney | 3464 | <translation>Erweiterte Bildeigenschaften</translation> |
2576 | cbradney | 3465 | </message> |
3466 | <message> |
||
7919 | mrdocs | 3467 | <location filename="" line="7471221"/> |
2576 | cbradney | 3468 | <source>&Low Resolution</source> |
3469 | <translation>&Niedrige Auflösung</translation> |
||
3470 | </message> |
||
3471 | <message> |
||
7919 | mrdocs | 3472 | <location filename="" line="7471221"/> |
2576 | cbradney | 3473 | <source>&Normal Resolution</source> |
3474 | <translation>Nor&male Auflösung</translation> |
||
3475 | </message> |
||
3476 | <message> |
||
7919 | mrdocs | 3477 | <location filename="" line="7471221"/> |
2576 | cbradney | 3478 | <source>&Full Resolution</source> |
3479 | <translation>&Hohe Auflösung</translation> |
||
3480 | </message> |
||
3481 | <message> |
||
7919 | mrdocs | 3482 | <location filename="" line="7471221"/> |
2576 | cbradney | 3483 | <source>Is PDF &Bookmark</source> |
3484 | <translation>Als PDF-&Lesezeichen verwenden</translation> |
||
3485 | </message> |
||
3486 | <message> |
||
7919 | mrdocs | 3487 | <location filename="" line="7471221"/> |
2576 | cbradney | 3488 | <source>Is PDF A&nnotation</source> |
3489 | <translation>Als PDF-&Anmerkung verwenden</translation> |
||
3490 | </message> |
||
3491 | <message> |
||
7919 | mrdocs | 3492 | <location filename="" line="7471221"/> |
2576 | cbradney | 3493 | <source>Annotation P&roperties</source> |
3494 | <translation>Eigenschaften der An&merkung</translation> |
||
3495 | </message> |
||
3496 | <message> |
||
7919 | mrdocs | 3497 | <location filename="" line="7471221"/> |
2576 | cbradney | 3498 | <source>Field P&roperties</source> |
3499 | <translation>&Eigenschaften des Feldes</translation> |
||
3500 | </message> |
||
3501 | <message> |
||
7919 | mrdocs | 3502 | <location filename="" line="7471221"/> |
2576 | cbradney | 3503 | <source>&Edit Shape...</source> |
3504 | <translation>&Form bearbeiten...</translation> |
||
3505 | </message> |
||
3506 | <message> |
||
7919 | mrdocs | 3507 | <location filename="" line="7471221"/> |
2576 | cbradney | 3508 | <source>&Attach Text to Path</source> |
3509 | <translation>Text an Pfad aus&richten</translation> |
||
3510 | </message> |
||
3511 | <message> |
||
7919 | mrdocs | 3512 | <location filename="" line="7471221"/> |
2576 | cbradney | 3513 | <source>&Detach Text from Path</source> |
3514 | <translation>Text von Pfad l&ösen</translation> |
||
3515 | </message> |
||
3516 | <message> |
||
7919 | mrdocs | 3517 | <location filename="" line="7471221"/> |
2576 | cbradney | 3518 | <source>&Combine Polygons</source> |
3519 | <translation>Polygone &kombinieren</translation> |
||
3520 | </message> |
||
3521 | <message> |
||
7919 | mrdocs | 3522 | <location filename="" line="7471221"/> |
2576 | cbradney | 3523 | <source>Split &Polygons</source> |
3524 | <translation>Polygone &teilen</translation> |
||
3525 | </message> |
||
3526 | <message> |
||
7919 | mrdocs | 3527 | <location filename="" line="7471221"/> |
2576 | cbradney | 3528 | <source>&Bezier Curve</source> |
7561 | mrdocs | 3529 | <translation>Bézier&kurve</translation> |
2576 | cbradney | 3530 | </message> |
3531 | <message> |
||
7919 | mrdocs | 3532 | <location filename="" line="7471221"/> |
2576 | cbradney | 3533 | <source>&Image Frame</source> |
7561 | mrdocs | 3534 | <translation>&Bildrahmen</translation> |
2576 | cbradney | 3535 | </message> |
3536 | <message> |
||
7919 | mrdocs | 3537 | <location filename="" line="7471221"/> |
2576 | cbradney | 3538 | <source>&Polygon</source> |
3539 | <translation>&Polygon</translation> |
||
3540 | </message> |
||
3541 | <message> |
||
7919 | mrdocs | 3542 | <location filename="" line="7471221"/> |
2576 | cbradney | 3543 | <source>&Text Frame</source> |
3544 | <translation>&Textrahmen</translation> |
||
3545 | </message> |
||
3546 | <message> |
||
7919 | mrdocs | 3547 | <location filename="" line="7471221"/> |
2576 | cbradney | 3548 | <source>&Glyph...</source> |
3549 | <translation>&Zeichen...</translation> |
||
3550 | </message> |
||
3551 | <message> |
||
7919 | mrdocs | 3552 | <location filename="" line="7471221"/> |
2576 | cbradney | 3553 | <source>Sample Text</source> |
3554 | <translation>Beispieltext</translation> |
||
3555 | </message> |
||
3556 | <message> |
||
7919 | mrdocs | 3557 | <location filename="" line="7471221"/> |
2576 | cbradney | 3558 | <source>&Insert...</source> |
3559 | <translation>Ein&fügen...</translation> |
||
3560 | </message> |
||
3561 | <message> |
||
7919 | mrdocs | 3562 | <location filename="" line="7471221"/> |
2576 | cbradney | 3563 | <source>Im&port...</source> |
3564 | <translation>&Importieren...</translation> |
||
3565 | </message> |
||
3566 | <message> |
||
7919 | mrdocs | 3567 | <location filename="" line="7471221"/> |
2576 | cbradney | 3568 | <source>&Delete...</source> |
3569 | <translation>&Löschen...</translation> |
||
3570 | </message> |
||
3571 | <message> |
||
7919 | mrdocs | 3572 | <location filename="" line="7471221"/> |
2576 | cbradney | 3573 | <source>&Copy...</source> |
3574 | <translation>&Kopieren...</translation> |
||
3575 | </message> |
||
3576 | <message> |
||
7919 | mrdocs | 3577 | <location filename="" line="7471221"/> |
2576 | cbradney | 3578 | <source>&Move...</source> |
3579 | <translation>Ver&schieben...</translation> |
||
3580 | </message> |
||
3581 | <message> |
||
7919 | mrdocs | 3582 | <location filename="" line="7471221"/> |
2576 | cbradney | 3583 | <source>&Apply Master Page...</source> |
3584 | <translation>Musterseite an&wenden...</translation> |
||
3585 | </message> |
||
3586 | <message> |
||
7919 | mrdocs | 3587 | <location filename="" line="7471221"/> |
2576 | cbradney | 3588 | <source>Manage &Guides...</source> |
3589 | <translation>&Hilfslinien bearbeiten...</translation> |
||
3590 | </message> |
||
3591 | <message> |
||
7919 | mrdocs | 3592 | <location filename="" line="7471221"/> |
2576 | cbradney | 3593 | <source>&50%</source> |
3594 | <translation>&50%</translation> |
||
3595 | </message> |
||
3596 | <message> |
||
7919 | mrdocs | 3597 | <location filename="" line="7471221"/> |
2576 | cbradney | 3598 | <source>&75%</source> |
3599 | <translation>&75%</translation> |
||
3600 | </message> |
||
3601 | <message> |
||
7919 | mrdocs | 3602 | <location filename="" line="7471221"/> |
2576 | cbradney | 3603 | <source>&100%</source> |
3604 | <translation>&100%</translation> |
||
3605 | </message> |
||
3606 | <message> |
||
7919 | mrdocs | 3607 | <location filename="" line="7471221"/> |
2576 | cbradney | 3608 | <source>&200%</source> |
3609 | <translation>&200%</translation> |
||
3610 | </message> |
||
3611 | <message> |
||
7919 | mrdocs | 3612 | <location filename="" line="7471221"/> |
2576 | cbradney | 3613 | <source>&Thumbnails</source> |
3614 | <translation>&Vorschaubilder</translation> |
||
3615 | </message> |
||
3616 | <message> |
||
7919 | mrdocs | 3617 | <location filename="" line="7471221"/> |
2576 | cbradney | 3618 | <source>Show &Margins</source> |
7919 | mrdocs | 3619 | <translation>S&atzspiegel anzeigen</translation> |
2576 | cbradney | 3620 | </message> |
3621 | <message> |
||
7919 | mrdocs | 3622 | <location filename="" line="7471221"/> |
2576 | cbradney | 3623 | <source>Show &Frames</source> |
3624 | <translation>Ra&hmen anzeigen</translation> |
||
3625 | </message> |
||
3626 | <message> |
||
7919 | mrdocs | 3627 | <location filename="" line="7471221"/> |
2576 | cbradney | 3628 | <source>Show &Images</source> |
3629 | <translation>&Bilder anzeigen</translation> |
||
3630 | </message> |
||
3631 | <message> |
||
7919 | mrdocs | 3632 | <location filename="" line="7471221"/> |
2576 | cbradney | 3633 | <source>Show &Grid</source> |
3634 | <translation>Ra&ster anzeigen</translation> |
||
3635 | </message> |
||
3636 | <message> |
||
7919 | mrdocs | 3637 | <location filename="" line="7471221"/> |
2576 | cbradney | 3638 | <source>Show G&uides</source> |
3639 | <translation>&Hilfslinien anzeigen</translation> |
||
3640 | </message> |
||
3641 | <message> |
||
7919 | mrdocs | 3642 | <location filename="" line="7471221"/> |
2576 | cbradney | 3643 | <source>Show &Baseline Grid</source> |
3426 | cbradney | 3644 | <translation>&Grundlinienraster anzeigen</translation> |
2576 | cbradney | 3645 | </message> |
3646 | <message> |
||
7919 | mrdocs | 3647 | <location filename="" line="7471221"/> |
2576 | cbradney | 3648 | <source>Show &Text Chain</source> |
3649 | <translation>Ver&kettete Textrahmen anzeigen</translation> |
||
3650 | </message> |
||
3651 | <message> |
||
7919 | mrdocs | 3652 | <location filename="" line="7471221"/> |
2576 | cbradney | 3653 | <source>Show Control Characters</source> |
3654 | <translation>Kontrollzeichen anzeigen</translation> |
||
3655 | </message> |
||
3656 | <message> |
||
7919 | mrdocs | 3657 | <location filename="" line="7471221"/> |
2576 | cbradney | 3658 | <source>Sn&ap to Grid</source> |
3659 | <translation>Am &Raster ausrichten</translation> |
||
3660 | </message> |
||
3661 | <message> |
||
7919 | mrdocs | 3662 | <location filename="" line="7471221"/> |
2576 | cbradney | 3663 | <source>Sna&p to Guides</source> |
7561 | mrdocs | 3664 | <translation>An &Hilfslinien ausrichten</translation> |
2576 | cbradney | 3665 | </message> |
3666 | <message> |
||
7919 | mrdocs | 3667 | <location filename="" line="7471221"/> |
2576 | cbradney | 3668 | <source>&Properties</source> |
4992 | cbradney | 3669 | <translation>&Eigenschaften</translation> |
2576 | cbradney | 3670 | </message> |
3671 | <message> |
||
7919 | mrdocs | 3672 | <location filename="" line="7471221"/> |
2576 | cbradney | 3673 | <source>&Scrapbook</source> |
3674 | <translation>Biblio&thek</translation> |
||
3675 | </message> |
||
3676 | <message> |
||
7919 | mrdocs | 3677 | <location filename="" line="7471221"/> |
2576 | cbradney | 3678 | <source>&Layers</source> |
3679 | <translation>E&benen</translation> |
||
3680 | </message> |
||
3681 | <message> |
||
7919 | mrdocs | 3682 | <location filename="" line="7471221"/> |
2576 | cbradney | 3683 | <source>&Bookmarks</source> |
3684 | <translation>&Lesezeichen</translation> |
||
3685 | </message> |
||
3686 | <message> |
||
7919 | mrdocs | 3687 | <location filename="" line="7471221"/> |
2576 | cbradney | 3688 | <source>&Measurements</source> |
3426 | cbradney | 3689 | <translation>&Abstandsmesser</translation> |
2576 | cbradney | 3690 | </message> |
3691 | <message> |
||
7919 | mrdocs | 3692 | <location filename="" line="7471221"/> |
2576 | cbradney | 3693 | <source>Action &History</source> |
3694 | <translation>Aktions&verlauf</translation> |
||
3695 | </message> |
||
3696 | <message> |
||
7919 | mrdocs | 3697 | <location filename="" line="7471221"/> |
2576 | cbradney | 3698 | <source>Preflight &Verifier</source> |
3426 | cbradney | 3699 | <translation>&Druckvorstufenüberprüfung</translation> |
2576 | cbradney | 3700 | </message> |
3701 | <message> |
||
7919 | mrdocs | 3702 | <location filename="" line="7471221"/> |
2576 | cbradney | 3703 | <source>&Align and Distribute</source> |
7561 | mrdocs | 3704 | <translation>&Ausrichten und Verteilen</translation> |
2576 | cbradney | 3705 | </message> |
3706 | <message> |
||
7919 | mrdocs | 3707 | <location filename="" line="7471221"/> |
2576 | cbradney | 3708 | <source>&Tools</source> |
3709 | <translation>&Werkzeuge</translation> |
||
3710 | </message> |
||
3711 | <message> |
||
7919 | mrdocs | 3712 | <location filename="" line="7471221"/> |
2576 | cbradney | 3713 | <source>P&DF Tools</source> |
3714 | <translation>&PDF-Werkzeuge</translation> |
||
3715 | </message> |
||
3716 | <message> |
||
7919 | mrdocs | 3717 | <location filename="" line="7471221"/> |
2576 | cbradney | 3718 | <source>Select Item</source> |
3719 | <translation>Eintrag auswählen</translation> |
||
3720 | </message> |
||
3721 | <message> |
||
7919 | mrdocs | 3722 | <location filename="" line="7471221"/> |
2576 | cbradney | 3723 | <source>T&able</source> |
7561 | mrdocs | 3724 | <translation>Ta&belle</translation> |
2576 | cbradney | 3725 | </message> |
3726 | <message> |
||
7919 | mrdocs | 3727 | <location filename="" line="7471221"/> |
2576 | cbradney | 3728 | <source>&Shape</source> |
3729 | <translation>&Form</translation> |
||
3730 | </message> |
||
3731 | <message> |
||
7919 | mrdocs | 3732 | <location filename="" line="7471221"/> |
2576 | cbradney | 3733 | <source>&Line</source> |
3734 | <translation>&Linie</translation> |
||
3735 | </message> |
||
3736 | <message> |
||
7919 | mrdocs | 3737 | <location filename="" line="7471221"/> |
2576 | cbradney | 3738 | <source>&Freehand Line</source> |
7561 | mrdocs | 3739 | <translation>Frei&handlinie</translation> |
2576 | cbradney | 3740 | </message> |
3741 | <message> |
||
7919 | mrdocs | 3742 | <location filename="" line="7471221"/> |
2576 | cbradney | 3743 | <source>Rotate Item</source> |
3744 | <translation>Objekt drehen</translation> |
||
3745 | </message> |
||
3746 | <message> |
||
7919 | mrdocs | 3747 | <location filename="" line="7471221"/> |
2576 | cbradney | 3748 | <source>Zoom in or out</source> |
3749 | <translation>Vergrößern oder verkleinern</translation> |
||
3750 | </message> |
||
3751 | <message> |
||
7919 | mrdocs | 3752 | <location filename="" line="7471221"/> |
2576 | cbradney | 3753 | <source>Zoom in</source> |
3754 | <translation>Vergrößern</translation> |
||
3755 | </message> |
||
3756 | <message> |
||
7919 | mrdocs | 3757 | <location filename="" line="7471221"/> |
2576 | cbradney | 3758 | <source>Zoom out</source> |
3759 | <translation>Verkleinern</translation> |
||
3760 | </message> |
||
3761 | <message> |
||
7919 | mrdocs | 3762 | <location filename="" line="7471221"/> |
2576 | cbradney | 3763 | <source>Edit Contents of Frame</source> |
3764 | <translation>Rahmeninhalt bearbeiten</translation> |
||
3765 | </message> |
||
3766 | <message> |
||
7919 | mrdocs | 3767 | <location filename="" line="7471221"/> |
2576 | cbradney | 3768 | <source>Edit Text...</source> |
3769 | <translation>Text bearbeiten...</translation> |
||
3770 | </message> |
||
3771 | <message> |
||
7919 | mrdocs | 3772 | <location filename="" line="7471221"/> |
2576 | cbradney | 3773 | <source>Link Text Frames</source> |
3774 | <translation>Textrahmen verketten</translation> |
||
3775 | </message> |
||
3776 | <message> |
||
7919 | mrdocs | 3777 | <location filename="" line="7471221"/> |
2576 | cbradney | 3778 | <source>Unlink Text Frames</source> |
3779 | <translation>Verkettete Textrahmen trennen</translation> |
||
3780 | </message> |
||
3781 | <message> |
||
7919 | mrdocs | 3782 | <location filename="" line="7471221"/> |
2576 |