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