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