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