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