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