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