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