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