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