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