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