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