Rev 7586 | Rev 7919 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
7716 | cbradney | 1 | <!DOCTYPE TS><TS> |
2 | <context> |
||
7586 | cbradney | 3 | <name></name> |
4 | <message> |
||
7716 | cbradney | 5 | <source>getColorNames() -> list |
7586 | cbradney | 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> |
||
7716 | cbradney | 10 | <translation>getColorNames() -> list |
7586 | cbradney | 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> |
||
7716 | cbradney | 16 | <source>newDocDialog() -> bool |
7586 | cbradney | 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> |
||
7716 | cbradney | 22 | <translation>newDocDialog() -> bool |
7586 | cbradney | 23 | |
24 | Zeigt den Dialog \"Neues Dokument\" an. Damit können Sie ein neues Dokument erstellen, wenn der Benutzer die standardmässigen 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> |
||
7716 | cbradney | 28 | <source>getFillColor(["name"]) -> string |
7586 | cbradney | 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> |
||
7716 | cbradney | 33 | <translation>getFillColor(["name"]) -> string |
7586 | cbradney | 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> |
||
7716 | cbradney | 39 | <source>moveObject(dx, dy [, "name"]) |
7586 | cbradney | 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> |
||
7716 | cbradney | 46 | <translation>moveObject(dx, dy [, "name"]) |
7586 | cbradney | 47 | |
48 | Verschiebt das Objekt "name" um dx und dy relativ zur Position. Die |
||
49 | Entfernungsangaben werden in der Masseinheit 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> |
||
7716 | cbradney | 55 | <source>setRedraw(bool) |
7586 | cbradney | 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> |
||
7716 | cbradney | 61 | <translation>setRedraw(bool) |
7586 | cbradney | 62 | |
63 | Wenn bool=False, dann wird die Seite nicht neu neu aufgebaut (redraw ist deaktiviert). |
||
64 | Standard ist bool=True. Diese Einstellung bleibt bestehen, auch wenn das Script beendet ist. |
||
65 | Stellen Sie also sicher, dass setRedraw(True) aufgerufen wird, bevor das Script beendet wird.</translation> |
||
66 | </message> |
||
67 | <message> |
||
7716 | cbradney | 68 | <source>createRect(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 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 | |||
7716 | cbradney | 76 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 77 | </source> |
7716 | cbradney | 78 | <translation>createRect(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 79 | |
80 | Erzeugt ein neues Rechteck auf der aktuellen Seite und gibt seinen Namen zurück. Die |
||
81 | Koordinaten werden in der Masseinheit 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> |
||
7716 | cbradney | 88 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
7586 | cbradney | 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 |
||
7716 | cbradney | 92 | available types (FILL_<type>). |
7586 | cbradney | 93 | </source> |
7716 | cbradney | 94 | <translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
7586 | cbradney | 95 | |
96 | Füllt das Objekt "name" mit einem Farbverlauf. Farbbezeichnungen sind die |
||
97 | gleichen wie für setFillColor() und setFillShade(). Siehe Konstanten |
||
7716 | cbradney | 98 | für mögliche Typen (FILL_<type>).</translation> |
7586 | cbradney | 99 | </message> |
100 | <message> |
||
7716 | cbradney | 101 | <source>getFontSize(["name"]) -> float |
7586 | cbradney | 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> |
||
7716 | cbradney | 108 | <translation>getFontSize(["name"]) -> float |
7586 | cbradney | 109 | |
110 | Gibt die Schriftgrösse in Punkten für den Textrahmen "name" zurück. Wenn innerhalb |
||
111 | des Rahmens Text markiert ist, wird die Schriftgrösse des ersten Zeichens verwendet. |
||
112 | Wenn "name" nicht vergeben ist, wird der selektierte Textrahmen verwendet.</translation> |
||
113 | </message> |
||
114 | <message> |
||
7716 | cbradney | 115 | <source>messagebarText("string") |
7586 | cbradney | 116 | |
117 | Writes the "string" into the Scribus message bar (status line). The text |
||
7716 | cbradney | 118 | must be UTF8 encoded or 'unicode' string(recommended). |
7586 | cbradney | 119 | </source> |
7716 | cbradney | 120 | <translation>messagebarText("string") |
7586 | cbradney | 121 | |
122 | Schreibt "string" in die Statuszeile von Scribus. Der Text muss |
||
7716 | cbradney | 123 | UTF8-kodiert oder ein 'unicode'-String sein (empfohlen).</translation> |
7586 | cbradney | 124 | </message> |
125 | <message> |
||
7716 | cbradney | 126 | <source>newPage(where [,"masterpage"]) |
7586 | cbradney | 127 | |
128 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
129 | document, otherwise the new page is inserted before "where". Page numbers are |
||
130 | counted from 1 upwards, no matter what the displayed first page number of your |
||
131 | document is. The optional parameter "masterpage" specifies the name of the |
||
132 | master page for the new page. |
||
133 | |||
134 | May raise IndexError if the page number is out of range |
||
135 | </source> |
||
7716 | cbradney | 136 | <translation>newPage(where [,"masterpage"]) |
7586 | cbradney | 137 | |
138 | Erzeugt eine neue Seite. Falls "where" -1 ist, wird die neue Seite an das Dokument angefügt, |
||
139 | ansonsten wird die neue Seite vor "where" eingefügt. Seitennummern werden von 1 ab hoch- |
||
140 | gezählt, egal welches die angezeigte erste Seitennummer Ihres Dokumentes ist. Der optionale |
||
141 | Parameter "masterpage" legt den Namen der Musterseite für die neue Seite fest</translation> |
||
142 | </message> |
||
143 | <message> |
||
7716 | cbradney | 144 | <source>importSVG("string") |
7586 | cbradney | 145 | |
146 | The "string" must be a valid filename for a SVG image. The text |
||
7716 | cbradney | 147 | must be UTF8 encoded or 'unicode' string(recommended). |
7586 | cbradney | 148 | </source> |
7716 | cbradney | 149 | <translation>"string" muss ein gültiger Dateiname einer SVG-Datei sein. Der Text |
7586 | cbradney | 150 | muss UTF8-kodiert oder ein Unicode-String (empfohlen) sein.</translation> |
151 | </message> |
||
152 | <message> |
||
7716 | cbradney | 153 | <source>newDocument(size, margins, orientation, firstPageNumber, |
154 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
7586 | cbradney | 155 | |
156 | Creates a new document and returns true if successful. The parameters have the |
||
157 | following meaning: |
||
158 | |||
159 | size = A tuple (width, height) describing the size of the document. You can |
||
7716 | cbradney | 160 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
7586 | cbradney | 161 | |
162 | margins = A tuple (left, right, top, bottom) describing the document |
||
163 | margins |
||
164 | |||
165 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
166 | |||
167 | firstPageNumer = is the number of the first page in the document used for |
||
7716 | cbradney | 168 | pagenumbering. While you'll usually want 1, it's useful to have higher |
169 | numbers if you're creating a document in several parts. |
||
7586 | cbradney | 170 | |
171 | unit: this value sets the measurement units used by the document. Use a |
||
172 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
173 | UNIT_PICAS, UNIT_POINTS. |
||
174 | |||
175 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
176 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
177 | PAGE_4 is 4-fold. |
||
178 | |||
179 | firstPageOrder = What is position of first page in the document. |
||
180 | Indexed from 0 (0 = first). |
||
181 | |||
182 | numPage = Number of pages to be created. |
||
183 | |||
184 | The values for width, height and the margins are expressed in the given unit |
||
185 | for the document. PAPER_* constants are expressed in points. If your document |
||
186 | is not in points, make sure to account for this. |
||
187 | |||
188 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
189 | PAGE_4, 3, 1) |
||
190 | |||
191 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
192 | </source> |
||
7716 | cbradney | 193 | <translation>firstPageOrder = What is position of first page in the document.(new line) |
7586 | cbradney | 194 | Indexed from 0 (0 = first). |
195 | numPage = Number of pages to be created. |
||
196 | The values for width, height and the margins are expressed in the given unit |
||
197 | for the document. PAPER_* constants are expressed in points. If your document |
||
198 | is not in points, make sure to account for this. |
||
199 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
200 | PAGE_4, 3, 1) |
||
201 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.</translation> |
||
202 | </message> |
||
7716 | cbradney | 203 | </context> |
204 | <context> |
||
7586 | cbradney | 205 | <name>@default</name> |
206 | <message> |
||
7716 | cbradney | 207 | <source>getColor("name") -> tuple |
7586 | cbradney | 208 | |
209 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
210 | color "name" from the current document. If no document is open, returns |
||
211 | the value of the named color from the default document colors. |
||
212 | |||
7716 | cbradney | 213 | May raise NotFoundError if the named color wasn't found. |
7586 | cbradney | 214 | May raise ValueError if an invalid color name is specified. |
215 | </source> |
||
7716 | cbradney | 216 | <translation>getColor("name") -> tuple |
7586 | cbradney | 217 | |
218 | Gibt eine Liste mit den vier Farbkomponenten der Farbe "name" im aktuellen |
||
219 | Dokument wieder. Wenn kein Dokument geöffnet ist, werden die Werte der |
||
220 | angegebenen Standardfarbe zurückgegeben. |
||
221 | |||
222 | Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
223 | Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
224 | </message> |
||
225 | <message> |
||
7716 | cbradney | 226 | <source>changeColor("name", c, m, y, k) |
7586 | cbradney | 227 | |
228 | Changes the color "name" to the specified CMYK value. The color value is |
||
229 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
230 | Color components should be in the range from 0 to 255. |
||
231 | |||
7716 | cbradney | 232 | May raise NotFoundError if the named color wasn't found. |
7586 | cbradney | 233 | May raise ValueError if an invalid color name is specified. |
234 | </source> |
||
7716 | cbradney | 235 | <translation>changeColor("name", c, m, y, k) |
7586 | cbradney | 236 | |
237 | Ändert die Farbe "name" auf die angegeben CMYK-Werte. Die Abkürzungen |
||
238 | stehen für die vier Farben c=Cyan, m=Magenta, y=Yellow, b=Black. |
||
239 | Die Werte müssen zwischen 0 und 255 liegen. |
||
240 | |||
241 | Wenn die Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
242 | Wenn ein ungültiger Farbname angegeben wird, tritt der Fehler ValueError auf.</translation> |
||
243 | </message> |
||
244 | <message> |
||
7716 | cbradney | 245 | <source>deleteColor("name", "replace") |
7586 | cbradney | 246 | |
247 | Deletes the color "name". Every occurence of that color is replaced by the |
||
248 | color "replace". If not specified, "replace" defaults to the color |
||
249 | "None" - transparent. |
||
250 | |||
251 | deleteColor works on the default document colors if there is no document open. |
||
252 | In that case, "replace", if specified, has no effect. |
||
253 | |||
7716 | cbradney | 254 | May raise NotFoundError if a named color wasn't found. |
7586 | cbradney | 255 | May raise ValueError if an invalid color name is specified. |
256 | </source> |
||
7716 | cbradney | 257 | <translation>deleteColor("name", "replace") |
7586 | cbradney | 258 | |
259 | Löscht die Farbe "name". An allen Stellen, wo "name" im Dokument auftritt, |
||
260 | wird sie durch "replace" ersetzt. Standardmässig ist "replace" gar keine Farbe - |
||
261 | Transparenz. |
||
262 | |||
263 | Sie können deleteColor auch verwenden, wenn kein Dokument geöffnet ist, dann |
||
264 | bleibt die Angabe von "replace" aber ohne Auswirkung. |
||
265 | |||
266 | Wenn die angegebene Farbe nicht gefunden wird, tritt der Fehler NotFoundError auf. |
||
267 | Wenn der Farbname ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
268 | </message> |
||
269 | <message> |
||
7716 | cbradney | 270 | <source>replaceColor("name", "replace") |
7586 | cbradney | 271 | |
272 | Every occurence of the color "name" is replaced by the color "replace". |
||
273 | |||
7716 | cbradney | 274 | May raise NotFoundError if a named color wasn't found. |
7586 | cbradney | 275 | May raise ValueError if an invalid color name is specified. |
276 | </source> |
||
7716 | cbradney | 277 | <translation>replaceColor("name", "replace") |
7586 | cbradney | 278 | |
279 | An allen Stellen, wo die Farbe "name" vorkommt, wird sie duch die Farbe |
||
280 | "replace" ersetzt. |
||
281 | |||
282 | Wenn eine der Farben nicht vorhanden ist, tritt der Fehler NotFoundError auf. |
||
283 | Wenn der Name der Farbe ungültig ist, tritt der Fehler ValueError auf.</translation> |
||
284 | </message> |
||
285 | <message> |
||
7716 | cbradney | 286 | <source>messageBox("caption", "message", |
7586 | cbradney | 287 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
7716 | cbradney | 288 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
7586 | cbradney | 289 | |
290 | Displays a message box with the title "caption", the message "message", and |
||
291 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
292 | button, OK, is displayed. Only the caption and message arguments are required, |
||
293 | though setting an icon and appropriate button(s) is strongly |
||
294 | recommended. The message text may contain simple HTML-like markup. |
||
295 | |||
296 | Returns the number of the button the user pressed. Button numbers start |
||
297 | at 1. |
||
298 | |||
299 | For the icon and the button parameters there are predefined constants available |
||
300 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
301 | ICON_* constants defined in the module. There are also two extra constants that |
||
302 | can be binary-ORed with button constants: |
||
303 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
304 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
305 | |||
306 | Usage examples: |
||
7716 | cbradney | 307 | result = messageBox('Script failed', |
308 | 'This script only works when you have a text frame selected.', |
||
7586 | cbradney | 309 | ICON_ERROR) |
7716 | cbradney | 310 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
7586 | cbradney | 311 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
312 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
313 | |||
314 | Defined button and icon constants: |
||
315 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
316 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
317 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
318 | </source> |
||
7716 | cbradney | 319 | <translation>messageBox("caption", "message",icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
320 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
7586 | cbradney | 321 | Zeigt einen Dialog mit dem Titel "caption", der Botschaft "message" und dem Symbol "icon" sowie |
322 | bis zu 3 Buttons an. Standard ist kein Symbol und ein OK-Button. Nur Titel und Botschaft sind |
||
323 | erforderliche Felder, aber Symbol und Buttons werden empfohlen. |
||
324 | Der Text der Botschaft kann auch einfachen HTML-Code enthalten. |
||
325 | Gibt die Nummer des Buttons wieder, der gedrückt wurde, beginnend mit 1. |
||
326 | Für Buttons und Symbole gibt es vordefinierte Konstanten, die gleichen wie in |
||
327 | der Qt-Dokumentation. |
||
328 | Die sind im Modul definiert und heissen BUTTON_* und ICON_* . Es gibt auch zwei |
||
329 | spezielle Konstanten, die auch den Wert 0 annehmen können: BUTTONOPT_DEFAULT aktiviert den |
||
330 | jeweiligen Button per Druck auf Enter. |
||
331 | BUTTONOPT_ESCAPE drückt die Escape-Taste falls dieser Button gedrückt wird. |
||
332 | Beispiel |
||
7716 | cbradney | 333 | result = messageBox('Script failed','This script only works when you have a text frame selected.', |
7586 | cbradney | 334 | ICON_ERROR) |
7716 | cbradney | 335 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',ICON_WARNING, |
7586 | cbradney | 336 | BUTTON_YES|BUTTONOPT_DEFAULT, BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
337 | Konstanten für Buttons und Symbole: |
||
338 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
339 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
340 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.</translation> |
||
341 | </message> |
||
342 | <message> |
||
7716 | cbradney | 343 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
7586 | cbradney | 344 | |
7716 | cbradney | 345 | Shows the common 'Ask for string' dialog and returns its value as a string |
346 | Parameters: window title, text in the window and optional 'default' value. |
||
7586 | cbradney | 347 | |
7716 | cbradney | 348 | Example: valueDialog('title', 'text in the window', 'optional') |
7586 | cbradney | 349 | </source> |
7716 | cbradney | 350 | <translation>valueDialog(caption, message [,defaultvalue]) -> string |
7586 | cbradney | 351 | |
352 | Zeigt einen Dialog an, der einen String verlangt und zurückgibt. |
||
7716 | cbradney | 353 | Parameter: Fenstertitel, Text im Fenster und optionaler 'default'-Text. |
7586 | cbradney | 354 | |
7716 | cbradney | 355 | Beispiel: valueDialog('TItel', 'Text im Fenster', 'optional')</translation> |
7586 | cbradney | 356 | </message> |
357 | <message> |
||
7716 | cbradney | 358 | <source>closeDoc() |
7586 | cbradney | 359 | |
360 | Closes the current document without prompting to save. |
||
361 | |||
362 | May throw NoDocOpenError if there is no document to close |
||
363 | </source> |
||
7716 | cbradney | 364 | <translation>closeDoc() |
7586 | cbradney | 365 | |
366 | Schliesst das aktuelle Dokument, ohne Änderungen zu sichern. |
||
367 | |||
368 | Wenn kein Dokument offen ist, tritt der Fehler NoDocOpenError auf</translation> |
||
369 | </message> |
||
370 | <message> |
||
7716 | cbradney | 371 | <source>haveDoc() -> bool |
7586 | cbradney | 372 | |
373 | Returns true if there is a document open. |
||
374 | </source> |
||
7716 | cbradney | 375 | <translation>haveDoc() -> bool |
7586 | cbradney | 376 | |
377 | Gibt True zurück, wenn ein Dokument geöffnet ist.</translation> |
||
378 | </message> |
||
379 | <message> |
||
7716 | cbradney | 380 | <source>openDoc("name") |
7586 | cbradney | 381 | |
382 | Opens the document "name". |
||
383 | |||
384 | May raise ScribusError if the document could not be opened. |
||
385 | </source> |
||
7716 | cbradney | 386 | <translation>openDoc("name") |
7586 | cbradney | 387 | |
388 | Öffnet das Dokument "name". |
||
389 | |||
390 | Schlägt das fehl, tritt der Fehler ScribusError auf.</translation> |
||
391 | </message> |
||
392 | <message> |
||
7716 | cbradney | 393 | <source>saveDoc() |
7586 | cbradney | 394 | |
395 | Saves the current document with its current name, returns true if successful. |
||
396 | If the document has not already been saved, this may bring up an interactive |
||
397 | save file dialog. |
||
398 | |||
399 | If the save fails, there is currently no way to tell. |
||
400 | </source> |
||
7716 | cbradney | 401 | <translation>saveDoc() |
7586 | cbradney | 402 | |
403 | Speichert das Dokument unter dem aktuellen Namen und gibt True zurück, wenn das |
||
404 | erfolgreich war. Wurde das Dokument noch nicht gesichert, öffnet sich der "Speichern"- |
||
405 | Dialog. |
||
406 | |||
407 | Wenn das Sichern fehlschlägt, erscheint derzeit keine Fehlermeldung.</translation> |
||
408 | </message> |
||
409 | <message> |
||
7716 | cbradney | 410 | <source>saveDocAs("name") |
7586 | cbradney | 411 | |
412 | Saves the current document under the new name "name" (which may be a full or |
||
413 | relative path). |
||
414 | |||
415 | May raise ScribusError if the save fails. |
||
416 | </source> |
||
7716 | cbradney | 417 | <translation>saveDocAs("name") |
7586 | cbradney | 418 | |
419 | Speichert das aktuelle Dokument unter dem neuen Namen "name". Die Pfadangabe kann dabei |
||
420 | relativ oder absolut sein. |
||
421 | |||
422 | Schlägt das Sichern fehl, tritt der Fehler ScribusError auf.</translation> |
||
423 | </message> |
||
424 | <message> |
||
7716 | cbradney | 425 | <source>setMargins(lr, rr, tr, br) |
7586 | cbradney | 426 | |
427 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
7716 | cbradney | 428 | margins are given in the measurement units of the document - see UNIT_<type> |
7586 | cbradney | 429 | constants. |
430 | </source> |
||
7716 | cbradney | 431 | <translation>setMargins(lr, rr, tr, br) |
7586 | cbradney | 432 | |
433 | Verändert die Ränder des Dokuments. Links=lr, Rechts=rr, Oben=tr, Unten=br. |
||
434 | Die Einheit wird durch die Masseinheit des Dokuments vorgegeben, siehe die |
||
7716 | cbradney | 435 | Konstanten UNIT_<type>.</translation> |
7586 | cbradney | 436 | </message> |
437 | <message> |
||
7716 | cbradney | 438 | <source>setUnit(type) |
7586 | cbradney | 439 | |
440 | Changes the measurement unit of the document. Possible values for "unit" are |
||
7716 | cbradney | 441 | defined as constants UNIT_<type>. |
7586 | cbradney | 442 | |
443 | May raise ValueError if an invalid unit is passed. |
||
444 | </source> |
||
7716 | cbradney | 445 | <translation>setUnit(type) |
7586 | cbradney | 446 | |
447 | Ändert die Masseinheit des Dokuments auf "type". Mögliche Einheiten geben Sie durch die |
||
7716 | cbradney | 448 | Konstanten UNIT_<type> an. |
7586 | cbradney | 449 | |
450 | Ist die Einheit ungültig, tritt der Fehler ValueError auf.</translation> |
||
451 | </message> |
||
452 | <message> |
||
7716 | cbradney | 453 | <source>getUnit() -> integer (Scribus unit constant) |
7586 | cbradney | 454 | |
455 | Returns the measurement units of the document. The returned value will be one |
||
456 | of the UNIT_* constants: |
||
457 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
458 | </source> |
||
7716 | cbradney | 459 | <translation>getUnit() -> integer (Scribus unit constant) |
7586 | cbradney | 460 | |
461 | Gibt die Masseinheit des Dokuments zurück. Der Rückgabewert ist eine |
||
462 | der möglichen UNIT_*-Konstanten: |
||
463 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.</translation> |
||
464 | </message> |
||
465 | <message> |
||
7716 | cbradney | 466 | <source>loadStylesFromFile("filename") |
7586 | cbradney | 467 | |
468 | Loads paragraph styles from the Scribus document at "filename" into the |
||
469 | current document. |
||
470 | </source> |
||
7716 | cbradney | 471 | <translation>loadStylesFromFile("filename") |
7586 | cbradney | 472 | |
473 | Lädt die Absatzstile aus der Datei "filename" in das aktuelle Dokument.</translation> |
||
474 | </message> |
||
475 | <message> |
||
7716 | cbradney | 476 | <source>setDocType(facingPages, firstPageLeft) |
7586 | cbradney | 477 | |
478 | Sets the document type. To get facing pages set the first parameter to |
||
479 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
480 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
481 | a right page use FIRSTPAGERIGHT. |
||
482 | </source> |
||
7716 | cbradney | 483 | <translation>setDocType(facingPages, firstPageLeft) |
7586 | cbradney | 484 | |
485 | Setzt den Dokumenttyp. Gegenüberliegende Seiten erreichen Sie mit FACINGPAGES, normale |
||
486 | Seiten mit NOFACINGPAGES. Wenn die erste Seite links sein soll, schreiben Sie FIRSTPAGELEFT, |
||
487 | ansonsten FIRSTPAGERIGHT.</translation> |
||
488 | </message> |
||
489 | <message> |
||
7716 | cbradney | 490 | <source>getLineColor(["name"]) -> string |
7586 | cbradney | 491 | |
492 | Returns the name of the line color of the object "name". |
||
493 | If "name" is not given the currently selected item is used. |
||
494 | </source> |
||
7716 | cbradney | 495 | <translation>getLineColor(["name"]) -> string |
7586 | cbradney | 496 | |
497 | Gibt den Namen der Linienfarbe des Objekts "name" zurück. |
||
498 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
499 | </message> |
||
500 | <message> |
||
7716 | cbradney | 501 | <source>getLineWidth(["name"]) -> integer |
7586 | cbradney | 502 | |
503 | Returns the line width of the object "name". If "name" |
||
504 | is not given the currently selected Item is used. |
||
505 | </source> |
||
7716 | cbradney | 506 | <translation>getLineWidth(["name"]) -> integer |
7586 | cbradney | 507 | |
508 | Gibt die Linienbreite des Objekts "name" zurück. |
||
509 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
510 | </message> |
||
511 | <message> |
||
7716 | cbradney | 512 | <source>getLineShade(["name"]) -> integer |
7586 | cbradney | 513 | |
514 | Returns the shading value of the line color of the object "name". |
||
515 | If "name" is not given the currently selected item is used. |
||
516 | </source> |
||
7716 | cbradney | 517 | <translation>getLineShade(["name"]) -> integer |
7586 | cbradney | 518 | |
519 | Gibt den Tonwert des Objekts "name" zurück. |
||
520 | Wenn "name" nicht angegeben ist, wird das aktuelle Objekt benutzt.</translation> |
||
521 | </message> |
||
522 | <message> |
||
7716 | cbradney | 523 | <source>getLineJoin(["name"]) -> integer (see contants) |
7586 | cbradney | 524 | |
525 | Returns the line join style of the object "name". If "name" is not given |
||
526 | the currently selected item is used. The join types are: |
||
527 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
528 | </source> |
||
7716 | cbradney | 529 | <translation>getLineJoin(["name"]) -> integer (siehe Konstanten) |
7586 | cbradney | 530 | |
531 | Gibt den Stil der Ecken des Objekts "name" zurück. Ist kein "name" angegeben, wird |
||
532 | das aktuelle Objekt benutzt. Die Linientypen sind JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND</translation> |
||
533 | </message> |
||
534 | <message> |
||
7716 | cbradney | 535 | <source>getLineEnd(["name"]) -> integer (see constants) |
7586 | cbradney | 536 | |
537 | Returns the line cap style of the object "name". If "name" is not given the |
||
538 | currently selected item is used. The cap types are: |
||
539 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
540 | </source> |
||
7716 | cbradney | 541 | <translation>getLineEnd(["name"]) -> integer (siehe Konstanten) |
7586 | cbradney | 542 | |
543 | Gibt den Stil der Linienrundungen des Objekts "name" an. Ist "name" nicht angegeben, wird das aktuelle Objekt benutzt. |
||
544 | Die unterstützten Stile sind CAP_FLAT, CAP_ROUND, CAP_SQUARE</translation> |
||
545 | </message> |
||
546 | <message> |
||
7716 | cbradney | 547 | <source>getLineStyle(["name"]) -> integer (see constants) |
7586 | cbradney | 548 | |
549 | Returns the line style of the object "name". If "name" is not given the |
||
550 | currently selected item is used. Line style constants are: |
||
551 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
552 | </source> |
||
7716 | cbradney | 553 | <translation>getLineStyle(["name"]) -> integer (siehe Konstanten) |
7586 | cbradney | 554 | |
555 | Gibt den Linienstil des Objekts "name" wieder. Ist "name" nicht angegeben, |
||
556 | wird das aktuelle Objekt benutzt. Linienstile sind LINE_DASH, LINE_DASHDOT, |
||
557 | LINE_DASHDOTDOT, LINE_SOLID</translation> |
||
558 | </message> |
||
559 | <message> |
||
7716 | cbradney | 560 | <source>getFillShade(["name"]) -> integer |
7586 | cbradney | 561 | |
562 | Returns the shading value of the fill color of the object "name". |
||
563 | If "name" is not given the currently selected item is used. |
||
564 | </source> |
||
7716 | cbradney | 565 | <translation>getFillShade(["name"]) -> integer |
7586 | cbradney | 566 | |
567 | Gibt den Tonwert der Füllfarbe von "name" zurück. Ist "name" nicht angegeben, wird |
||
568 | das aktuelle Objekt verwendet.</translation> |
||
569 | </message> |
||
570 | <message> |
||
7716 | cbradney | 571 | <source>getImageScale(["name"]) -> (x,y) |
7586 | cbradney | 572 | |
573 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
574 | "name". If "name" is not given the currently selected item is used. |
||
575 | </source> |
||
7716 | cbradney | 576 | <translation>getImageScale(["name"]) -> (x,y)( |
7586 | cbradney | 577 | |
578 | Gibt ein Zahlenpaar (x,y) zurück mit den Skalierungswerten des Bildes im Rahmen |
||
579 | "name". Ist "name" nicht angegeben, wird der aktuelle Rahmen verwendet.</translation> |
||
580 | </message> |
||
581 | <message> |
||
7716 | cbradney | 582 | <source>getImageName(["name"]) -> string |
7586 | cbradney | 583 | |
584 | Returns the filename for the image in the image frame. If "name" is not |
||
585 | given the currently selected item is used. |
||
586 | </source> |
||
7716 | cbradney | 587 | <translation>getImageName(["name"]) -> string |
7586 | cbradney | 588 | |
589 | Gibt den Dateinamen des Bildes im Rahmen "name" zurück. Ist "name" nicht |
||
590 | angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
591 | </message> |
||
592 | <message> |
||
7716 | cbradney | 593 | <source>getSize(["name"]) -> (width,height) |
7586 | cbradney | 594 | |
595 | Returns a (width, height) tuple with the size of the object "name". |
||
596 | If "name" is not given the currently selected item is used. The size is |
||
7716 | cbradney | 597 | expressed in the current measurement unit of the document - see UNIT_<type> |
7586 | cbradney | 598 | for reference. |
599 | </source> |
||
7716 | cbradney | 600 | <translation>getSize(["name"]) -> (Breite,Höhe) |
7586 | cbradney | 601 | |
602 | Gibt das Zahlenpaar (Breite,Höhe) des Objekts "name" zurück. Ist "name" nicht |
||
603 | angegeben, wird das aktuelle Objekt verwendet. Die Grösse wird in der Masseinheit |
||
604 | des Dokuments angegeben - siehe die UNIT_*-Konstanten.</translation> |
||
605 | </message> |
||
606 | <message> |
||
7716 | cbradney | 607 | <source>getRotation(["name"]) -> integer |
7586 | cbradney | 608 | |
609 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
610 | and clockwise is positive. If "name" is not given the currently selected item |
||
611 | is used. |
||
612 | </source> |
||
7716 | cbradney | 613 | <translation>getRotation(["name"]) -> integer |
7586 | cbradney | 614 | |
615 | Gibt die Drehung des Objekts "name" in Grad zurück und im Uhrzeigersinn zurück. |
||
616 | Ist "name" nicht angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
617 | </message> |
||
618 | <message> |
||
7716 | cbradney | 619 | <source>getAllObjects() -> list |
7586 | cbradney | 620 | |
621 | Returns a list containing the names of all objects on the current page. |
||
622 | </source> |
||
7716 | cbradney | 623 | <translation>getAllObjects() -> list |
7586 | cbradney | 624 | |
625 | Gibt eine Liste zurück mit allen auf der aktuellen Seite verwendeten Objekte.</translation> |
||
626 | </message> |
||
627 | <message> |
||
7716 | cbradney | 628 | <source>moveObjectAbs(x, y [, "name"]) |
7586 | cbradney | 629 | |
630 | Moves the object "name" to a new location. The coordinates are expressed in |
||
631 | the current measurement unit of the document (see UNIT constants). If "name" |
||
632 | is not given the currently selected item is used. If the object "name" |
||
633 | belongs to a group, the whole group is moved. |
||
634 | </source> |
||
7716 | cbradney | 635 | <translation>moveObjectAbs(x, y [, "name"]) |
7586 | cbradney | 636 | |
637 | Bewegt das Objekt "name" an die neue Stelle. Die Koordinaten werden in der Masseinheit |
||
638 | des Dokuments angegeben (siehe UNIT_*-Konstanten). Ist "name" nicht angegeben, wird das |
||
639 | aktuelle Objekt benutzt. Gehört "name" zu einer Gruppe, wird die Gruppe verschoben.</translation> |
||
640 | </message> |
||
641 | <message> |
||
7716 | cbradney | 642 | <source>rotateObject(rot [, "name"]) |
7586 | cbradney | 643 | |
644 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
645 | rotated by the vertex that is currently selected as the rotation point - by |
||
646 | default, the top left vertext at zero rotation. Positive values mean counter |
||
647 | clockwise rotation when the default rotation point is used. If "name" is not |
||
648 | given the currently selected item is used. |
||
649 | </source> |
||
7716 | cbradney | 650 | <translation>rotateObject(rot [, "name"]) |
7586 | cbradney | 651 | |
652 | Dreht das Objekt "name" relativ um "rot" Grad. Beim Drehen wird der Ursprung verwendet, |
||
653 | der gerade aktiv ist - normalerweise der Punkt links oben. Positive Werte für "rot" bedeuten |
||
654 | Drehung in Uhrzeigersinn, negative Werte Drehung gegen den Uhrzeigersinn. Ist "name" nicht |
||
655 | angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
656 | </message> |
||
657 | <message> |
||
7716 | cbradney | 658 | <source>sizeObject(width, height [, "name"]) |
7586 | cbradney | 659 | |
660 | Resizes the object "name" to the given width and height. If "name" |
||
661 | is not given the currently selected item is used. |
||
662 | </source> |
||
7716 | cbradney | 663 | <translation>sizeObject(width, height [, "name"]) |
7586 | cbradney | 664 | |
665 | Ändert die Grösse von "name" auf die Breite width und die Höhe height. |
||
666 | ist "name" nicht angegeben, wird das aktuelle Objekt benutzt.</translation> |
||
667 | </message> |
||
668 | <message> |
||
7716 | cbradney | 669 | <source>getSelectedObject([nr]) -> string |
7586 | cbradney | 670 | |
671 | Returns the name of the selected object. "nr" if given indicates the number |
||
672 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
673 | second selected Object and so on. |
||
674 | </source> |
||
7716 | cbradney | 675 | <translation>getSelectedObject([nr]) -> string |
7586 | cbradney | 676 | |
677 | Gibt den Namen des ausgewählten Objekts zurück. "nr" gibt die Zahl des gewählten |
||
678 | Objekts an. 0 bedeutet das erste ausgewählte Objekt, 1 das zweite usw.</translation> |
||
679 | </message> |
||
680 | <message> |
||
7716 | cbradney | 681 | <source>selectionCount() -> integer |
7586 | cbradney | 682 | |
683 | Returns the number of selected objects. |
||
684 | </source> |
||
7716 | cbradney | 685 | <translation>selectionCount() -> integer |
7586 | cbradney | 686 | |
687 | Gibt die Anzahl der ausgewählten Objekte zurück.</translation> |
||
688 | </message> |
||
689 | <message> |
||
7716 | cbradney | 690 | <source>selectObject("name") |
7586 | cbradney | 691 | |
692 | Selects the object with the given "name". |
||
693 | </source> |
||
7716 | cbradney | 694 | <translation>selectObject("name") |
7586 | cbradney | 695 | |
696 | Wählt das Objekt "name" aus.</translation> |
||
697 | </message> |
||
698 | <message> |
||
7716 | cbradney | 699 | <source>deselectAll() |
7586 | cbradney | 700 | |
701 | Deselects all objects in the whole document. |
||
702 | </source> |
||
7716 | cbradney | 703 | <translation>deselectAll() |
7586 | cbradney | 704 | |
705 | Setzt alle Objekte im Dokument auf nicht ausgewählt.</translation> |
||
706 | </message> |
||
707 | <message> |
||
7716 | cbradney | 708 | <source>groupObjects(list) |
7586 | cbradney | 709 | |
710 | Groups the objects named in "list" together. "list" must contain the names |
||
711 | of the objects to be grouped. If "list" is not given the currently selected |
||
712 | items are used. |
||
713 | </source> |
||
7716 | cbradney | 714 | <translation>groupObjects(list) |
7586 | cbradney | 715 | |
716 | Gruppiert die Elemente in "list". "list" muss die Namen der zu gruppierenden |
||
717 | Objekte enthalten. Ist "list" nicht angegeben, werden die aktuell gewählten |
||
718 | Objekte verwendet.</translation> |
||
719 | </message> |
||
720 | <message> |
||
7716 | cbradney | 721 | <source>unGroupObjects("name") |
7586 | cbradney | 722 | |
723 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
7716 | cbradney | 724 | <translation>unGroupObjects("name") |
7586 | cbradney | 725 | |
726 | Zerstört die Gruppe "name". Ist "name" nicht angegeben, wird die aktuelle Gruppe verwendet.</translation> |
||
727 | </message> |
||
728 | <message> |
||
7716 | cbradney | 729 | <source>scaleGroup(factor [,"name"]) |
7586 | cbradney | 730 | |
731 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
732 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
733 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
734 | to 150 % of its original size. The value for "factor" must be greater than |
||
735 | 0. If "name" is not given the currently selected item is used. |
||
736 | |||
737 | May raise ValueError if an invalid scale factor is passed. |
||
738 | </source> |
||
7716 | cbradney | 739 | <translation>scaleGroup(factor [,"name"]) |
7586 | cbradney | 740 | |
741 | Skaliert die Gruppe, zu dem das Objekt "name" gehört. Werte grösser als 1 vergrössern das Objekt, |
||
742 | Werte kleiner als 1 verkleinert das Objekt. Zum Beispiel bedeutet 0.5 = 50 % oder 1.5=150% der |
||
743 | Originalgrösse. "factor" muss grösser als 0 sein. Ist "name" nicht angegeben, wird das aktuelle Objekt |
||
744 | benutzt.</translation> |
||
745 | </message> |
||
746 | <message> |
||
7716 | cbradney | 747 | <source>loadImage("filename" [, "name"]) |
7586 | cbradney | 748 | |
749 | Loads the picture "picture" into the image frame "name". If "name" is |
||
750 | not given the currently selected item is used. |
||
751 | |||
752 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
753 | </source> |
||
7716 | cbradney | 754 | <translation>loadImage("filename" [, "name"]) |
7586 | cbradney | 755 | |
756 | Lädt das Bild "picture" in den Bildrahmen "name". Ist "name" nicht angegeben, |
||
757 | wird der aktuelle Rahmen benutzt. |
||
758 | |||
759 | Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf</translation> |
||
760 | </message> |
||
761 | <message> |
||
7716 | cbradney | 762 | <source>scaleImage(x, y [, "name"]) |
7586 | cbradney | 763 | |
764 | Sets the scaling factors of the picture in the image frame "name". |
||
765 | If "name" is not given the currently selected item is used. A number of 1 |
||
766 | means 100 %. |
||
767 | |||
768 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
769 | </source> |
||
7716 | cbradney | 770 | <translation>scaleImage(x, y [, "name"]) |
7586 | cbradney | 771 | |
772 | Skaliert das Bild "name" auf die angegeben Werte. 1 bedeutet 100 %. Ist "name" |
||
773 | nicht angegeben, wird der aktuelle Bildrahmen verwendet. |
||
774 | |||
775 | Ist das Ziel kein Bildrahmen, tritt der Fehler WrongFrameTypeError auf,</translation> |
||
776 | </message> |
||
777 | <message> |
||
7716 | cbradney | 778 | <source>lockObject(["name"]) -> bool |
7586 | cbradney | 779 | |
7716 | cbradney | 780 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
7586 | cbradney | 781 | If "name" is not given the currently selected item is used. Returns true |
782 | if locked. |
||
783 | </source> |
||
7716 | cbradney | 784 | <translation>lockObject(["name"]) -> bool |
7586 | cbradney | 785 | |
786 | Sperrt das Objekt "name", wenn es freigegeben ist und entsperrt es, wenn es |
||
787 | gesperrt ist. Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet. |
||
788 | Gibt True zurück, wenn das Objekt gesperrt ist.</translation> |
||
789 | </message> |
||
790 | <message> |
||
7716 | cbradney | 791 | <source>isLocked(["name"]) -> bool |
7586 | cbradney | 792 | |
793 | Returns true if is the object "name" locked. If "name" is not given the |
||
794 | currently selected item is used. |
||
795 | </source> |
||
7716 | cbradney | 796 | <translation>isLocked(["name"]) -> bool |
7586 | cbradney | 797 | |
798 | Gibt True zurück, wenn "name" gesperrt ist. Ist "name" nicht angegeben, wird das aktuelle |
||
799 | Objekt verwendet.</translation> |
||
800 | </message> |
||
801 | <message> |
||
7716 | cbradney | 802 | <source>getFontNames() -> list |
7586 | cbradney | 803 | |
804 | Returns a list with the names of all available fonts. |
||
805 | </source> |
||
7716 | cbradney | 806 | <translation>getFontNames() -> list |
7586 | cbradney | 807 | |
808 | Gibt eine Liste mit allen verfügbaren Schriften zurück.</translation> |
||
809 | </message> |
||
810 | <message> |
||
7716 | cbradney | 811 | <source>getXFontNames() -> list of tuples |
7586 | cbradney | 812 | |
7716 | cbradney | 813 | Returns a larger font info. It's a list of the tuples with: |
7586 | cbradney | 814 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
815 | </source> |
||
7716 | cbradney | 816 | <translation>getXFontNames() -> list |
7586 | cbradney | 817 | |
818 | Gibt genaue Informationen zu einer Schrift zurück mit den Werten: |
||
819 | [ (Name in Scribus, Familie, wirklicher Name, Subset (1|0), embed PS (1|0), Fontdatei), (...), ... ]</translation> |
||
820 | </message> |
||
821 | <message> |
||
7716 | cbradney | 822 | <source>getLayers() -> list |
7586 | cbradney | 823 | |
824 | Returns a list with the names of all defined layers. |
||
825 | </source> |
||
7716 | cbradney | 826 | <translation>getLayers() -> list |
7586 | cbradney | 827 | |
828 | Gibt eine Liste mit allen Ebenen zurück.</translation> |
||
829 | </message> |
||
830 | <message> |
||
7716 | cbradney | 831 | <source>setActiveLayer("name") |
7586 | cbradney | 832 | |
833 | Sets the active layer to the layer named "name". |
||
834 | |||
7716 | cbradney | 835 | May raise NotFoundError if the layer can't be found. |
836 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 837 | </source> |
7716 | cbradney | 838 | <translation>setActiveLayer("name") |
7586 | cbradney | 839 | |
840 | Macht die Ebene "name" zur aktiven Ebene. |
||
841 | |||
842 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
843 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
844 | </message> |
||
845 | <message> |
||
7716 | cbradney | 846 | <source>getActiveLayer() -> string |
7586 | cbradney | 847 | |
848 | Returns the name of the current active layer. |
||
849 | </source> |
||
7716 | cbradney | 850 | <translation>getActiveLayer() -> string |
7586 | cbradney | 851 | |
852 | Gibt die aktive Ebene zurück.</translation> |
||
853 | </message> |
||
854 | <message> |
||
7716 | cbradney | 855 | <source>sentToLayer("layer" [, "name"]) |
7586 | cbradney | 856 | |
857 | Sends the object "name" to the layer "layer". The layer must exist. |
||
858 | If "name" is not given the currently selected item is used. |
||
859 | |||
7716 | cbradney | 860 | May raise NotFoundError if the layer can't be found. |
861 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 862 | </source> |
7716 | cbradney | 863 | <translation>sentToLayer("layer" [, "name"]) |
7586 | cbradney | 864 | |
865 | Verschiebt das Objekt "name" auf die Ebene "layer". Die Ebene muss |
||
866 | vorhanden sein. Ist "name" nicht angegeben, wird das aktive Objekt benutzt. |
||
867 | |||
868 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
869 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
870 | </message> |
||
871 | <message> |
||
7716 | cbradney | 872 | <source>setLayerVisible("layer", visible) |
7586 | cbradney | 873 | |
874 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
875 | the layer is invisible. |
||
876 | |||
7716 | cbradney | 877 | May raise NotFoundError if the layer can't be found. |
878 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 879 | </source> |
7716 | cbradney | 880 | <translation>setLayerVisible("layer", visible) |
7586 | cbradney | 881 | |
882 | Zeigt die Ebene "layer" an oder versteckt sie. Ist "visible" auf False gesetzt, |
||
883 | ist die Ebene unsichtbar. |
||
884 | |||
885 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf. |
||
886 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
887 | </message> |
||
888 | <message> |
||
7716 | cbradney | 889 | <source>deleteLayer("layer") |
7586 | cbradney | 890 | |
7716 | cbradney | 891 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
892 | exists or if it's the only layer in the document. |
||
7586 | cbradney | 893 | |
7716 | cbradney | 894 | May raise NotFoundError if the layer can't be found. |
895 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 896 | </source> |
7716 | cbradney | 897 | <translation>deleteLayer("layer") |
7586 | cbradney | 898 | |
899 | Löscht die Ebene "layer". Ist die Ebene nicht vorhanden oder ist nur eine |
||
900 | Ebene vorhanden, passiert gar nichts. |
||
901 | |||
902 | Ist die Ebene nicht vorhanden, tritt der Fehler NotFoundError auf, |
||
903 | Ist der Name der Ebene ungültig, tritt der Fehler ValueError auf.</translation> |
||
904 | </message> |
||
905 | <message> |
||
7716 | cbradney | 906 | <source>createLayer(layer) |
7586 | cbradney | 907 | |
908 | Creates a new layer with the name "name". |
||
909 | |||
7716 | cbradney | 910 | May raise ValueError if the layer name isn't acceptable. |
7586 | cbradney | 911 | </source> |
7716 | cbradney | 912 | <translation>createLayer(layer) |
7586 | cbradney | 913 | |
914 | Erzeugt einen Ebene mit dem Namen "layer". |
||
915 | |||
916 | Ist der Name ungültig, tritt der Fehler ValueError auf.</translation> |
||
917 | </message> |
||
918 | <message> |
||
7716 | cbradney | 919 | <source>getGuiLanguage() -> string |
7586 | cbradney | 920 | |
921 | Returns a string with the -lang value. |
||
922 | </source> |
||
7716 | cbradney | 923 | <translation>getGuiLanguage() -> string |
7586 | cbradney | 924 | |
925 | Gibt den Wert der Variable -lang zurück.</translation> |
||
926 | </message> |
||
927 | <message> |
||
7716 | cbradney | 928 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 929 | |
930 | Creates a new ellipse on the current page and returns its name. |
||
931 | The coordinates are given in the current measurement units of the document |
||
932 | (see UNIT constants). "name" should be a unique identifier for the object |
||
933 | because you need this name for further referencing of that object. If "name" |
||
934 | is not given Scribus will create one for you. |
||
935 | |||
7716 | cbradney | 936 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 937 | </source> |
7716 | cbradney | 938 | <translation>createEllipse(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 939 | |
940 | Erzeugt eine Ellipse auf der aktuellen Seite und gibt ihren Namen zurück. Die Koordinaten |
||
941 | werden in der Masseinheit des Dokuments angegeben (siehe UNIT-Konstanten). "name" sollte |
||
942 | das Objekt eindeutig identifizieren, weil Sie den Namen für spätere Zwecke brauchen. Ist "name" |
||
943 | nicht angegeben, erzeugt Scribus einen Namen für das Objekt. |
||
944 | |||
945 | Ist der Name schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
946 | </message> |
||
947 | <message> |
||
7716 | cbradney | 948 | <source>createImage(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 949 | |
950 | Creates a new picture frame on the current page and returns its name. The |
||
951 | coordinates are given in the current measurement units of the document. |
||
952 | "name" should be a unique identifier for the object because you need this |
||
953 | name for further access to that object. If "name" is not given Scribus will |
||
954 | create one for you. |
||
955 | |||
7716 | cbradney | 956 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 957 | </source> |
7716 | cbradney | 958 | <translation>createImage(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 959 | |
960 | Erzeugt einen Bildrahmen auf der aktuellen Seite und gibt seinen Namen zurück. |
||
961 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
962 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
963 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
964 | einen Namen für das Objekt fest. |
||
965 | |||
966 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
967 | </message> |
||
968 | <message> |
||
7716 | cbradney | 969 | <source>createText(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 970 | |
971 | Creates a new text frame on the actual page and returns its name. |
||
972 | The coordinates are given in the actual measurement unit of the document (see |
||
973 | UNIT constants). "name" should be a unique identifier for the object because |
||
974 | you need this name for further referencing of that object. If "name" is not |
||
975 | given Scribus will create one for you. |
||
976 | |||
7716 | cbradney | 977 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 978 | </source> |
7716 | cbradney | 979 | <translation>createText(x, y, width, height, ["name"]) -> string |
7586 | cbradney | 980 | |
981 | Erzeugt einen neuen Textrahmen auf der aktuellen Seite und gibt seinen Namen zurück. |
||
982 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
983 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
984 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
985 | einen Namen für das Objekt fest. |
||
986 | |||
987 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
988 | </message> |
||
989 | <message> |
||
7716 | cbradney | 990 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
7586 | cbradney | 991 | |
992 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
993 | its name. The coordinates are given in the current measurement unit of the |
||
994 | document (see UNIT constants). "name" should be a unique identifier for the |
||
995 | object because you need this name for further access to that object. If |
||
996 | "name" is not given Scribus will create one for you. |
||
997 | |||
7716 | cbradney | 998 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 999 | </source> |
7716 | cbradney | 1000 | <translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
7586 | cbradney | 1001 | |
1002 | Erzeugt eine Linie von P(x1,y1) zu P(x2,y2) und gibt ihren Namen zurück. |
||
1003 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
1004 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1005 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1006 | einen Namen für das Objekt fest. |
||
1007 | |||
1008 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf.</translation> |
||
1009 | </message> |
||
1010 | <message> |
||
7716 | cbradney | 1011 | <source>createPolyLine(list, ["name"]) -> string |
7586 | cbradney | 1012 | |
1013 | Creates a new polyline and returns its name. The points for the polyline are |
||
1014 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1015 | The coordinates are given in the current measurement units of the document (see |
||
1016 | UNIT constants). "name" should be a unique identifier for the object because |
||
1017 | you need this name for further access to that object. If "name" is not given |
||
1018 | Scribus will create one for you. |
||
1019 | |||
7716 | cbradney | 1020 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 1021 | May raise ValueError if an insufficient number of points is passed or if |
7716 | cbradney | 1022 | the number of values passed don't group into points without leftovers. |
7586 | cbradney | 1023 | </source> |
7716 | cbradney | 1024 | <translation>createPolyLine(list, ["name"]) -> string |
7586 | cbradney | 1025 | |
1026 | Erzeugt eine Mehrfachlinie und und gibt ihren Namen zurück. Die Punkte werden in |
||
1027 | der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn]. |
||
1028 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
1029 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1030 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1031 | einen Namen für das Objekt fest. |
||
1032 | |||
1033 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1034 | Ist die Anzahl der Punkte nicht genügend, tritt der Fehler ValueError auf.</translation> |
||
1035 | </message> |
||
1036 | <message> |
||
7716 | cbradney | 1037 | <source>createPolygon(list, ["name"]) -> string |
7586 | cbradney | 1038 | |
1039 | Creates a new polygon and returns its name. The points for the polygon are |
||
1040 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1041 | At least three points are required. There is no need to repeat the first point |
||
1042 | to close the polygon. The polygon is automatically closed by connecting the |
||
1043 | first and the last point. The coordinates are given in the current measurement |
||
1044 | units of the document (see UNIT constants). "name" should be a unique |
||
1045 | identifier for the object because you need this name for further access to that |
||
1046 | object. If "name" is not given Scribus will create one for you. |
||
1047 | |||
7716 | cbradney | 1048 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 1049 | May raise ValueError if an insufficient number of points is passed or if |
7716 | cbradney | 1050 | the number of values passed don't group into points without leftovers. |
7586 | cbradney | 1051 | </source> |
7716 | cbradney | 1052 | <translation>createPolygon(list, ["name"]) -> string |
7586 | cbradney | 1053 | |
1054 | Erzeugt ein Vieleck und gibt seinen Namen zurück. Die Punkte werden in |
||
1055 | der folgenden Reihenfolge gespeichert: [x1, y1, x2,...xn, yn]. Sie müssen |
||
1056 | mindestens 3 Punkte angeben, aber Sie müssen den ersten Punkt nicht zum |
||
1057 | Schliessen des Polygons erneut angeben - das geschieht automatisch. |
||
1058 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
1059 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1060 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1061 | einen Namen für das Objekt fest. |
||
1062 | |||
1063 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1064 | Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation> |
||
1065 | </message> |
||
1066 | <message> |
||
7716 | cbradney | 1067 | <source>createBezierLine(list, ["name"]) -> string |
7586 | cbradney | 1068 | |
1069 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1070 | curve are stored in the list "list" in the following order: |
||
1071 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1072 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1073 | and ky meaning the control point for the curve. The coordinates are given in |
||
1074 | the current measurement units of the document (see UNIT constants). "name" |
||
1075 | should be a unique identifier for the object because you need this name for |
||
1076 | further access to that object. If "name" is not given Scribus will create one |
||
1077 | for you. |
||
1078 | |||
7716 | cbradney | 1079 | May raise NameExistsError if you explicitly pass a name that's already used. |
7586 | cbradney | 1080 | May raise ValueError if an insufficient number of points is passed or if |
7716 | cbradney | 1081 | the number of values passed don't group into points without leftovers. |
7586 | cbradney | 1082 | </source> |
7716 | cbradney | 1083 | <translation>createBezierLine(list, ["name"]) -> string |
7586 | cbradney | 1084 | |
1085 | Erzeugt eine Bézierkurve und gibt ihren Namen zurück. Die Punkte werden in |
||
1086 | der folgenden Reihenfolge gespeichert: |
||
1087 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]. |
||
1088 | x und y steht dabei für die X- und Y-Koordinaten und kx und ky steht für den |
||
1089 | Kontrollpunkt der Kurve. |
||
1090 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
1091 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1092 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1093 | einen Namen für das Objekt fest. |
||
1094 | |||
1095 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1096 | Ist die Anzahl der Punkte nicht ausreichend, tritt der Fehler ValueError auf.</translation> |
||
1097 | </message> |
||
1098 | <message> |
||
7716 | cbradney | 1099 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
7586 | cbradney | 1100 | |
1101 | Creates a new pathText by merging the two objects "textbox" and |
||
1102 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1103 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1104 | unique identifier for the object because you need this name for further access |
||
1105 | to that object. If "name" is not given Scribus will create one for you. |
||
1106 | |||
7716 | cbradney | 1107 | May raise NameExistsError if you explicitly pass a name that's already used. |
1108 | May raise NotFoundError if one or both of the named base object don't exist. |
||
7586 | cbradney | 1109 | </source> |
7716 | cbradney | 1110 | <translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
7586 | cbradney | 1111 | |
1112 | Erzeugt Text auf einem Pfad, indem die Objekte "textbox" und "beziercurve" |
||
1113 | zusammengefügt werden. |
||
1114 | Die Koordinaten werden in der Masseinheit des Dokuments angegeben (siehe |
||
1115 | UNIT-Konstanten). "name" sollte das Objekt eindeutig identifizieren, weil Sie den |
||
1116 | Namen für spätere Zwecke benötigen. Wenn Sie "name" nicht angeben, legt Scribus |
||
1117 | einen Namen für das Objekt fest. |
||
1118 | |||
1119 | Ist das Objekt schon vorhanden, tritt der Fehler NameExistsError auf. |
||
1120 | Sind ein oder beide Objekte nicht vorhanden, tritt der Fehler NotFoundError auf.</translation> |
||
1121 | </message> |
||
1122 | <message> |
||
7716 | cbradney | 1123 | <source>deleteObject(["name"]) |
7586 | cbradney | 1124 | |
1125 | Deletes the item with the name "name". If "name" is not given the currently |
||
1126 | selected item is deleted. |
||
1127 | </source> |
||
7716 | cbradney | 1128 | <translation>deleteObject(["name"]) |
7586 | cbradney | 1129 | |
1130 | Löscht das Objekt "name". Ist "name" nicht angegeben, wird das aktuelle |
||
1131 | Objekt gelöscht.</translation> |
||
1132 | </message> |
||
1133 | <message> |
||
7716 | cbradney | 1134 | <source>objectExists(["name"]) -> bool |
7586 | cbradney | 1135 | |
1136 | Test if an object with specified name really exists in the document. |
||
1137 | The optional parameter is the object name. When no object name is given, |
||
1138 | returns True if there is something selected. |
||
1139 | </source> |
||
7716 | cbradney | 1140 | <translation>objectExists(["name"]) -> bool |
7586 | cbradney | 1141 | |
1142 | Gibt an, ob das Objekt mit dem Name "name" auch wirklich im aktuellen Dokument |
||
1143 | existiert. "name" ist optional, ist "name" nicht angegeben, wird True ausgegeben, wenn |
||
1144 | gerade ein Objekt selektiert ist.</translation> |
||
1145 | </message> |
||
1146 | <message> |
||
7716 | cbradney | 1147 | <source>setStyle("style" [, "name"]) |
7586 | cbradney | 1148 | |
1149 | Apply the named "style" to the object named "name". If is no object name |
||
7716 | cbradney | 1150 | given, it's applied on the selected object. |
7586 | cbradney | 1151 | </source> |
7716 | cbradney | 1152 | <translation>setStyle("style" [, "name"]) |
7586 | cbradney | 1153 | |
1154 | Setzt den Absatzstil "style" für das Objekt "name". Ist kein Objekt angegeben, |
||
1155 | wird der Stil auf das aktuelle Objekt angewendet.</translation> |
||
1156 | </message> |
||
1157 | <message> |
||
7716 | cbradney | 1158 | <source>getAllStyles() -> list |
7586 | cbradney | 1159 | |
1160 | Return a list of the names of all paragraph styles in the current document. |
||
1161 | </source> |
||
7716 | cbradney | 1162 | <translation>getAllStyles() -> list |
7586 | cbradney | 1163 | |
1164 | Gibt eine Listen mit allen Absatzstilen im aktuellen Dokument zurück.</translation> |
||
1165 | </message> |
||
1166 | <message> |
||
7716 | cbradney | 1167 | <source>currentPage() -> integer |
7586 | cbradney | 1168 | |
1169 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1170 | upwards, no matter what the displayed first page number of your document is. |
||
1171 | </source> |
||
7716 | cbradney | 1172 | <translation>currentPage() -> integer |
7586 | cbradney | 1173 | |
1174 | Gibt die Nummer der aktuellen Seite zurück. Seitenzahlen werden ab 1 gezählt, egal welche |
||
1175 | Seitenzahl auf der aktuellen Seite angezeigt wird.</translation> |
||
1176 | </message> |
||
1177 | <message> |
||
7716 | cbradney | 1178 | <source>redrawAll() |
7586 | cbradney | 1179 | |
1180 | Redraws all pages. |
||
1181 | </source> |
||
7716 | cbradney | 1182 | <translation>redrawAll() |
7586 | cbradney | 1183 | |
1184 | Baut alle Seiten neu auf.</translation> |
||
1185 | </message> |
||
1186 | <message> |
||
7716 | cbradney | 1187 | <source>savePageAsEPS("name") |
7586 | cbradney | 1188 | |
1189 | Saves the current page as an EPS to the file "name". |
||
1190 | |||
1191 | May raise ScribusError if the save failed. |
||
1192 | </source> |
||
7716 | cbradney | 1193 | <translation>savePageAsEPS("name") |
7586 | cbradney | 1194 | |
1195 | Speichert die aktuelle Seite als EPS-Datei mit dem Namen "name". |
||
1196 | |||
1197 | Schlägt das Speichern fehl, tritt der Fehler ScribusError auf.</translation> |
||
1198 | </message> |
||
1199 | <message> |
||
7716 | cbradney | 1200 | <source>deletePage(nr) |
7586 | cbradney | 1201 | |
1202 | Deletes the given page. Does nothing if the document contains only one page. |
||
1203 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1204 | page number is. |
||
1205 | |||
1206 | May raise IndexError if the page number is out of range |
||
1207 | </source> |
||
7716 | cbradney | 1208 | <translation>deletePage(nr) |
7586 | cbradney | 1209 | |
1210 | Löscht die Seite mit der Nummer "nr". Besteht das Dokument nur aus einer Seite, passiert nichts. |
||
1211 | Seitenzahlen werden von 1 aufwärts gezählt, egal, welche Seitenzahl Sie auf der aktuellen Seite |
||
1212 | im Dokument sehen. |
||
1213 | |||
1214 | Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf</translation> |
||
1215 | </message> |
||
1216 | <message> |
||
7716 | cbradney | 1217 | <source>gotoPage(nr) |
7586 | cbradney | 1218 | |
1219 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
7716 | cbradney | 1220 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
7586 | cbradney | 1221 | just sets the page that script commands will operates on. |
1222 | |||
1223 | May raise IndexError if the page number is out of range. |
||
1224 | </source> |
||
7716 | cbradney | 1225 | <translation>gotoPage(nr) |
7586 | cbradney | 1226 | |
1227 | Geht zur Seite "nr", das heisst, die Seite "nr" wird zur aktuellen Seite. Zur Zeit ändert |
||
1228 | sich allerdings nicht die Seite, die der User sieht, es wird nur intern die aktuelle |
||
1229 | Seite geändert. |
||
1230 | |||
1231 | Ist die Seitenzahl ungültig, tritt der Fehler IndexError auf.</translation> |
||
1232 | </message> |
||
1233 | <message> |
||
7716 | cbradney | 1234 | <source>pageCount() -> integer |
7586 | cbradney | 1235 | |
1236 | Returns the number of pages in the document. |
||
1237 | </source> |
||
7716 | cbradney | 1238 | <translation>pageCount() -> integer |
7586 | cbradney | 1239 | |
1240 | Gibt die Anzahl der Seiten im Dokument zurück.</translation> |
||
1241 | </message> |
||
1242 | <message> |
||
7716 | cbradney | 1243 | <source>getHGuides() -> list |
7586 | cbradney | 1244 | |
1245 | Returns a list containing positions of the horizontal guides. Values are in the |
||
7716 | cbradney | 1246 | document's current units - see UNIT_<type> constants. |
7586 | cbradney | 1247 | </source> |
7716 | cbradney | 1248 | <translation>getHGuides() -> list |
7586 | cbradney | 1249 | |
1250 | Gibt eine Liste zurück, die die Position der horizontalen Hilfslinien enthält. Die Werte |
||
1251 | werden in der Masseinheit des Dokuments angegeben, siehe UNIT-Konstanten.</translation> |
||
1252 | </message> |
||
1253 | <message> |
||
7716 | cbradney | 1254 | <source>setHGuides(list) |
7586 | cbradney | 1255 | |
1256 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
7716 | cbradney | 1257 | measured in the current document units - see UNIT_<type> constants. |
7586 | cbradney | 1258 | |
1259 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1260 | setHGuides([90,250]) # replace current guides entirely |
||
1261 | </source> |
||
7716 | cbradney | 1262 | <translation>setHGuides(list) |
7586 | cbradney | 1263 | |
1264 | Legt horizontale Hilfslinien fest, list muss eine Liste der Linien sein, angegeben in der Masseinheit |
||
1265 | des Dokuments, siehe UNIT-Konstanten. |
||
1266 | |||
1267 | Beispiel: |
||
1268 | setHGuides(getHGuides() + [200.0, 210.0] # fügt eine neue Hilfslinie hinzu |
||
1269 | </translation> |
||
1270 | </message> |
||
1271 | <message> |
||
7716 | cbradney | 1272 | <source>getVGuides() |
7586 | cbradney | 1273 | |
1274 | See getHGuides. |
||
1275 | </source> |
||
7716 | cbradney | 1276 | <translation>getVGuides() |
7586 | cbradney | 1277 | |
1278 | Siehe getHGuides.</translation> |
||
1279 | </message> |
||
1280 | <message> |
||
7716 | cbradney | 1281 | <source>setVGuides() |
7586 | cbradney | 1282 | |
1283 | See setHGuides. |
||
1284 | </source> |
||
7716 | cbradney | 1285 | <translation>setVGuides() |
7586 | cbradney | 1286 | |
1287 | Siehe setHGuides.</translation> |
||
1288 | </message> |
||
1289 | <message> |
||
7716 | cbradney | 1290 | <source>getPageSize() -> tuple |
7586 | cbradney | 1291 | |
7716 | cbradney | 1292 | Returns a tuple with page dimensions measured in the document's current units. |
1293 | See UNIT_<type> constants and getPageMargins() |
||
7586 | cbradney | 1294 | </source> |
7716 | cbradney | 1295 | <translation>getPageSize() -> tuple |
7586 | cbradney | 1296 | |
1297 | Gibt eine Liste mit der Seitengrösse in der aktuellen Masseinheit zurück, siehe |
||
1298 | UNIT-Konstanten und getPageMargins()</translation> |
||
1299 | </message> |
||
1300 | <message> |
||
7716 | cbradney | 1301 | <source>getPageItems() -> list |
7586 | cbradney | 1302 | |
1303 | Returns a list of tuples with items on the current page. The tuple is: |
||
7716 | cbradney | 1304 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
1305 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
7586 | cbradney | 1306 | the page... |
1307 | </source> |
||
7716 | cbradney | 1308 | <translation>getPageItems() -> list |
7586 | cbradney | 1309 | |
1310 | Gibt eine Liste zurück mit den Objekten auf der aktuelle Seite. Die Reihenfolge |
||
1311 | der Werte ist: (Name, Typ des Objekts, Anordnung). |
||
1312 | |||
7716 | cbradney | 1313 | Beispiel: [('Text1', 4, 0), ('Image1', 2, 1)] bedeutet, dass das Objekt Text1 heisst, |
7586 | cbradney | 1314 | ein Textrahmen ist (type 4) und sich auf der ersten Seite befindet...</translation> |
1315 | </message> |
||
1316 | <message> |
||
7716 | cbradney | 1317 | <source>setFillColor("color", ["name"]) |
7586 | cbradney | 1318 | |
1319 | Sets the fill color of the object "name" to the color "color". "color" |
||
1320 | is the name of one of the defined colors. If "name" is not given the |
||
1321 | currently selected item is used. |
||
1322 | </source> |
||
7716 | cbradney | 1323 | <translation>setFillColor("color", ["name"]) |
7586 | cbradney | 1324 | |
1325 | Setzt die Füllfarbe "color" für das Objekt "name". "color" ist der Name einer |
||
1326 | vorhandenen Farbe. Ist "name" nicht angegeben, wird das aktuelle Objekt |
||
1327 | verwendet.</translation> |
||
1328 | </message> |
||
1329 | <message> |
||
7716 | cbradney | 1330 | <source>setLineColor("color", ["name"]) |
7586 | cbradney | 1331 | |
1332 | Sets the line color of the object "name" to the color "color". If "name" |
||
1333 | is not given the currently selected item is used. |
||
1334 | </source> |
||
7716 | cbradney | 1335 | <translation>setLineColor("color", ["name"]) |
7586 | cbradney | 1336 | |
1337 | Setzt die Linienfarbe "color" für das Objekt "name". Ist "name" nicht angegeben, |
||
1338 | wird das aktuelle Objekt verwendet.</translation> |
||
1339 | </message> |
||
1340 | <message> |
||
7716 | cbradney | 1341 | <source>setLineWidth(width, ["name"]) |
7586 | cbradney | 1342 | |
1343 | Sets line width of the object "name" to "width". "width" must be in the |
||
1344 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1345 | given the currently selected item is used. |
||
1346 | |||
1347 | May raise ValueError if the line width is out of bounds. |
||
1348 | </source> |
||
7716 | cbradney | 1349 | <translation>setLineWidth(width, ["name"]) |
7586 | cbradney | 1350 | |
1351 | Setzt die Linienbreite für das Objekt "name" auf "width". "width" muss zwischen |
||
1352 | 0.0 und 12.0 gross sein und wird in Punkt angegeben. Ist "name" nicht angegeben, |
||
1353 | wird das aktuelle Objekt verwendet. |
||
1354 | |||
1355 | Ist die Linienbreite ungültig, tritt der Fehler ValueError auf.</translation> |
||
1356 | </message> |
||
1357 | <message> |
||
7716 | cbradney | 1358 | <source>setLineShade(shade, ["name"]) |
7586 | cbradney | 1359 | |
1360 | Sets the shading of the line color of the object "name" to "shade". |
||
1361 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1362 | (full color intensity). If "name" is not given the currently selected item |
||
1363 | is used. |
||
1364 | |||
1365 | May raise ValueError if the line shade is out of bounds. |
||
1366 | </source> |
||
7716 | cbradney | 1367 | <translation>setLineShade(shade, ["name"]) |
7586 | cbradney | 1368 | |
1369 | Setzt den Tonwert der Linie des Objekts "name" auf "shade". "shade" ist eine |
||
1370 | ganze Zahl zwischen 0 und 100. Ist "name" nicht angegeben, wird das aktuelle |
||
1371 | Objekt verwendet. |
||
1372 | |||
1373 | Ist der Tonwert ungültig, tritt der Fehler ValueError auf.</translation> |
||
1374 | </message> |
||
1375 | <message> |
||
7716 | cbradney | 1376 | <source>setLineJoin(join, ["name"]) |
7586 | cbradney | 1377 | |
1378 | Sets the line join style of the object "name" to the style "join". |
||
1379 | If "name" is not given the currently selected item is used. There are |
||
7716 | cbradney | 1380 | predefined constants for join - JOIN_<type>. |
7586 | cbradney | 1381 | </source> |
7716 | cbradney | 1382 | <translation>setLineJoin(join, ["name"]) |
7586 | cbradney | 1383 | |
1384 | Setzt die Ecken der Linien des Objekts "name" auf den Stil join. |
||
1385 | Ist "name" nicht angegeben, wird das aktuelle Obekt verwendet. |
||
1386 | Benutzen Sie die vorgegeben Konstaten des Typs JOIN_*.</translation> |
||
1387 | </message> |
||
1388 | <message> |
||
7716 | cbradney | 1389 | <source>setLineEnd(endtype, ["name"]) |
7586 | cbradney | 1390 | |
1391 | Sets the line cap style of the object "name" to the style "cap". |
||
1392 | If "name" is not given the currently selected item is used. There are |
||
7716 | cbradney | 1393 | predefined constants for "cap" - CAP_<type>. |
7586 | cbradney | 1394 | </source> |
7716 | cbradney | 1395 | <translation>SetLineEnd(endtype, ["name"]) |
7586 | cbradney | 1396 | |
1397 | Setzt die Linienenden des Objekts "name" auf den Stil "endtype". |
||
1398 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet. |
||
1399 | Benutzen Sie die vorgegebenen Konstanten des Typs CAP_*.</translation> |
||
1400 | </message> |
||
1401 | <message> |
||
7716 | cbradney | 1402 | <source>setLineStyle(style, ["name"]) |
7586 | cbradney | 1403 | |
1404 | Sets the line style of the object "name" to the style "style". If "name" |
||
1405 | is not given the currently selected item is used. There are predefined |
||
7716 | cbradney | 1406 | constants for "style" - LINE_<style>. |
7586 | cbradney | 1407 | </source> |
7716 | cbradney | 1408 | <translation>setLineStyle(style, ["name"]) |
7586 | cbradney | 1409 | |
1410 | Setzt den Linienstil des Objekts "name" auf den Stil "style". Ist "name" nicht |
||
1411 | angegeben, wird das aktuelle Objekt verwendet. Benutzen Sie die |
||
1412 | vorgegebenen Konstanten des Typs LINE_*.</translation> |
||
1413 | </message> |
||
1414 | <message> |
||
7716 | cbradney | 1415 | <source>setFillShade(shade, ["name"]) |
7586 | cbradney | 1416 | |
1417 | Sets the shading of the fill color of the object "name" to "shade". |
||
1418 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1419 | (full Color intensity). If "name" is not given the currently selected |
||
1420 | Item is used. |
||
1421 | |||
1422 | May raise ValueError if the fill shade is out of bounds. |
||
1423 | </source> |
||
7716 | cbradney | 1424 | <translation>setFillShade(shade, ["name"]) |
7586 | cbradney | 1425 | |
1426 | Setzt den Tonwert der Füllfarbe für das Objekt "name" auf "shade". |
||
1427 | "shade" muss eine ganze Zahl zwischen 0 und 100 sein. Ist "name" |
||
1428 | nicht angegeben, wird das aktuelle Objekt benutzt. |
||
1429 | |||
1430 | Ist der Tonwert ungültig, tritt der Fehler ValueError auf.</translation> |
||
1431 | </message> |
||
1432 | <message> |
||
7716 | cbradney | 1433 | <source>setCornerRadius(radius, ["name"]) |
7586 | cbradney | 1434 | |
1435 | Sets the corner radius of the object "name". The radius is expressed |
||
1436 | in points. If "name" is not given the currently selected item is used. |
||
1437 | |||
1438 | May raise ValueError if the corner radius is negative. |
||
1439 | </source> |
||
7716 | cbradney | 1440 | <translation>setCornerRadius(radius, ["name"]) |
7586 | cbradney | 1441 | |
1442 | Setzt den Eckradius für das Objekt "name" auf radius. Der Radius wird |
||
1443 | in Punkt angegeben. Ist "name" nicht angegeben, wird das aktuelle |
||
1444 | Objekt verwendet. |
||
1445 | |||
1446 | Ist der Eckradius negativ, tritt der Fehler ValueError auf.</translation> |
||
1447 | </message> |
||
1448 | <message> |
||
7716 | cbradney | 1449 | <source>setMultiLine("namedStyle", ["name"]) |
7586 | cbradney | 1450 | |
1451 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1452 | If "name" is not given the currently selected item is used. |
||
1453 | |||
7716 | cbradney | 1454 | May raise NotFoundError if the line style doesn't exist. |
7586 | cbradney | 1455 | </source> |
7716 | cbradney | 1456 | <translation>setMultiLine("namedStyle", ["name"]) |
7586 | cbradney | 1457 | |
1458 | Setzt den Linienstil für das Objekt "name" auf den angegebenen Stil. |
||
1459 | Ist "name" nicht angegeben, wird der aktuelle Stil benutzt. |
||
1460 | |||
1461 | Ist der Stil nicht vorhanden, tritt der Fehler NotFoundError auf.</translation> |
||
1462 | </message> |
||
1463 | <message> |
||
7716 | cbradney | 1464 | <source>getFont(["name"]) -> string |
7586 | cbradney | 1465 | |
1466 | Returns the font name for the text frame "name". If this text frame |
||
1467 | has some text selected the value assigned to the first character |
||
1468 | of the selection is returned. If "name" is not given the currently |
||
1469 | selected item is used. |
||
1470 | </source> |
||
7716 | cbradney | 1471 | <translation>getFont(["name"]) -> string |
7586 | cbradney | 1472 | |
1473 | Gibt den Namen der Schrift für den Textrahmen "name" zurück. Ist in |
||
1474 | dem Textfeld Text ausgewählt, wird die Schrift des ersten gewählten |
||
1475 | Zeichens angegeben. Ist "name" nicht angegeben, wird das aktuelle Objekt |
||
1476 | verwendet.</translation> |
||
1477 | </message> |
||
1478 | <message> |
||
7716 | cbradney | 1479 | <source>getTextLength(["name"]) -> integer |
7586 | cbradney | 1480 | |
1481 | Returns the length of the text in the text frame "name". |
||
1482 | If "name" is not given the currently selected item is used. |
||
1483 | </source> |
||
7716 | cbradney | 1484 | <translation>getTextLength(["name"]) -> integer |
7586 | cbradney | 1485 | |
1486 | Gibt die Länge des Textes im Textrahmen "name" zurück. |
||
1487 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1488 | </message> |
||
1489 | <message> |
||
7716 | cbradney | 1490 | <source>getText(["name"]) -> string |
7586 | cbradney | 1491 | |
1492 | Returns the text of the text frame "name". If this text frame has some text |
||
1493 | selected, the selected text is returned. All text in the frame, not just |
||
1494 | currently visible text, is returned. If "name" is not given the currently |
||
1495 | selected item is used. |
||
1496 | </source> |
||
7716 | cbradney | 1497 | <translation>getText(["name"]) -> string |
7586 | cbradney | 1498 | |
1499 | Gibt den Text aus dem Textrahmen "name" zurück. Ist in dem Textfeld Text markiert, |
||
1500 | wird der selektierte Text zurückgegeben. Der gesamte Text wird zurückgegeben, nicht |
||
1501 | nur der sichtbare Teil des Textes, Ist "name" nicht angegeben, wird das aktuelle |
||
1502 | Objekt verwendet.</translation> |
||
1503 | </message> |
||
1504 | <message> |
||
7716 | cbradney | 1505 | <source>getAllText(["name"]) -> string |
7586 | cbradney | 1506 | |
1507 | Returns the text of the text frame "name" and of all text frames which are |
||
1508 | linked with this frame. If this textframe has some text selected, the selected |
||
1509 | text is returned. If "name" is not given the currently selected item is |
||
1510 | used. |
||
1511 | </source> |
||
7716 | cbradney | 1512 | <translation>getAllText(["name"]) -> string |
7586 | cbradney | 1513 | |
1514 | Gibt den Text aus dem Textrahmen "name" zurück und aus allen Rahmen, die mit |
||
1515 | dem Rahmen "name" verbunden sind. Ist in dem Textfeld Text markiert, |
||
1516 | wird der selektierte Text zurückgegeben. Ist "name" nicht angegeben, wird das aktuelle |
||
1517 | Objekt verwendet.</translation> |
||
1518 | </message> |
||
1519 | <message> |
||
7716 | cbradney | 1520 | <source>getLineSpacing(["name"]) -> float |
7586 | cbradney | 1521 | |
1522 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1523 | points. If "name" is not given the currently selected item is used. |
||
1524 | </source> |
||
7716 | cbradney | 1525 | <translation>getLineSpacing(["name"]) -> float |
7586 | cbradney | 1526 | |
1527 | Gibt den Zeilenabstand für den Textrahmen "name" in Punkten zurück. |
||
1528 | Ist "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1529 | </message> |
||
1530 | <message> |
||
7716 | cbradney | 1531 | <source>getColumnGap(["name"]) -> float |
7586 | cbradney | 1532 | |
1533 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1534 | "name" is not given the currently selected item is used. |
||
1535 | </source> |
||
7716 | cbradney | 1536 | <translation>getColumnGap(["name"]) -> float |
7586 | cbradney | 1537 | |
1538 | Gibt den Zeilenabstand für den Text im Rahmen "name" in Punkten zurück. Ist |
||
1539 | "name" nicht angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1540 | </message> |
||
1541 | <message> |
||
7716 | cbradney | 1542 | <source>getColumns(["name"]) -> integer |
7586 | cbradney | 1543 | |
1544 | Gets the number of columns of the text frame "name". If "name" is not |
||
1545 | given the currently selected item is used. |
||
1546 | </source> |
||
7716 | cbradney | 1547 | <translation>getColumns(["name"]) -> integer |
7586 | cbradney | 1548 | |
1549 | Gibt die Anzahl der Spalten im Textrahmen "name" zurück. Ist "name" nicht |
||
1550 | angegeben, wird das aktuelle Objekt verwendet.</translation> |
||
1551 | </message> |
||
1552 | <message> |
||
7716 | cbradney | 1553 | <source>setText("text", ["name"]) |
7586 | cbradney | 1554 | |
1555 | Sets the text of the text frame "name" to the text of the string "text". |
||
7716 | cbradney | 1556 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
7586 | cbradney | 1557 | for more details. If "name" is not given the currently selected item is |
1558 | used. |
||
1559 | </source> |
||
7716 | cbradney | 1560 | <translation>setText("text", ["name"]) |
7586 | cbradney | 1561 | |
1562 | Ändert den Text im Rahmen "name" auf den String "text". |
||
7716 | cbradney | 1563 | Der Text muss URF8-kodiert sein - verwenden Sie z.B. unicode(text, 'iso-8859-2'). |
7586 | cbradney | 1564 | Lesen Sie in der FAQ nach für weitere Informationen. Ist "name" nicht angegeben, |
1565 | wird der aktuelle Textrahmen verwendet.</translation> |
||
1566 | </message> |
||
1567 | <message> |
||
7716 | cbradney | 1568 | <source>setFont("font", ["name"]) |
7586 | cbradney | 1569 | |
1570 | Sets the font of the text frame "name" to "font". If there is some text |
||
1571 | selected only the selected text is changed. If "name" is not given the |
||
1572 | currently selected item is used. |
||
1573 | |||
1574 | May throw ValueError if the font cannot be found. |
||
1575 | </source> |
||
7716 | cbradney | 1576 | <translation>setFont("font", ["name"]) |
7586 | cbradney | 1577 | |
1578 | Setzt die Schrift für den Rahmen "name" auf "font". Ist Text ausgewählt, |
||
1579 | wird nur die Markierung verändert. Ist "name" nicht angegeben, wird der |
||
1580 | aktuelle Textrahmen verwendet. |
||
1581 | |||
1582 | Ist die Schrift ungültig, wird der Fehler ValueError ausgegeben.</translation> |
||
1583 | </message> |
||
1584 | <message> |
||
7716 | cbradney | 1585 | <source>setFontSize(size, ["name"]) |
7586 | cbradney | 1586 | |
1587 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1588 | as a value in points. If there is some text selected only the selected text is |
||
1589 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1590 | currently selected item is used. |
||
1591 | |||
7716 | cbradney | 1592 | May throw ValueError for a font size that's out of bounds. |
7586 | cbradney | 1593 | </source> |
7716 | cbradney | 1594 | <translation>setFontSize(size, ["name"]) |
7586 | cbradney | 1595 | |
1596 | Setzt die Schriftgrösse im Textrahmen "name" auf den Wert "size". "size" ist |
||
1597 | ein Wert in Punkten zwischen 1 und 512. Ist eine Markierung vorhanden, wird |
||
1598 | nur die die Markiertung verändert. Ist "name" nicht angegeben, wird der aktuelle |
||
1599 | Textrahmen verwendet. |
||
1600 | |||
1601 | Ist die Schriftgrösse ungültig, wird der Fehler ValueError ausgegeben.</translation> |
||
1602 | </message> |
||
1603 | <message> |
||
7716 | cbradney | 1604 | <source>setLineSpacing(size, ["name"]) |
7586 | cbradney | 1605 | |
1606 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1607 | "size" is a value in points. If "name" is not given the currently selected |
||
1608 | item is used. |
||
1609 | |||
1610 | May throw ValueError if the line spacing is out of bounds. |
||
1611 | </source> |
||
7716 | cbradney | 1612 | <translation>setLineSpacing(size, ["name"]) |
7586 | cbradney | 1613 | |
1614 | Setzt den Zeilenabstand im Rahmen "name" auf den Wert "size". |
||
1615 | "size" ist ein Wert in Punkten. Ist "name" nicht angegeben, wird der |
||
1616 | aktuelle Textrahmen verwendet. |
||
1617 | |||
1618 | Ist der Wert für Zeilenabstand ungültig, wird der Fehler ValueError |
||
1619 | ausgegeben.</translation> |
||
1620 | </message> |
||
1621 | <message> |
||
7716 | cbradney | 1622 | <source>setColumnGap(size, ["name"]) |
7586 | cbradney | 1623 | |
1624 | Sets the column gap of the text frame "name" to the value "size". If |
||
1625 | "name" is not given the currently selected item is used. |
||
1626 | |||
1627 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1628 | </source> |
||
7716 | cbradney | 1629 | <translation>setColumnGap(size, ["name"]) |
7586 | cbradney | 1630 | |
1631 | Setzt den Spaltenabstand im Rahmen "name" auf den Wert "size". |
||
1632 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1633 | |||
1634 | Ist der Abstand nicht positiv, wird der Fehler ValueError ausgegeben.</translation> |
||
1635 | </message> |
||
1636 | <message> |
||
7716 | cbradney | 1637 | <source>setColumns(nr, ["name"]) |
7586 | cbradney | 1638 | |
1639 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1640 | If "name" is not given the currently selected item is used. |
||
1641 | |||
1642 | May throw ValueError if number of columns is not at least one. |
||
1643 | </source> |
||
7716 | cbradney | 1644 | <translation>setColumns(nr, ["name"]) |
7586 | cbradney | 1645 | |
1646 | Legt die Anzahl der Spalten im Textrahmen "name" fest auf "nr" fest. |
||
1647 | Wenn "name" nicht angegeben ist, wird der aktuelle Textrahmen verwendet. |
||
1648 | |||
1649 | Ist die Anzahl der Spalten kleiner als 1, wird der Fehler ValueError ausgegeben.</translation> |
||
1650 | </message> |
||
1651 | <message> |
||
7716 | cbradney | 1652 | <source>setTextAlignment(align, ["name"]) |
7586 | cbradney | 1653 | |
1654 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1655 | If "name" is not given the currently selected item is used. "align" should |
||
1656 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1657 | |||
1658 | May throw ValueError for an invalid alignment constant. |
||
1659 | </source> |
||
7716 | cbradney | 1660 | <translation>setTextAlignment(align, ["name"]) |
7586 | cbradney | 1661 | |
1662 | Richtet den Text in dem Objekt "name" nach der Art "align" aus. Ist "name" |
||
1663 | nicht angegeben, wird der aktuelle Textrahmen verwendet. "align" ist eine der |
||
1664 | ALIGN_*-Konstanten. Siehe dir(scribus). |
||
1665 | |||
1666 | Bei einem falschen Argument wird der Fehler ValueError ausgegeben.</translation> |
||
1667 | </message> |
||
1668 | <message> |
||
7716 | cbradney | 1669 | <source>selectText(start, count, ["name"]) |
7586 | cbradney | 1670 | |
1671 | Selects "count" characters of text in the text frame "name" starting from the |
||
1672 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1673 | text selection will be cleared. If "name" is not given the currently |
||
1674 | selected item is used. |
||
1675 | |||
1676 | May throw IndexError if the selection is outside the bounds of the text. |
||
1677 | </source> |
||
7716 | cbradney | 1678 | <translation>selectText(start, count, ["name"]) |
7586 | cbradney | 1679 | |
1680 | Markiert "count" Zeichen des Textrahmens "name" beginnend mit dem Zeichen "start". |
||
1681 | Die Zählung beginnt bei 0. Wenn "count"=0 ist, wird die Markierung gelöscht. Wenn "name" |
||
1682 | nicht angegeben ist, wird der aktuelle Textrahmen verwendet. |
||
1683 | |||
1684 | Wenn die Werte ungültig sind, wird der Fehler IndexError ausgegeben.</translation> |
||
1685 | </message> |
||
1686 | <message> |
||
7716 | cbradney | 1687 | <source>deleteText(["name"]) |
7586 | cbradney | 1688 | |
1689 | Deletes any text in the text frame "name". If there is some text selected, |
||
1690 | only the selected text will be deleted. If "name" is not given the currently |
||
1691 | selected item is used. |
||
1692 | </source> |
||
7716 | cbradney | 1693 | <translation>deleteText(["name"]) |
7586 | cbradney | 1694 | |
1695 | Löscht den Textrahmen "name". Wenn Text ausgewählt ist, wird nur die Markierung |
||
1696 | gelöscht. Ist "name" nicht angegeben, wird der aktuelle Textrahmen gelöscht.</translation> |
||
1697 | </message> |
||
1698 | <message> |
||
7716 | cbradney | 1699 | <source>setTextColor("color", ["name"]) |
7586 | cbradney | 1700 | |
1701 | Sets the text color of the text frame "name" to the color "color". If there |
||
1702 | is some text selected only the selected text is changed. If "name" is not |
||
1703 | given the currently selected item is used. |
||
1704 | </source> |
||
7716 | cbradney | 1705 | <translation>setTextColor("color", ["name"]) |
7586 | cbradney | 1706 | |
1707 | Ändert die Farbe des Textes auf "color". Wenn Text ausgewählt ist, wird die |
||
1708 | Markierung auf "color" geändert. Ist "name" nicht angegeben, wird der aktuelle |
||
1709 | Textrahmen verwendet.</translation> |
||
1710 | </message> |
||
1711 | <message> |
||
7716 | cbradney | 1712 | <source>setTextStroke("color", ["name"]) |
7586 | cbradney | 1713 | |
1714 | Set "color" of the text stroke. If "name" is not given the currently |
||
1715 | selected item is used. |
||
1716 | </source> |
||
7716 | cbradney | 1717 | <translation>setTextStroke("color", ["name"]) |
7586 | cbradney | 1718 | |
1719 | Setzt die Farbe "color" für die Umrandung des Textes. Ist "name" nicht angegeben, wird der aktuelle |
||
1720 | Textrahmen verwendet.</translation> |
||
1721 | </message> |
||
1722 | <message> |
||
7716 | cbradney | 1723 | <source>setTextShade(shade, ["name"]) |
7586 | cbradney | 1724 | |
1725 | Sets the shading of the text color of the object "name" to "shade". If |
||
1726 | there is some text selected only the selected text is changed. "shade" must |
||
1727 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1728 | intensity). If "name" is not given the currently selected item is |
||
1729 | used. |
||
1730 | </source> |
||
7716 | cbradney | 1731 | <translation>setTextShade(shade, ["name"]) |
7586 | cbradney | 1732 | |
1733 | Setzt den Tonwert für den Textrahmen "name" auf "shade". |
||
1734 | Ist Text in dem Rahmen ausgewählt, wird nur der ausgewählt Text |
||
1735 | verändert. "shade" muss eine ganze Zahl zwischen 0 und 100 sein. |
||
1736 | Ist "name" nicht vorhanden oder angegeben, wird der aktuelle Rahmen verwendet.</translation> |
||
1737 | </message> |
||
1738 | <message> |
||
7716 | cbradney | 1739 | <source>linkTextFrames("fromname", "toname") |
7586 | cbradney | 1740 | |
1741 | Link two text frames. The frame named "fromname" is linked to the |
||
1742 | frame named "toname". The target frame must be an empty text frame |
||
1743 | and must not link to or be linked from any other frames already. |
||
1744 | |||
1745 | May throw ScribusException if linking rules are violated. |
||
1746 | </source> |
||
7716 | cbradney | 1747 | <translation>linkTextFrames("fromname", "toname") |
7586 | cbradney | 1748 | |
1749 | Zwei Textrahmen verketten. "Fromname" wird mit "Toname" verkettet. Der Zielrahmen |
||
1750 | muss leer sein und darf nicht mit anderen Rahmen verkettet sein. |
||
1751 | |||
1752 | Werden die Regeln verletzt, erscheint der Fehler ScribusException.</translation> |
||
1753 | </message> |
||
1754 | <message> |
||
7716 | cbradney | 1755 | <source>unlinkTextFrames("name") |
7586 | cbradney | 1756 | |
1757 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
1758 | frame was in the middle of a chain, the previous and next frames will be |
||
7716 | cbradney | 1759 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
7586 | cbradney | 1760 | |
1761 | May throw ScribusException if linking rules are violated. |
||
1762 | </source> |
||
7716 | cbradney | 1763 | <translation>unlinkTextFrames("name") |
7586 | cbradney | 1764 | |
1765 | Entfernt den Textrahmen "name" aus der Reihe der verketteten Rahmen. Ist der |
||
1766 | zu entfernende Rahmen einer aus der Mitte der Reihe, wird der vorherige und nächste |
||
7716 | cbradney | 1767 | Rahmen miteinander verkettet, z.B. wird aus a->b->c dann a->c, wenn Sie Rahmen b |
7586 | cbradney | 1768 | entfernen. |
1769 | |||
1770 | Wenn die Verkettungsregeln gebrochen werden, erscheint der Fehler ScribusException.</translation> |
||
1771 | </message> |
||
1772 | <message> |
||
7716 | cbradney | 1773 | <source>traceText(["name"]) |
7586 | cbradney | 1774 | |
1775 | Convert the text frame "name" to outlines. If "name" is not given the |
||
1776 | currently selected item is used.</source> |
||
7716 | cbradney | 1777 | <translation>traceText(["name"]) |
7586 | cbradney | 1778 | |
1779 | Konvertiert den Textrahmen "name" in Umrisse. Ist "name" nicht vorhanden oder |
||
1780 | vorgegeben, wird der aktuelle Textrahmen verwendet.</translation> |
||
1781 | </message> |
||
1782 | <message> |
||
7716 | cbradney | 1783 | <source>progressReset() |
7586 | cbradney | 1784 | |
1785 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1786 | new progress bar use. See progressSet. |
||
1787 | </source> |
||
7716 | cbradney | 1788 | <translation>progressReset() |
7586 | cbradney | 1789 | |
1790 | Löscht die Fortschrittsanzeige. Wird aufgerufen, bevor eine neue Verlaufsanzeige benutzt wird. |
||
1791 | Siehe progressSet</translation> |
||
1792 | </message> |
||
1793 | <message> |
||
7716 | cbradney | 1794 | <source>progressTotal(max) |
7586 | cbradney | 1795 | |
7716 | cbradney | 1796 | Sets the progress bar's maximum steps value to the specified number. |
7586 | cbradney | 1797 | See progressSet. |
1798 | </source> |
||
7716 | cbradney | 1799 | <translation>progressTotal(max) |
7586 | cbradney | 1800 | |
1801 | Setzt die Gesamtzahl der Schritte für die Fortschrittsanzeige. Siehe progressSet.</translation> |
||
1802 | </message> |
||
1803 | <message> |
||
7716 | cbradney | 1804 | <source>progressSet(nr) |
7586 | cbradney | 1805 | |
1806 | Set the progress bar position to "nr", a value relative to the previously set |
||
1807 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1808 | total number of steps and the number of steps completed so far and it will |
||
1809 | display the percentage of steps that have been completed. You can specify the |
||
1810 | total number of steps with progressTotal(). The current number of steps is set |
||
1811 | with progressSet(). The progress bar can be rewound to the beginning with |
||
7716 | cbradney | 1812 | progressReset(). [based on info taken from Trolltech's Qt docs] |
7586 | cbradney | 1813 | </source> |
7716 | cbradney | 1814 | <translation>progressSet(nr) |
7586 | cbradney | 1815 | |
1816 | Die Fortschrittsanzeigen auf "nr" setzen, ein Wert relativ zum vorher festgelegten Wert |
||
1817 | für progressTotal. Die Fortschrittsanzeige verwendet Schritte zum Anzeigen des Verlaufs: |
||
1818 | Sie geben die Gesamtzahl der Schritte an und dann immer die fertigen Schritte - die Verlaufs- |
||
1819 | anzeige zeigt immer den Prozentsatz der fertigen Schritte an. Die Gesamtzahl der Schritte können |
||
1820 | Sie mit progressTotal() festlegen, die aktuelle Zahl der Schritte mit progressSet(). |
||
1821 | Die Fortschrittsanzeige kann mit progressReset() zurückgesetzt werden. [Infos sind aus den |
||
1822 | Dokumenten von Trolltech Qt]</translation> |
||
1823 | </message> |
||
1824 | <message> |
||
7716 | cbradney | 1825 | <source>setCursor() |
7586 | cbradney | 1826 | |
1827 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1828 | </source> |
||
7716 | cbradney | 1829 | <translation>setCursor() |
7586 | cbradney | 1830 | |
1831 | [nicht unterstützt!] Bitte verwenden Sie diese Funktion zur Zeit noch nicht.</translation> |
||
1832 | </message> |
||
1833 | <message> |
||
7716 | cbradney | 1834 | <source>docChanged(bool) |
7586 | cbradney | 1835 | |
7716 | cbradney | 1836 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
1837 | useful to call this procedure when you're changing the document, because Scribus |
||
1838 | won't automatically notice when you change the document using a script. |
||
7586 | cbradney | 1839 | </source> |
7716 | cbradney | 1840 | <translation>docChanged(bool) |
7586 | cbradney | 1841 | |
1842 | Aktiviert/Deaktivert das Icon zum Speichern und den entsprechenden Eintrag im Datei-Menü. |
||
1843 | Wenn Sie ein Dokument verändert ist es hilfreich, diese Funktion aufzurufen, weil Scribus im Script- |
||
1844 | Modus nicht automatisch erkennt, wann ein Dokument verändert wurde.</translation> |
||
1845 | </message> |
||
1846 | <message> |
||
7716 | cbradney | 1847 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
7586 | cbradney | 1848 | |
7716 | cbradney | 1849 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
1850 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1851 | Both `scaletoframe' and `proportional' are boolean. |
||
7586 | cbradney | 1852 | |
1853 | May raise WrongFrameTypeError. |
||
1854 | </source> |
||
7716 | cbradney | 1855 | <translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
7586 | cbradney | 1856 | |
1857 | Setzt die Eigenschaft An Rahmen anpassen für den gewählten Bildrahmen oder angegebenen |
||
1858 | Bildrahmen. |
||
7716 | cbradney | 1859 | 'proportional' verkleinert das Bild proportional zur ursprünglichen Grösse. |
1860 | Sowohl 'scaletoframe' als auch 'proportional' sind boolsche Werte. |
||
7586 | cbradney | 1861 | |
1862 | Kann den Fehler WrongFrameTypeError verursachen.</translation> |
||
1863 | </message> |
||
1864 | <message> |
||
7716 | cbradney | 1865 | <source>isLayerPrintable("layer") -> bool |
7586 | cbradney | 1866 | |
1867 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1868 | that the layer "layer" can be printed, a value of False means that printing |
||
1869 | the layer "layer" is disabled. |
||
1870 | |||
7716 | cbradney | 1871 | May raise NotFoundError if the layer can't be found. |
1872 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 1873 | </source> |
7716 | cbradney | 1874 | <translation>isLayerPrintable("layer") -> bool |
7586 | cbradney | 1875 | |
1876 | Gibt zurück, ob die Ebene gedruckt wird oder nicht. True bedeutet, dass die Ebene |
||
1877 | gedruckt wird, False bedeutet, dass das Drucken deaktiviert ist. |
||
1878 | |||
1879 | Der Fehler NotFoundError tritt auf, wenn die Ebene nicht existiert. |
||
1880 | Der Fehler ValueError tritt auf, wenn der Ebenenname ungültig ist.</translation> |
||
1881 | </message> |
||
1882 | <message> |
||
7716 | cbradney | 1883 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
7586 | cbradney | 1884 | |
1885 | Creates an image preview of font "name" with given text "sample" and size. |
||
1886 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1887 | image data is returned as a string. The optional "format" argument |
||
1888 | specifies the image format to generate, and supports any format allowed |
||
1889 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1890 | |||
7716 | cbradney | 1891 | May raise NotFoundError if the specified font can't be found. |
7586 | cbradney | 1892 | May raise ValueError if an empty sample or filename is passed. |
1893 | </source> |
||
7716 | cbradney | 1894 | <translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
7586 | cbradney | 1895 | |
1896 | Erzeugt ein Bild mit dem Text "sample" in der Schrift "font" und der Grösse "size". |
||
1897 | Ist "filename" angegeben, wird das Bild unter "filename" abgespeichert. Ansonsten |
||
1898 | werden die Bilddaten als String zurückgegeben. Das optionale Argument "format" gibt |
||
1899 | an, welches Bildformat generiert werden soll. Unterstützt werden die Formate, die auch |
||
1900 | QPixmap.save() kennt, zum Beispiel PPM, JPEG, PNG und XPM. |
||
1901 | |||
1902 | Der Fehler NotFoundError tritt auf, wenn die Schrift nicht gefunden wird. |
||
1903 | Der Fehler ValueError tritt auf, wenn "sample" leer ist oder der Dateiname ungültig ist.</translation> |
||
1904 | </message> |
||
1905 | <message> |
||
7716 | cbradney | 1906 | <source>setPDFBookmark("toggle", ["name"]) |
7586 | cbradney | 1907 | |
1908 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
1909 | If "name" is not given the currently selected item is used. |
||
1910 | |||
1911 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1912 | </source> |
||
7716 | cbradney | 1913 | <translation>setPDFBookmark("toggle", ["name"]) |
7586 | cbradney | 1914 | |
1915 | Legt fest (toggle=1), ob der Textrahmen "name" ein Lesezeichen ist oder nicht. |
||
1916 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1917 | |||
1918 | Der Fehler WrongFrameTypeError tritt auf, wenn der Zielrahmen kein Textrahmen ist</translation> |
||
1919 | </message> |
||
1920 | <message> |
||
7716 | cbradney | 1921 | <source>isPDFBookmark(["name"]) -> bool |
7586 | cbradney | 1922 | |
1923 | Returns true if the text frame "name" is a PDF bookmark. |
||
1924 | If "name" is not given the currently selected item is used. |
||
1925 | |||
1926 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1927 | </source> |
||
7716 | cbradney | 1928 | <translation>isPDFBookmark(["name"]) -> bool |
7586 | cbradney | 1929 | |
1930 | Gibt zurück, ob der Textrahmen "name" ein PDF-Lesezeichen ist. |
||
1931 | Ist "name" nicht angegeben, wird der aktuelle Textrahmen verwendet. |
||
1932 | |||
1933 | Der Fehler WrongFrameTypeError tritt auf, wenn der Zielrahmen kein Textrahmen ist</translation> |
||
1934 | </message> |
||
1935 | <message> |
||
7716 | cbradney | 1936 | <source>getPageMargins() |
7586 | cbradney | 1937 | |
1938 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
7716 | cbradney | 1939 | units. See UNIT_<type> constants and getPageSize(). |
7586 | cbradney | 1940 | </source> |
7716 | cbradney | 1941 | <translation>getPageMargins() |
7586 | cbradney | 1942 | |
1943 | Gibt die Seitenränder als ein Tupel in der gerade aktiven Einheit zurück (oben, unten, links, rechts). |
||
7716 | cbradney | 1944 | Mögliche Einheiten finden Sie bei UNIT_<tye> und getPageSize(). |
7586 | cbradney | 1945 | </translation> |
1946 | </message> |
||
1947 | <message> |
||
7716 | cbradney | 1948 | <source>getColorAsRGB("name") -> tuple |
7586 | cbradney | 1949 | |
1950 | Returns a tuple (R,G,B) containing the three color components of the |
||
1951 | color "name" from the current document, converted to the RGB color |
||
1952 | space. If no document is open, returns the value of the named color |
||
1953 | from the default document colors. |
||
1954 | |||
7716 | cbradney | 1955 | May raise NotFoundError if the named color wasn't found. |
7586 | cbradney | 1956 | May raise ValueError if an invalid color name is specified. |
1957 | </source> |
||
7716 | cbradney | 1958 | <translation>getColorAsRGB("name") -> tuple |
7586 | cbradney | 1959 | |
1960 | Returns a tuple (R,G,B) containing the three color components of the |
||
1961 | color "name" from the current document, converted to the RGB color |
||
1962 | space. If no document is open, returns the value of the named color |
||
1963 | from the default document colors. |
||
1964 | |||
7716 | cbradney | 1965 | May raise NotFoundError if the named color wasn't found. |
7586 | cbradney | 1966 | May raise ValueError if an invalid color name is specified.</translation> |
1967 | </message> |
||
1968 | <message> |
||
7716 | cbradney | 1969 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
7586 | cbradney | 1970 | |
1971 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
1972 | with the filter string "filter". A default filename or file path can also |
||
7716 | cbradney | 1973 | supplied, leave this string empty when you don't want to use it. A value of |
7586 | cbradney | 1974 | True for haspreview enables a small preview widget in the FileSelect box. When |
1975 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
1976 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
1977 | the dialog shows and returns only directories. The default for all of the |
||
1978 | opional parameters is False. |
||
1979 | |||
7716 | cbradney | 1980 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
1981 | For example 'Images (*.png *.xpm *.jpg)'. |
||
7586 | cbradney | 1982 | |
1983 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
1984 | |||
7716 | cbradney | 1985 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
1986 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
7586 | cbradney | 1987 | </source> |
7716 | cbradney | 1988 | <translation>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
7586 | cbradney | 1989 | |
1990 | Zeigt einen Datei öffnen-Dialog mit der Beschriftung "caption". Dateien werden |
||
1991 | gefiltert mit dem String "filter". Ein Standard-Dateiname oder -pfad kann auch |
||
1992 | angegeben werden. Lassen Sie diesen String leer, wenn Sie ihn nicht verwenden |
||
1993 | möchten. Der Wert "True" für "haspreview" aktiviert die Dateivorschau im FileSelect- |
||
1994 | Dialog. Wenn der "issave"-Parameter den Wert "True" hat, verhält sich der Dialog wie |
||
1995 | der "Speichern unter"-Dialog, ansonsten wie der "Date öffnen"-Dialog. Wenn der "isdir"- |
||
1996 | Parameter den Wert "True" hat, zeigt der Dialog lediglich Verzeichnisse an. Der Standard- |
||
1997 | wert aller optionalen Parameter ist "False"</translation> |
||
1998 | </message> |
||
1999 | <message> |
||
7716 | cbradney | 2000 | <source>getPropertyCType(object, property, includesuper=True) |
7586 | cbradney | 2001 | |
7716 | cbradney | 2002 | Returns the name of the C type of `property' of `object'. See getProperty() |
7586 | cbradney | 2003 | for details of arguments. |
2004 | |||
7716 | cbradney | 2005 | If `includesuper' is true, search inherited properties too. |
7586 | cbradney | 2006 | </source> |
7716 | cbradney | 2007 | <translation>getPropertyCType(object, property, includesuper=True) |
7586 | cbradney | 2008 | |
7716 | cbradney | 2009 | Returns the name of the C type of `property' of `object'. See getProperty() |
7586 | cbradney | 2010 | for details of arguments. |
2011 | |||
7716 | cbradney | 2012 | If `includesuper' is true, search inherited properties too.</translation> |
7586 | cbradney | 2013 | </message> |
2014 | <message> |
||
7716 | cbradney | 2015 | <source>getPropertyNames(object, includesuper=True) |
7586 | cbradney | 2016 | |
7716 | cbradney | 2017 | Return a list of property names supported by `object'. |
2018 | If `includesuper' is true, return properties supported |
||
7586 | cbradney | 2019 | by parent classes as well. |
2020 | </source> |
||
7716 | cbradney | 2021 | <translation>getPropertyNames(object, includesuper=True) |
7586 | cbradney | 2022 | |
7716 | cbradney | 2023 | Return a list of property names supported by `object'. |
2024 | If `includesuper' is true, return properties supported |
||
7586 | cbradney | 2025 | by parent classes as well.</translation> |
2026 | </message> |
||
2027 | <message> |
||
7716 | cbradney | 2028 | <source>getProperty(object, property) |
7586 | cbradney | 2029 | |
7716 | cbradney | 2030 | Return the value of the property `property' of the passed `object'. |
7586 | cbradney | 2031 | |
7716 | cbradney | 2032 | The `object' argument may be a string, in which case the named PageItem |
7586 | cbradney | 2033 | is searched for. It may also be a PyCObject, which may point to any |
2034 | C++ QObject instance. |
||
2035 | |||
7716 | cbradney | 2036 | The `property' argument must be a string, and is the name of the property |
2037 | to look up on `object'. |
||
7586 | cbradney | 2038 | |
2039 | The return value varies depending on the type of the property. |
||
2040 | </source> |
||
7716 | cbradney | 2041 | <translation>getProperty(object, property) |
7586 | cbradney | 2042 | |
7716 | cbradney | 2043 | Return the value of the property `property' of the passed `object'. |
7586 | cbradney | 2044 | |
7716 | cbradney | 2045 | The `object' argument may be a string, in which case the named PageItem |
7586 | cbradney | 2046 | is searched for. It may also be a PyCObject, which may point to any |
2047 | C++ QObject instance. |
||
2048 | |||
7716 | cbradney | 2049 | The `property' argument must be a string, and is the name of the property |
2050 | to look up on `object'. |
||
7586 | cbradney | 2051 | |
2052 | The return value varies depending on the type of the property.</translation> |
||
2053 | </message> |
||
2054 | <message> |
||
7716 | cbradney | 2055 | <source>setProperty(object, property, value) |
7586 | cbradney | 2056 | |
7716 | cbradney | 2057 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
2058 | compatible with the type of `property', an exception is raised. An exception may |
||
7586 | cbradney | 2059 | also be raised if the underlying setter fails. |
2060 | |||
2061 | See getProperty() for more information. |
||
2062 | </source> |
||
7716 | cbradney | 2063 | <translation>setProperty(object, property, value) |
7586 | cbradney | 2064 | |
7716 | cbradney | 2065 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
2066 | compatible with the type of `property', an exception is raised. An exception may |
||
7586 | cbradney | 2067 | also be raised if the underlying setter fails. |
2068 | |||
2069 | See getProperty() for more information.</translation> |
||
2070 | </message> |
||
2071 | <message> |
||
7716 | cbradney | 2072 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
7586 | cbradney | 2073 | |
7716 | cbradney | 2074 | Return a list of children of `object', possibly restricted to children |
2075 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
7586 | cbradney | 2076 | search recursively through children, grandchildren, etc. |
2077 | |||
2078 | See QObject::children() in the Qt docs for more information. |
||
2079 | </source> |
||
7716 | cbradney | 2080 | <translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
7586 | cbradney | 2081 | |
7716 | cbradney | 2082 | Return a list of children of `object', possibly restricted to children |
2083 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
7586 | cbradney | 2084 | search recursively through children, grandchildren, etc. |
2085 | |||
2086 | See QObject::children() in the Qt docs for more information.</translation> |
||
2087 | </message> |
||
2088 | <message> |
||
7716 | cbradney | 2089 | <source>getChild(object, childname, ofclass=None, recursive=True) |
7586 | cbradney | 2090 | |
7716 | cbradney | 2091 | Return the first child of `object' named `childname', possibly restricting |
2092 | the search to children of type name `ofclass'. If `recursive' is true, |
||
7586 | cbradney | 2093 | search recursively through children, grandchildren, etc. |
2094 | </source> |
||
7716 | cbradney | 2095 | <translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
7586 | cbradney | 2096 | |
7716 | cbradney | 2097 | Return a list of children of `object', possibly restricted to children |
2098 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
7586 | cbradney | 2099 | search recursively through children, grandchildren, etc. |
2100 | |||
2101 | See QObject::children() in the Qt docs for more information.</translation> |
||
2102 | </message> |
||
2103 | <message> |
||
7716 | cbradney | 2104 | <source>textOverflows(["name", nolinks]) -> integer |
7586 | cbradney | 2105 | |
2106 | Returns the actual number of overflowing characters in text frame "name". |
||
7716 | cbradney | 2107 | If is nolinks set to non zero value it takes only one frame - it doesn't |
7586 | cbradney | 2108 | use text frame linking. Without this parameter it search all linking chain. |
2109 | |||
2110 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2111 | </source> |
||
7716 | cbradney | 2112 | <translation>isLayerPrintable("layer") -> bool |
7586 | cbradney | 2113 | |
2114 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2115 | that the layer "layer" is visible, a value of False means that the layer |
||
2116 | "layer" is invisible. |
||
2117 | |||
7716 | cbradney | 2118 | May raise NotFoundError if the layer can't be found. |
2119 | May raise ValueError if the layer name isn't acceptable</translation> |
||
7586 | cbradney | 2120 | </message> |
2121 | <message> |
||
7716 | cbradney | 2122 | <source>newStyleDialog() -> string |
7586 | cbradney | 2123 | |
7716 | cbradney | 2124 | Shows 'Create new paragraph style' dialog. Function returns real |
7586 | cbradney | 2125 | style name or None when user cancels the dialog. |
2126 | </source> |
||
7716 | cbradney | 2127 | <translation>isLayerPrintable("layer") -> bool |
7586 | cbradney | 2128 | |
2129 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2130 | that the layer "layer" is visible, a value of False means that the layer |
||
2131 | "layer" is invisible. |
||
2132 | |||
7716 | cbradney | 2133 | May raise NotFoundError if the layer can't be found. |
2134 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2135 | </message> |
2136 | <message> |
||
7716 | cbradney | 2137 | <source>newDoc(size, margins, orientation, firstPageNumber, |
2138 | unit, facingPages, firstSideLeft) -> bool |
||
7586 | cbradney | 2139 | |
2140 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2141 | |||
2142 | Creates a new document and returns true if successful. The parameters have the |
||
2143 | following meaning: |
||
2144 | |||
2145 | size = A tuple (width, height) describing the size of the document. You can |
||
7716 | cbradney | 2146 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
7586 | cbradney | 2147 | |
2148 | margins = A tuple (left, right, top, bottom) describing the document |
||
2149 | margins |
||
2150 | |||
2151 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2152 | |||
2153 | firstPageNumer = is the number of the first page in the document used for |
||
7716 | cbradney | 2154 | pagenumbering. While you'll usually want 1, it's useful to have higher |
2155 | numbers if you're creating a document in several parts. |
||
7586 | cbradney | 2156 | |
2157 | unit: this value sets the measurement units used by the document. Use a |
||
2158 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2159 | UNIT_PICAS, UNIT_POINTS. |
||
2160 | |||
2161 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2162 | |||
2163 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2164 | |||
2165 | The values for width, height and the margins are expressed in the given unit |
||
2166 | for the document. PAPER_* constants are expressed in points. If your document |
||
2167 | is not in points, make sure to account for this. |
||
2168 | |||
2169 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2170 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2171 | </source> |
||
7716 | cbradney | 2172 | <translation>newDoc(size, margins, orientation, firstPageNumber, |
2173 | unit, facingPages, firstSideLeft) -> bool |
||
7586 | cbradney | 2174 | |
2175 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2176 | |||
2177 | Creates a new document and returns true if successful. The parameters have the |
||
2178 | following meaning: |
||
2179 | |||
2180 | size = A tuple (width, height) describing the size of the document. You can |
||
7716 | cbradney | 2181 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
7586 | cbradney | 2182 | |
2183 | margins = A tuple (left, right, top, bottom) describing the document |
||
2184 | margins |
||
2185 | |||
2186 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2187 | |||
2188 | firstPageNumer = is the number of the first page in the document used for |
||
7716 | cbradney | 2189 | pagenumbering. While you'll usually want 1, it's useful to have higher |
2190 | numbers if you're creating a document in several parts. |
||
7586 | cbradney | 2191 | |
2192 | unit: this value sets the measurement units used by the document. Use a |
||
2193 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2194 | UNIT_PICAS, UNIT_POINTS. |
||
2195 | |||
2196 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2197 | |||
2198 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2199 | |||
2200 | The values for width, height and the margins are expressed in the given unit |
||
2201 | for the document. PAPER_* constants are expressed in points. If your document |
||
2202 | is not in points, make sure to account for this. |
||
2203 | |||
2204 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2205 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2206 | </translation> |
||
2207 | </message> |
||
2208 | <message> |
||
7716 | cbradney | 2209 | <source>closeMasterPage() |
7586 | cbradney | 2210 | |
2211 | Closes the currently active master page, if any, and returns editing |
||
2212 | to normal. Begin editing with editMasterPage(). |
||
2213 | </source> |
||
7716 | cbradney | 2214 | <translation>closeMasterPage() |
7586 | cbradney | 2215 | |
2216 | Closes the currently active master page, if any, and returns editing |
||
2217 | to normal. Begin editing with editMasterPage().</translation> |
||
2218 | </message> |
||
2219 | <message> |
||
7716 | cbradney | 2220 | <source>masterPageNames() |
7586 | cbradney | 2221 | |
2222 | Returns a list of the names of all master pages in the document. |
||
2223 | </source> |
||
7716 | cbradney | 2224 | <translation>masterPageNames()(new line) |
7586 | cbradney | 2225 | (new line) |
2226 | Returns a list of the names of all master pages in the document.</translation> |
||
2227 | </message> |
||
2228 | <message> |
||
7716 | cbradney | 2229 | <source>editMasterPage(pageName) |
7586 | cbradney | 2230 | |
2231 | Enables master page editing and opens the named master page |
||
2232 | for editing. Finish editing with closeMasterPage(). |
||
2233 | </source> |
||
7716 | cbradney | 2234 | <translation>editMasterPage(pageName)(new line) |
7586 | cbradney | 2235 | (new line) |
2236 | Enables master page editing and opens the named master page(new line) |
||
2237 | for editing. Finish editing with closeMasterPage().</translation> |
||
2238 | </message> |
||
2239 | <message> |
||
7716 | cbradney | 2240 | <source>createMasterPage(pageName) |
7586 | cbradney | 2241 | |
2242 | Creates a new master page named pageName and opens it for |
||
2243 | editing. |
||
2244 | </source> |
||
7716 | cbradney | 2245 | <translation>createMasterPage(pageName)(new line) |
7586 | cbradney | 2246 | (new line) |
2247 | Creates a new master page named pageName and opens it for(new line) |
||
2248 | editing.</translation> |
||
2249 | </message> |
||
2250 | <message> |
||
7716 | cbradney | 2251 | <source>deleteMasterPage(pageName) |
7586 | cbradney | 2252 | |
2253 | Delete the named master page. |
||
2254 | </source> |
||
7716 | cbradney | 2255 | <translation>deleteMasterPage(pageName)(new line) |
7586 | cbradney | 2256 | (new line) |
2257 | Delete the named master page.</translation> |
||
2258 | </message> |
||
2259 | <message> |
||
7716 | cbradney | 2260 | <source>zoomDocument(double) |
7586 | cbradney | 2261 | |
2262 | Zoom the document in main GUI window. Actions have whole number |
||
2263 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2264 | </source> |
||
7716 | cbradney | 2265 | <translation>zoomDocument(double)(new line) |
7586 | cbradney | 2266 | (new line) |
2267 | Zoom the document in main GUI window. Actions have whole number(new line) |
||
2268 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.</translation> |
||
2269 | </message> |
||
2270 | <message> |
||
7716 | cbradney | 2271 | <source>getFillTransparency(["name"]) -> float |
7586 | cbradney | 2272 | |
2273 | Returns the fill transparency of the object "name". If "name" |
||
2274 | is not given the currently selected Item is used. |
||
2275 | </source> |
||
7716 | cbradney | 2276 | <translation>getFillTransparency(["name"]) -> float |
7586 | cbradney | 2277 | Returns the fill transparency of the object "name". If "name" |
2278 | is not given the currently selected Item is used.</translation> |
||
2279 | </message> |
||
2280 | <message> |
||
7716 | cbradney | 2281 | <source>getFillBlendmode(["name"]) -> integer |
7586 | cbradney | 2282 | |
2283 | Returns the fill blendmode of the object "name". If "name" |
||
2284 | is not given the currently selected Item is used. |
||
2285 | </source> |
||
7716 | cbradney | 2286 | <translation>getFillBlendmode(["name"]) -> integer |
7586 | cbradney | 2287 | Returns the fill blendmode of the object "name". If "name" |
2288 | is not given the currently selected Item is used.</translation> |
||
2289 | </message> |
||
2290 | <message> |
||
7716 | cbradney | 2291 | <source>getLineTransparency(["name"]) -> float |
7586 | cbradney | 2292 | |
2293 | Returns the line transparency of the object "name". If "name" |
||
2294 | is not given the currently selected Item is used. |
||
2295 | </source> |
||
7716 | cbradney | 2296 | <translation>getLineTransparency(["name"]) -> float |
7586 | cbradney | 2297 | Returns the line transparency of the object "name". If "name" |
2298 | is not given the currently selected Item is used.</translation> |
||
2299 | </message> |
||
2300 | <message> |
||
7716 | cbradney | 2301 | <source>getLineBlendmode(["name"]) -> integer |
7586 | cbradney | 2302 | |
2303 | Returns the line blendmode of the object "name". If "name" |
||
2304 | is not given the currently selected Item is used. |
||
2305 | </source> |
||
7716 | cbradney | 2306 | <translation>getLineBlendmode(["name"]) -> integer |
7586 | cbradney | 2307 | Returns the line blendmode of the object "name". If "name" |
2308 | is not given the currently selected Item is used.</translation> |
||
2309 | </message> |
||
2310 | <message> |
||
7716 | cbradney | 2311 | <source>setLayerLocked("layer", locked) |
7586 | cbradney | 2312 | |
2313 | Sets the layer "layer" to be locked or not. If locked is set to |
||
2314 | true the layer will be locked. |
||
2315 | |||
7716 | cbradney | 2316 | May raise NotFoundError if the layer can't be found. |
2317 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2318 | </source> |
7716 | cbradney | 2319 | <translation>setLayerLocked("layer", locked) |
7586 | cbradney | 2320 | Sets the layer "layer" to be locked or not. If locked is set to |
2321 | true the layer will be locked. |
||
7716 | cbradney | 2322 | May raise NotFoundError if the layer can't be found. |
2323 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2324 | </message> |
2325 | <message> |
||
7716 | cbradney | 2326 | <source>setLayerOutlined"layer", outline) |
7586 | cbradney | 2327 | |
2328 | Sets the layer "layer" to be locked or not. If outline is set to |
||
2329 | true the layer will be displayed outlined. |
||
2330 | |||
7716 | cbradney | 2331 | May raise NotFoundError if the layer can't be found. |
2332 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2333 | </source> |
7716 | cbradney | 2334 | <translation>setLayerOutlined"layer", outline) |
7586 | cbradney | 2335 | Sets the layer "layer" to be locked or not. If outline is set to |
2336 | true the layer will be displayed outlined. |
||
7716 | cbradney | 2337 | May raise NotFoundError if the layer can't be found. |
2338 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2339 | </message> |
2340 | <message> |
||
7716 | cbradney | 2341 | <source>setLayerFlow"layer", flow) |
7586 | cbradney | 2342 | |
2343 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
2344 | true text in layers above this one will flow around objects on this layer. |
||
2345 | |||
7716 | cbradney | 2346 | May raise NotFoundError if the layer can't be found. |
2347 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2348 | </source> |
7716 | cbradney | 2349 | <translation>setLayerFlow"layer", flow) |
7586 | cbradney | 2350 | Sets the layers "layer"(sp)(sp)flowcontrol to flow. If flow is set to |
2351 | true text in layers above this one will flow around objects on this layer. |
||
7716 | cbradney | 2352 | May raise NotFoundError if the layer can't be found. |
2353 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2354 | </message> |
2355 | <message> |
||
7716 | cbradney | 2356 | <source>setLayerBlendmode"layer", blend) |
7586 | cbradney | 2357 | |
2358 | Sets the layers "layer" blendmode to blend. |
||
2359 | |||
7716 | cbradney | 2360 | May raise NotFoundError if the layer can't be found. |
2361 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2362 | </source> |
7716 | cbradney | 2363 | <translation>setLayerBlendmode"layer", blend) |
7586 | cbradney | 2364 | Sets the layers "layer"(sp)(sp)blendmode to blend. |
7716 | cbradney | 2365 | May raise NotFoundError if the layer can't be found. |
2366 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2367 | </message> |
2368 | <message> |
||
7716 | cbradney | 2369 | <source>setLayerTransparency"layer", trans) |
7586 | cbradney | 2370 | |
2371 | Sets the layers "layer" transparency to trans. |
||
2372 | |||
7716 | cbradney | 2373 | May raise NotFoundError if the layer can't be found. |
2374 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2375 | </source> |
7716 | cbradney | 2376 | <translation>setLayerTransparency"layer", trans) |
7586 | cbradney | 2377 | Sets the layers "layer"(sp)(sp)transparency to trans. |
7716 | cbradney | 2378 | May raise NotFoundError if the layer can't be found. |
2379 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2380 | </message> |
2381 | <message> |
||
7716 | cbradney | 2382 | <source>isLayerLocked("layer") -> bool |
7586 | cbradney | 2383 | |
2384 | Returns whether the layer "layer" is locked or not, a value of True means |
||
2385 | that the layer "layer" is editable, a value of False means that the layer |
||
2386 | "layer" is locked. |
||
2387 | |||
7716 | cbradney | 2388 | May raise NotFoundError if the layer can't be found. |
2389 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2390 | </source> |
7716 | cbradney | 2391 | <translation>isLayerLocked("layer") -> bool |
7586 | cbradney | 2392 | Returns whether the layer "layer" is locked or not, a value of True means |
2393 | that the layer "layer" is editable, a value of False means that the layer |
||
2394 | "layer" is locked. |
||
7716 | cbradney | 2395 | May raise NotFoundError if the layer can't be found. |
2396 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2397 | </message> |
2398 | <message> |
||
7716 | cbradney | 2399 | <source>isLayerOutlined("layer") -> bool |
7586 | cbradney | 2400 | |
2401 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
2402 | that the layer "layer" is outlined, a value of False means that the layer |
||
2403 | "layer" is normal. |
||
2404 | |||
7716 | cbradney | 2405 | May raise NotFoundError if the layer can't be found. |
2406 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2407 | </source> |
7716 | cbradney | 2408 | <translation>isLayerOutlined("layer") -> bool |
7586 | cbradney | 2409 | Returns whether the layer "layer" is outlined or not, a value of True means |
2410 | that the layer "layer" is outlined, a value of False means that the layer |
||
2411 | "layer" is normal. |
||
7716 | cbradney | 2412 | May raise NotFoundError if the layer can't be found. |
2413 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2414 | </message> |
2415 | <message> |
||
7716 | cbradney | 2416 | <source>isLayerFlow("layer") -> bool |
7586 | cbradney | 2417 | |
2418 | Returns whether text flows around objects on layer "layer", a value of True means |
||
2419 | that text flows around, a value of False means that the text does not flow around. |
||
2420 | |||
7716 | cbradney | 2421 | May raise NotFoundError if the layer can't be found. |
2422 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2423 | </source> |
7716 | cbradney | 2424 | <translation>isLayerFlow("layer") -> bool |
7586 | cbradney | 2425 | Returns whether text flows around objects on layer "layer", a value of True means |
2426 | that text flows around, a value of False means that the text does not flow around. |
||
7716 | cbradney | 2427 | May raise NotFoundError if the layer can't be found. |
2428 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2429 | </message> |
2430 | <message> |
||
7716 | cbradney | 2431 | <source>getLayerBlendmode("layer") -> int |
7586 | cbradney | 2432 | |
2433 | Returns the "layer" layer blendmode, |
||
2434 | |||
7716 | cbradney | 2435 | May raise NotFoundError if the layer can't be found. |
2436 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2437 | </source> |
7716 | cbradney | 2438 | <translation>getLayerBlendmode("layer") -> int |
7586 | cbradney | 2439 | Returns the "layer" layer blendmode, |
7716 | cbradney | 2440 | May raise NotFoundError if the layer can't be found. |
2441 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2442 | </message> |
2443 | <message> |
||
7716 | cbradney | 2444 | <source>getLayerTransparency("layer") -> float |
7586 | cbradney | 2445 | |
2446 | Returns the "layer" layer transparency, |
||
2447 | |||
7716 | cbradney | 2448 | May raise NotFoundError if the layer can't be found. |
2449 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2450 | </source> |
7716 | cbradney | 2451 | <translation>getLayerTransparency("layer") -> float |
7586 | cbradney | 2452 | Returns the "layer" layer transparency, |
7716 | cbradney | 2453 | May raise NotFoundError if the layer can't be found. |
2454 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2455 | </message> |
2456 | <message> |
||
7716 | cbradney | 2457 | <source>textFlowMode("name" [, state]) |
7586 | cbradney | 2458 | |
2459 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
2460 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
2461 | Setting "state" to 0 will disable text flow. |
||
2462 | Setting "state" to 1 will make text flow around object frame. |
||
2463 | Setting "state" to 2 will make text flow around bounding box. |
||
2464 | Setting "state" to 3 will make text flow around contour line. |
||
2465 | If "state" is not passed, text flow is toggled. |
||
2466 | </source> |
||
7716 | cbradney | 2467 | <translation>textFlowMode("name" [, state]) |
7586 | cbradney | 2468 | Enables/disables "Text Flows Around Frame" feature for object "name". |
2469 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
2470 | Setting "state" to 0 will disable text flow. |
||
2471 | Setting "state" to 1 will make text flow around object frame. |
||
2472 | Setting "state" to 2 will make text flow around bounding box. |
||
2473 | Setting "state" to 3 will make text flow around contour line. |
||
2474 | If "state" is not passed, text flow is toggled.</translation> |
||
2475 | </message> |
||
2476 | <message> |
||
7716 | cbradney | 2477 | <source>duplicateObject(["name"]) -> string |
7586 | cbradney | 2478 | |
2479 | creates a Duplicate of the selected Object (or Selection Group). |
||
2480 | </source> |
||
7716 | cbradney | 2481 | <translation>duplicateObject(["name"]) -> string |
7586 | cbradney | 2482 | creates a Duplicate of the selected Object (or Selection Group).</translation> |
2483 | </message> |
||
2484 | <message> |
||
7716 | cbradney | 2485 | <source>setFillTransparency(transparency, ["name"]) |
7586 | cbradney | 2486 | |
2487 | Sets the fill transparency of the object "name" to transparency |
||
2488 | is the name of one of the defined colors. If "name" is not given the |
||
2489 | currently selected item is used. |
||
2490 | </source> |
||
7716 | cbradney | 2491 | <translation>setFillTransparency(transparency, ["name"]) |
7586 | cbradney | 2492 | Sets the fill transparency of the object "name" to transparency |
2493 | is the name of one of the defined colors. If "name" is not given the |
||
2494 | currently selected item is used.</translation> |
||
2495 | </message> |
||
2496 | <message> |
||
7716 | cbradney | 2497 | <source>setFillBlendmode(blendmode, ["name"]) |
7586 | cbradney | 2498 | |
2499 | Sets the fill blendmode of the object "name" to blendmode |
||
2500 | is the name of one of the defined colors. If "name" is not given the |
||
2501 | currently selected item is used. |
||
2502 | </source> |
||
7716 | cbradney | 2503 | <translation>setFillBlendmode(blendmode, ["name"]) |
7586 | cbradney | 2504 | Sets the fill blendmode of the object "name" to blendmode |
2505 | is the name of one of the defined colors. If "name" is not given the |
||
2506 | currently selected item is used.</translation> |
||
2507 | </message> |
||
2508 | <message> |
||
7716 | cbradney | 2509 | <source>setLineTransparency(transparency, ["name"]) |
7586 | cbradney | 2510 | |
2511 | Sets the line transparency of the object "name" to transparency |
||
2512 | is the name of one of the defined colors. If "name" is not given the |
||
2513 | currently selected item is used. |
||
2514 | </source> |
||
7716 | cbradney | 2515 | <translation>setLineTransparency(transparency, ["name"]) |
7586 | cbradney | 2516 | |
2517 | Sets the line transparency of the object "name" to transparency |
||
2518 | is the name of one of the defined colors. If "name" is not given the |
||
2519 | currently selected item is used. |
||
2520 | </translation> |
||
2521 | </message> |
||
2522 | <message> |
||
7716 | cbradney | 2523 | <source>setLineBlendmode(blendmode, ["name"]) |
7586 | cbradney | 2524 | |
2525 | Sets the line blendmode of the object "name" to blendmode |
||
2526 | is the name of one of the defined colors. If "name" is not given the |
||
2527 | currently selected item is used. |
||
2528 | </source> |
||
7716 | cbradney | 2529 | <translation>setLineBlendmode(blendmode, ["name"]) |
7586 | cbradney | 2530 | Sets the line blendmode of the object "name" to blendmode |
2531 | is the name of one of the defined colors. If "name" is not given the |
||
2532 | currently selected item is used.</translation> |
||
2533 | </message> |
||
2534 | <message> |
||
7716 | cbradney | 2535 | <source>setInfo("author", "info", "description") -> bool |
7586 | cbradney | 2536 | |
2537 | Sets the document information. "Author", "Info", "Description" are |
||
2538 | strings. |
||
2539 | </source> |
||
7716 | cbradney | 2540 | <translation>setInfo("author", "info", "description") -> bool |
7586 | cbradney | 2541 | Sets the document information. "Author", "Info", "Description" are |
2542 | strings.</translation> |
||
2543 | </message> |
||
2544 | <message> |
||
7716 | cbradney | 2545 | <source>getPageType() -> integer |
7586 | cbradney | 2546 | |
2547 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
2548 | </source> |
||
7716 | cbradney | 2549 | <translation>getPageType() -> integer |
7586 | cbradney | 2550 | |
2551 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page</translation> |
||
2552 | </message> |
||
2553 | <message> |
||
7716 | cbradney | 2554 | <source>getTextLines(["name"]) -> integer |
7586 | cbradney | 2555 | |
2556 | Returns the number of lines of the text in the text frame "name". |
||
2557 | If "name" is not given the currently selected item is used. |
||
2558 | </source> |
||
7716 | cbradney | 2559 | <translation>getTextLines(["name"]) -> integer |
7586 | cbradney | 2560 | |
2561 | Returns the number of lines of the text in the text frame "name". |
||
2562 | If "name" is not given the currently selected item is used.</translation> |
||
2563 | </message> |
||
2564 | <message> |
||
7716 | cbradney | 2565 | <source>defineColor("name", c, m, y, k) |
7586 | cbradney | 2566 | |
2567 | Defines a new color "name". The color Value is defined via four components: |
||
2568 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
2569 | the range from 0 to 255. |
||
2570 | |||
2571 | May raise ValueError if an invalid color name is specified. |
||
2572 | </source> |
||
7716 | cbradney | 2573 | <translation>defineColor("name", c, m, y, k) |
7586 | cbradney | 2574 | |
2575 | Defines a new color "name". The color Value is defined via four components: |
||
2576 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
2577 | the range from 0 to 255. |
||
2578 | |||
2579 | May raise ValueError if an invalid color name is specified.</translation> |
||
2580 | </message> |
||
2581 | <message> |
||
7716 | cbradney | 2582 | <source>getCornerRadius(["name"]) -> integer |
7586 | cbradney | 2583 | |
2584 | Returns the corner radius of the object "name". The radius is |
||
2585 | expressed in points. If "name" is not given the currently |
||
2586 | selected item is used. |
||
2587 | </source> |
||
7716 | cbradney | 2588 | <translation>getCornerRadius(["name"]) -> integer |
7586 | cbradney | 2589 | |
2590 | Returns the corner radius of the object "name". The radius is |
||
2591 | expressed in points. If "name" is not given the currently |
||
2592 | selected item is used.</translation> |
||
2593 | </message> |
||
2594 | <message> |
||
7716 | cbradney | 2595 | <source>getPosition(["name"]) -> (x,y) |
7586 | cbradney | 2596 | |
2597 | Returns a (x, y) tuple with the position of the object "name". |
||
2598 | If "name" is not given the currently selected item is used. |
||
2599 | The position is expressed in the actual measurement unit of the document |
||
7716 | cbradney | 2600 | - see UNIT_<type> for reference. |
7586 | cbradney | 2601 | </source> |
7716 | cbradney | 2602 | <translation>getPosition(["name"]) -> (x,y) |
7586 | cbradney | 2603 | |
2604 | Returns a (x, y) tuple with the position of the object "name". |
||
2605 | If "name" is not given the currently selected item is used. |
||
2606 | The position is expressed in the actual measurement unit of the document |
||
7716 | cbradney | 2607 | - see UNIT_<type> for reference.</translation> |
7586 | cbradney | 2608 | </message> |
2609 | <message> |
||
7716 | cbradney | 2610 | <source>rotateObjectAbs(rot [, "name"]) |
7586 | cbradney | 2611 | |
2612 | Sets the rotation of the object "name" to "rot". Positive values |
||
2613 | mean counter clockwise rotation. If "name" is not given the currently |
||
2614 | selected item is used. |
||
2615 | </source> |
||
7716 | cbradney | 2616 | <translation>rotateObjectAbs(rot [, "name"]) |
7586 | cbradney | 2617 | |
2618 | Sets the rotation of the object "name" to "rot". Positive values |
||
2619 | mean counter clockwise rotation. If "name" is not given the currently |
||
2620 | selected item is used.</translation> |
||
2621 | </message> |
||
2622 | <message> |
||
7716 | cbradney | 2623 | <source>setLayerPrintable("layer", printable) |
7586 | cbradney | 2624 | |
2625 | Sets the layer "layer" to be printable or not. If is the |
||
7716 | cbradney | 2626 | printable set to false the layer won't be printed. |
7586 | cbradney | 2627 | |
7716 | cbradney | 2628 | May raise NotFoundError if the layer can't be found. |
2629 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2630 | </source> |
7716 | cbradney | 2631 | <translation>setLayerPrintable("layer", printable) |
7586 | cbradney | 2632 | |
2633 | Sets the layer "layer" to be printable or not. If is the |
||
7716 | cbradney | 2634 | printable set to false the layer won't be printed. |
7586 | cbradney | 2635 | |
7716 | cbradney | 2636 | May raise NotFoundError if the layer can't be found. |
2637 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2638 | </message> |
2639 | <message> |
||
7716 | cbradney | 2640 | <source>isLayerVisible("layer") -> bool |
7586 | cbradney | 2641 | |
2642 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2643 | that the layer "layer" is visible, a value of False means that the layer |
||
2644 | "layer" is invisible. |
||
2645 | |||
7716 | cbradney | 2646 | May raise NotFoundError if the layer can't be found. |
2647 | May raise ValueError if the layer name isn't acceptable. |
||
7586 | cbradney | 2648 | </source> |
7716 | cbradney | 2649 | <translation>isLayerVisible("layer") -> bool |
7586 | cbradney | 2650 | |
2651 | Returns whether the layer "layer" is visible or not, a value of True means |
||
2652 | that the layer "layer" is visible, a value of False means that the layer |
||
2653 | "layer" is invisible. |
||
2654 | |||
7716 | cbradney | 2655 | May raise NotFoundError if the layer can't be found. |
2656 | May raise ValueError if the layer name isn't acceptable.</translation> |
||
7586 | cbradney | 2657 | </message> |
2658 | <message> |
||
7716 | cbradney | 2659 | <source>insertText("text", pos, ["name"]) |
7586 | cbradney | 2660 | |
2661 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2662 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2663 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2664 | not given the currently selected Item is used. |
||
2665 | |||
2666 | May throw IndexError for an insertion out of bounds. |
||
2667 | </source> |
||
7716 | cbradney | 2668 | <translation>insertText("text", pos, ["name"]) |
7586 | cbradney | 2669 | |
2670 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2671 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2672 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2673 | not given the currently selected Item is used. |
||
2674 | |||
2675 | May throw IndexError for an insertion out of bounds.</translation> |
||
2676 | </message> |
||
7716 | cbradney | 2677 | </context> |
2678 | <context> |
||
7586 | cbradney | 2679 | <name>About</name> |
2680 | <message> |
||
7716 | cbradney | 2681 | <source>Contributions from:</source> |
2682 | <translation>Beiträge von:</translation> |
||
7586 | cbradney | 2683 | </message> |
2684 | <message> |
||
7716 | cbradney | 2685 | <source>&About</source> |
2686 | <translation>Ü&ber</translation> |
||
7586 | cbradney | 2687 | </message> |
2688 | <message> |
||
7716 | cbradney | 2689 | <source>A&uthors</source> |
2690 | <translation>A&utoren</translation> |
||
7586 | cbradney | 2691 | </message> |
2692 | <message> |
||
7716 | cbradney | 2693 | <source>&Translations</source> |
2694 | <translation>Über&setzungen</translation> |
||
7586 | cbradney | 2695 | </message> |
2696 | <message> |
||
7716 | cbradney | 2697 | <source>&Online</source> |
2698 | <translation>&Online</translation> |
||
7586 | cbradney | 2699 | </message> |
2700 | <message> |
||
7716 | cbradney | 2701 | <source>&Close</source> |
2702 | <translation>Sch&liessen</translation> |
||
7586 | cbradney | 2703 | </message> |
2704 | <message> |
||
7716 | cbradney | 2705 | <source>Development Team:</source> |
2706 | <translation>Entwicklerteam:</translation> |
||
7586 | cbradney | 2707 | </message> |
2708 | <message> |
||
7716 | cbradney | 2709 | <source>Official Documentation:</source> |
2710 | <translation>Offizielle Dokumentation:</translation> |
||
7586 | cbradney | 2711 | </message> |
2712 | <message> |
||
7716 | cbradney | 2713 | <source>Other Documentation:</source> |
2714 | <translation>Andere Dokumentationen:</translation> |
||
7586 | cbradney | 2715 | </message> |
2716 | <message> |
||
7716 | cbradney | 2717 | <source>Homepage</source> |
2718 | <translation>Homepage</translation> |
||
7586 | cbradney | 2719 | </message> |
2720 | <message> |
||
7716 | cbradney | 2721 | <source>Online Reference</source> |
2722 | <translation>Onlinereferenz</translation> |
||
7586 | cbradney | 2723 | </message> |
2724 | <message> |
||
7716 | cbradney | 2725 | <source>Bugs and Feature Requests</source> |
2726 | <translation>Fehler und Featurewünsche</translation> |
||
7586 | cbradney | 2727 | </message> |
2728 | <message> |
||
7716 | cbradney | 2729 | <source>Mailing List</source> |
2730 | <translation>Mailingliste</translation> |
||
7586 | cbradney | 2731 | </message> |
2732 | <message> |
||
7716 | cbradney | 2733 | <source>Official Translations and Translators:</source> |
2734 | <translation>Offizielle Übersetzungen und Übersetzer:</translation> |
||
7586 | cbradney | 2735 | </message> |
2736 | <message> |
||
7716 | cbradney | 2737 | <source>Previous Translation Contributors:</source> |
2738 | <translation>Ehemalige Übersetzer:</translation> |
||
7586 | cbradney | 2739 | </message> |
2740 | <message> |
||
7716 | cbradney | 2741 | <source>About Scribus %1</source> |
2742 | <translation>Über Scribus %1</translation> |
||
7586 | cbradney | 2743 | </message> |
2744 | <message> |
||
7716 | cbradney | 2745 | <source>Wiki</source> |
2746 | <translation>Wiki</translation> |
||
7586 | cbradney | 2747 | </message> |
2748 | <message> |
||
7716 | cbradney | 2749 | <source>%1 %2 %3</source> |
2750 | <translation>%1 %2 %3</translation> |
||
7586 | cbradney | 2751 | </message> |
2752 | <message> |
||
7716 | cbradney | 2753 | <source>%3-%2-%1 %4 %5</source> |
2754 | <translation>%3-%2-%1 %4 %5</translation> |
||
7586 | cbradney | 2755 | </message> |
2756 | <message> |
||
7716 | cbradney | 2757 | <source>Using Ghostscript version %1</source> |
2758 | <translation>Ghostscript-Version: %1</translation> |
||
7586 | cbradney | 2759 | </message> |
2760 | <message> |
||
7716 | cbradney | 2761 | <source>No Ghostscript version available</source> |
2762 | <translation>Ghostscript ist nicht vorhanden</translation> |
||
7586 | cbradney | 2763 | </message> |
2764 | <message> |
||
7716 | cbradney | 2765 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
2766 | <translation><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></translation> |
||
7586 | cbradney | 2767 | </message> |
2768 | <message> |
||
7716 | cbradney | 2769 | <source>Build ID:</source> |
2770 | <translation>Build ID:</translation> |
||
7586 | cbradney | 2771 | </message> |
2772 | <message> |
||
7716 | cbradney | 2773 | <source>Mac OS&#174; X Aqua Port:</source> |
2774 | <translation>Mac OS&#174; X Aqua Port:</translation> |
||
7586 | cbradney | 2775 | </message> |
2776 | <message> |
||
7716 | cbradney | 2777 | <source>Windows&#174; Port:</source> |
2778 | <translation>Windows&#174; Port:</translation> |
||
7586 | cbradney | 2779 | </message> |
2780 | <message> |
||
7716 | cbradney | 2781 | <source>Tango Project Icons:</source> |
2782 | <translation>Icons aus dem Tango-Projekt:</translation> |
||
7586 | cbradney | 2783 | </message> |
2784 | <message> |
||
7716 | cbradney | 2785 | <source>&Updates</source> |
2786 | <translation>&Updates</translation> |
||
7586 | cbradney | 2787 | </message> |
2788 | <message> |
||
7716 | cbradney | 2789 | <source>Check for &Updates</source> |
2790 | <translation>Auf Updates über&prüfen</translation> |
||
7586 | cbradney | 2791 | </message> |
2792 | <message> |
||
7716 | cbradney | 2793 | <source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected. The Windows version does not use fontconfig or CUPS libraries.</source> |
2794 | <translation>Diese Leiste zeigt die Version, das Build-Datum und die kompilierte Unterstützung für Programmbibliotheken. C-C-T-F bedeutet im einzelnen: |
||
7586 | cbradney | 2795 | C= littleCMS C=CUPS, T=TIFF-Unterstützung, F=Fontconfig-Unterstützung. Der zusätzliche Buchstabe am Ende bezeichnet den Renderer, nämlich entweder C (Cairo) oder A (libart). Wird eine der Bibliotheken nicht unterstützt, steht statt dessen ein *. Hier wird auch die von Scribus gefundene Ghostscript-Version angezeigt. Die Windows-Version benutz weder fontconfig noch CUPS.</translation> |
2796 | </message> |
||
2797 | <message> |
||
7716 | cbradney | 2798 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
2799 | <translation>Auf Updates für Scribus überprüfen. Es werden keine Daten von Ihrem Computer übertragen.</translation> |
||
7586 | cbradney | 2800 | </message> |
7716 | cbradney | 2801 | <message> |
2802 | <source>OS/2&#174;/eComStation&#8482; Port:</source> |
||
2803 | <translation type="unfinished"></translation> |
||
2804 | </message> |
||
2805 | </context> |
||
2806 | <context> |
||
7586 | cbradney | 2807 | <name>AboutPlugins</name> |
2808 | <message> |
||
7716 | cbradney | 2809 | <source>Filename:</source> |
2810 | <translation>Dateiname:</translation> |
||
7586 | cbradney | 2811 | </message> |
2812 | <message> |
||
7716 | cbradney | 2813 | <source>Version:</source> |
2814 | <translation>Version:</translation> |
||
7586 | cbradney | 2815 | </message> |
2816 | <message> |
||
7716 | cbradney | 2817 | <source>Enabled:</source> |
2818 | <translation>Aktiviert:</translation> |
||
7586 | cbradney | 2819 | </message> |
2820 | <message> |
||
7716 | cbradney | 2821 | <source>Release Date:</source> |
2822 | <translation>Datum der Veröffentlichung:</translation> |
||
7586 | cbradney | 2823 | </message> |
2824 | <message> |
||
7716 | cbradney | 2825 | <source>Description:</source> |
2826 | <translation>Beschreibung:</translation> |
||
7586 | cbradney | 2827 | </message> |
2828 | <message> |
||
7716 | cbradney | 2829 | <source>Author(s):</source> |
2830 | <translation>Autor(en):</translation> |
||
7586 | cbradney | 2831 | </message> |
2832 | <message> |
||
7716 | cbradney | 2833 | <source>Copyright:</source> |
2834 | <translation>Urheberrecht:</translation> |
||
7586 | cbradney | 2835 | </message> |
2836 | <message> |
||
7716 | cbradney | 2837 | <source>License:</source> |
2838 | <translation>Lizenz:</translation> |
||
7586 | cbradney | 2839 | </message> |
7716 | cbradney | 2840 | </context> |
2841 | <context> |
||
7586 | cbradney | 2842 | <name>AboutPluginsBase</name> |
2843 | <message> |
||
7716 | cbradney | 2844 | <source>Scribus: About Plug-ins</source> |
2845 | <translation>Scribus: Über die Plug-Ins</translation> |
||
7586 | cbradney | 2846 | </message> |
2847 | <message> |
||
7716 | cbradney | 2848 | <source>&Close</source> |
2849 | <translation>Sch&liessen</translation> |
||
7586 | cbradney | 2850 | </message> |
2851 | <message> |
||
7716 | cbradney | 2852 | <source>Alt+C</source> |
2853 | <translation>Alt+C</translation> |
||
7586 | cbradney | 2854 | </message> |
7716 | cbradney | 2855 | </context> |
2856 | <context> |
||
7586 | cbradney | 2857 | <name>ActionManager</name> |
2858 | <message> |
||
7716 | cbradney | 2859 | <source>&New</source> |
2860 | <translation>&Neu</translation> |
||
7586 | cbradney | 2861 | </message> |
2862 | <message> |
||
7716 | cbradney | 2863 | <source>&Open...</source> |
2864 | <translation>Ö&ffnen...</translation> |
||
7586 | cbradney | 2865 | </message> |
2866 | <message> |
||
7716 | cbradney | 2867 | <source>&Close</source> |
2868 | <translation>Sch&liessen</translation> |
||
7586 | cbradney | 2869 | </message> |
2870 | <message> |
||
7716 | cbradney | 2871 | <source>&Save</source> |
2872 | <translation>&Speichern</translation> |
||
7586 | cbradney | 2873 | </message> |
2874 | <message> |
||
7716 | cbradney | 2875 | <source>Save &As...</source> |
2876 | <translation>Speichern &unter...</translation> |
||
7586 | cbradney | 2877 | </message> |
2878 | <message> |
||
7716 | cbradney | 2879 | <source>Re&vert to Saved</source> |
2880 | <translation>Neu la&den</translation> |
||
7586 | cbradney | 2881 | </message> |
2882 | <message> |
||
7716 | cbradney | 2883 | <source>Collect for O&utput...</source> |
2884 | <translation>Für Aus&gabe sammeln...</translation> |
||
7586 | cbradney | 2885 | </message> |
2886 | <message> |
||
7716 | cbradney | 2887 | <source>Get Text...</source> |
2888 | <translation>Text laden...</translation> |
||
7586 | cbradney | 2889 | </message> |
2890 | <message> |
||
7716 | cbradney | 2891 | <source>Append &Text...</source> |
2892 | <translation>&Text anfügen...</translation> |
||
7586 | cbradney | 2893 | </message> |
2894 | <message> |
||
7716 | cbradney | 2895 | <source>Get Image...</source> |
2896 | <translation>Bild laden...</translation> |
||
7586 | cbradney | 2897 | </message> |
2898 | <message> |
||
7716 | cbradney | 2899 | <source>Save &Text...</source> |
2900 | <translation>&Text speichern...</translation> |
||
7586 | cbradney | 2901 | </message> |
2902 | <message> |
||
7716 | cbradney | 2903 | <source>Save as P&DF...</source> |
2904 | <translation>Als &PDF speichern...</translation> |
||
7586 | cbradney | 2905 | </message> |
2906 | <message> |
||
7716 | cbradney | 2907 | <source>Document &Setup...</source> |
2908 | <translation>Dokument &einrichten...</translation> |
||
7586 | cbradney | 2909 | </message> |
2910 | <message> |
||
7716 | cbradney | 2911 | <source>&Print...</source> |
2912 | <translation>&Drucken...</translation> |
||
7586 | cbradney | 2913 | </message> |
2914 | <message> |
||
7716 | cbradney | 2915 | <source>&Quit</source> |
2916 | <translation>&Beenden</translation> |
||
7586 | cbradney | 2917 | </message> |
2918 | <message> |
||
7716 | cbradney | 2919 | <source>&Undo</source> |
2920 | <translation>&Rückgängig</translation> |
||
7586 | cbradney | 2921 | </message> |
2922 | <message> |
||
7716 | cbradney | 2923 | <source>&Redo</source> |
2924 | <translation>Wieder&herstellen</translation> |
||
7586 | cbradney | 2925 | </message> |
2926 | <message> |
||
7716 | cbradney | 2927 | <source>&Item Action Mode</source> |
2928 | <translation>&Objektbezogener Modus</translation> |
||
7586 | cbradney | 2929 | </message> |
2930 | <message> |
||
7716 | cbradney | 2931 | <source>Cu&t</source> |
2932 | <translation>&Ausschneiden</translation> |
||
7586 | cbradney | 2933 | </message> |
2934 | <message> |
||
7716 | cbradney | 2935 | <source>&Copy</source> |
2936 | <translation>&Kopieren</translation> |
||
7586 | cbradney | 2937 | </message> |
2938 | <message> |
||
7716 | cbradney | 2939 | <source>&Paste</source> |
2940 | <translation>Einf&ügen</translation> |
||
7586 | cbradney | 2941 | </message> |
2942 | <message> |
||
7716 | cbradney | 2943 | <source>Select &All</source> |
2944 | <translation>Alles aus&wählen</translation> |
||
7586 | cbradney | 2945 | </message> |
2946 | <message> |
||
7716 | cbradney | 2947 | <source>&Deselect All</source> |
2948 | <translation>Alles auswählen &rückgängig machen</translation> |
||
7586 | cbradney | 2949 | </message> |
2950 | <message> |
||
7716 | cbradney | 2951 | <source>&Search/Replace...</source> |
2952 | <translation>&Suchen && Ersetzen...</translation> |
||
7586 | cbradney | 2953 | </message> |
2954 | <message> |
||
7716 | cbradney | 2955 | <source>Edit Image...</source> |
2956 | <translation>Bild bearbeiten...</translation> |
||
7586 | cbradney | 2957 | </message> |
2958 | <message> |
||
7716 | cbradney | 2959 | <source>C&olors...</source> |
2960 | <translation>&Farben...</translation> |
||
7586 | cbradney | 2961 | </message> |
2962 | <message> |
||
7716 | cbradney | 2963 | <source>&Paragraph Styles...</source> |
2964 | <translation>&Absatzstile...</translation> |
||
7586 | cbradney | 2965 | </message> |
2966 | <message> |
||
7716 | cbradney | 2967 | <source>&Line Styles...</source> |
2968 | <translation>&Linienstile...</translation> |
||
7586 | cbradney | 2969 | </message> |
2970 | <message> |
||
7716 | cbradney | 2971 | <source>&Master Pages...</source> |
2972 | <translation>&Musterseiten...</translation> |
||
7586 | cbradney | 2973 | </message> |
2974 | <message> |
||
7716 | cbradney | 2975 | <source>P&references...</source> |
2976 | <translation>Allgemeine &Einstellungen...</translation> |
||
7586 | cbradney | 2977 | </message> |
2978 | <message> |
||
7716 | cbradney | 2979 | <source>%1 pt</source> |
2980 | <translation>%1 pt</translation> |
||
7586 | cbradney | 2981 | </message> |
2982 | <message> |
||
7716 | cbradney | 2983 | <source>&Other...</source> |
2984 | <translation>&Andere...</translation> |
||
7586 | cbradney | 2985 | </message> |
2986 | <message> |
||
7716 | cbradney | 2987 | <source>&Left</source> |
2988 | <translation>&Links</translation> |
||
7586 | cbradney | 2989 | </message> |
2990 | <message> |
||
7716 | cbradney | 2991 | <source>&Center</source> |
2992 | <translation>&Zentriert</translation> |
||
7586 | cbradney | 2993 | </message> |
2994 | <message> |
||
7716 | cbradney | 2995 | <source>&Right</source> |
2996 | <translation>&Rechts</translation> |
||
7586 | cbradney | 2997 | </message> |
2998 | <message> |
||
7716 | cbradney | 2999 | <source>&Block</source> |
3000 | <translation>&Blocksatz</translation> |
||
7586 | cbradney | 3001 | </message> |
3002 | <message> |
||
7716 | cbradney | 3003 | <source>&Forced</source> |
3004 | <translation>&Erzwungener Blocksatz</translation> |
||
7586 | cbradney | 3005 | </message> |
3006 | <message> |
||
7716 | cbradney | 3007 | <source>&%1 %</source> |
3008 | <translation>&%1 %</translation> |
||
7586 | cbradney | 3009 | </message> |
3010 | <message> |
||
7716 | cbradney | 3011 | <source>&Normal</source> |
3012 | <translation>&Normal</translation> |
||
7586 | cbradney | 3013 | </message> |
3014 | <message> |
||
7716 | cbradney | 3015 | <source>&Underline</source> |
3016 | <translation>&Unterstrichen</translation> |
||
7586 | cbradney | 3017 | </message> |
3018 | <message> |
||
7716 | cbradney | 3019 | <source>Underline &Words</source> |
3020 | <translation>Wörter unterst&richen</translation> |
||
7586 | cbradney | 3021 | </message> |
3022 | <message> |
||
7716 | cbradney | 3023 | <source>&Strike Through</source> |
3024 | <translation>&Durchgestrichen</translation> |
||
7586 | cbradney | 3025 | </message> |
3026 | <message> |
||
7716 | cbradney | 3027 | <source>&All Caps</source> |
3028 | <translation>&Grossbuchstaben</translation> |
||
7586 | cbradney | 3029 | </message> |
3030 | <message> |
||
7716 | cbradney | 3031 | <source>Small &Caps</source> |
3032 | <translation>&Kapitälchen</translation> |
||
7586 | cbradney | 3033 | </message> |
3034 | <message> |
||
7716 | cbradney | 3035 | <source>Su&perscript</source> |
3036 | <translation>&Hochgestellt</translation> |
||
7586 | cbradney | 3037 | </message> |
3038 | <message> |
||
7716 | cbradney | 3039 | <source>Su&bscript</source> |
3040 | <translation>&Tiefgestellt</translation> |
||
7586 | cbradney | 3041 | </message> |
3042 | <message> |
||
7716 | cbradney | 3043 | <source>S&hadow</source> |
3044 | <translation>&Schatten</translation> |
||
7586 | cbradney | 3045 | </message> |
3046 | <message> |
||
7716 | cbradney | 3047 | <source>&Image Effects</source> |
3048 | <translation>&Bildeffekte</translation> |
||
7586 | cbradney | 3049 | </message> |
3050 | <message> |
||
7716 | cbradney | 3051 | <source>&Tabulators...</source> |
3052 | <translation>&Tabulatoren...</translation> |
||
7586 | cbradney | 3053 | </message> |
3054 | <message> |
||
7716 | cbradney | 3055 | <source>D&uplicate</source> |
3056 | <translation>&Duplizieren</translation> |
||
7586 | cbradney | 3057 | </message> |
3058 | <message> |
||
7716 | cbradney | 3059 | <source>&Multiple Duplicate</source> |
3060 | <translation>&Mehrfach duplizieren</translation> |
||
7586 | cbradney | 3061 | </message> |
3062 | <message> |
||
7716 | cbradney | 3063 | <source>&Delete</source> |
3064 | <translation>&Löschen</translation> |
||
7586 | cbradney | 3065 | </message> |
3066 | <message> |
||
7716 | cbradney | 3067 | <source>&Group</source> |
3068 | <translation>&Gruppieren</translation> |
||
7586 | cbradney | 3069 | </message> |
3070 | <message> |
||
7716 | cbradney | 3071 | <source>&Ungroup</source> |
3072 | <translation>Gruppe auf&lösen</translation> |
||
7586 | cbradney | 3073 | </message> |
3074 | <message> |
||
7716 | cbradney | 3075 | <source>Is &Locked</source> |
3076 | <translation>Ge&sperrt</translation> |
||
7586 | cbradney | 3077 | </message> |
3078 | <message> |
||
7716 | cbradney | 3079 | <source>Si&ze is Locked</source> |
3080 | <translation>Grössen&änderung gesperrt</translation> |
||
7586 | cbradney | 3081 | </message> |
3082 | <message> |
||
7716 | cbradney | 3083 | <source>Lower to &Bottom</source> |
3084 | <translation>In den &Hintergrund</translation> |
||
7586 | cbradney | 3085 | </message> |
3086 | <message> |
||
7716 | cbradney | 3087 | <source>Raise to &Top</source> |
3088 | <translation>In den &Vordergrund</translation> |
||
7586 | cbradney | 3089 | </message> |
3090 | <message> |
||
7716 | cbradney | 3091 | <source>&Lower</source> |
3092 | <translation>Weiter nach hin&ten</translation> |
||
7586 | cbradney | 3093 | </message> |
3094 | <message> |
||
7716 | cbradney | 3095 | <source>&Raise</source> |
3096 | <translation>Weiter nach vor&n</translation> |
||
7586 | cbradney | 3097 | </message> |
3098 | <message> |
||
7716 | cbradney | 3099 | <source>Send to S&crapbook</source> |
3100 | <translation>In &Bibliothek speichern</translation> |
||
7586 | cbradney | 3101 | </message> |
3102 | <message> |
||
7716 | cbradney | 3103 | <source>&Attributes...</source> |
3104 | <translation>&Attribute...</translation> |
||
7586 | cbradney | 3105 | </message> |
3106 | <message> |
||
7716 | cbradney | 3107 | <source>I&mage Visible</source> |
3108 | <translation>Bild an&zeigen</translation> |
||
7586 | cbradney | 3109 | </message> |
3110 | <message> |
||
7716 | cbradney | 3111 | <source>&Update Image</source> |
3112 | <translation>Bild &aktualisieren</translation> |
||
7586 | cbradney | 3113 | </message> |
3114 | <message> |
||
7716 | cbradney | 3115 | <source>Adjust Frame to Image</source> |
3116 | <translation>Rahmen an Bild anpassen</translation> |
||
7586 | cbradney | 3117 | </message> |
3118 | <message> |
||
7716 | cbradney | 3119 | <source>Extended Image Properties</source> |
3120 | <translation>Erweiterte Bildeigenschaften</translation> |
||
7586 | cbradney | 3121 | </message> |
3122 | <message> |
||
7716 | cbradney | 3123 | <source>&Low Resolution</source> |
3124 | <translation>&Niedrige Auflösung</translation> |
||
7586 | cbradney | 3125 | </message> |
3126 | <message> |
||
7716 | cbradney | 3127 | <source>&Normal Resolution</source> |
3128 | <translation>Nor&male Auflösung</translation> |
||
7586 | cbradney | 3129 | </message> |
3130 | <message> |
||
7716 | cbradney | 3131 | <source>&Full Resolution</source> |
3132 | <translation>&Hohe Auflösung</translation> |
||
7586 | cbradney | 3133 | </message> |
3134 | <message> |
||
7716 | cbradney | 3135 | <source>Is PDF &Bookmark</source> |
3136 | <translation>Als PDF-&Lesezeichen verwenden</translation> |
||
7586 | cbradney | 3137 | </message> |
3138 | <message> |
||
7716 | cbradney | 3139 | <source>Is PDF A&nnotation</source> |
3140 | <translation>Als PDF-&Anmerkung verwenden</translation> |
||
7586 | cbradney | 3141 | </message> |
3142 | <message> |
||
7716 | cbradney | 3143 | <source>Annotation P&roperties</source> |
3144 | <translation>Eigenschaften der An&merkung</translation> |
||
7586 | cbradney | 3145 | </message> |
3146 | <message> |
||
7716 | cbradney | 3147 | <source>Field P&roperties</source> |
3148 | <translation>&Eigenschaften des Feldes</translation> |
||
7586 | cbradney | 3149 | </message> |
3150 | <message> |
||
7716 | cbradney | 3151 | <source>&Edit Shape...</source> |
3152 | <translation>&Form bearbeiten...</translation> |
||
7586 | cbradney | 3153 | </message> |
3154 | <message> |
||
7716 | cbradney | 3155 | <source>&Attach Text to Path</source> |
3156 | <translation>Text an Pfad aus&richten</translation> |
||
7586 | cbradney | 3157 | </message> |
3158 | <message> |
||
7716 | cbradney | 3159 | <source>&Detach Text from Path</source> |
3160 | <translation>Text von Pfad l&ösen</translation> |
||
7586 | cbradney | 3161 | </message> |
3162 | <message> |
||
7716 | cbradney | 3163 | <source>&Combine Polygons</source> |
3164 | <translation>Polygone &kombinieren</translation> |
||
7586 | cbradney | 3165 | </message> |
3166 | <message> |
||
7716 | cbradney | 3167 | <source>Split &Polygons</source> |
3168 | <translation>Polygone &teilen</translation> |
||
7586 | cbradney | 3169 | </message> |
3170 | <message> |
||
7716 | cbradney | 3171 | <source>&Bezier Curve</source> |
3172 | <translation>Bézier&kurve</translation> |
||
7586 | cbradney | 3173 | </message> |
3174 | <message> |
||
7716 | cbradney | 3175 | <source>&Image Frame</source> |
3176 | <translation>&Bildrahmen</translation> |
||
7586 | cbradney | 3177 | </message> |
3178 | <message> |
||
7716 | cbradney | 3179 | <source>&Polygon</source> |
3180 | <translation>&Polygon</translation> |
||
7586 | cbradney | 3181 | </message> |
3182 | <message> |
||
7716 | cbradney | 3183 | <source>&Text Frame</source> |
3184 | <translation>&Textrahmen</translation> |
||
7586 | cbradney | 3185 | </message> |
3186 | <message> |
||
7716 | cbradney | 3187 | <source>&Glyph...</source> |
3188 | <translation>&Zeichen...</translation> |
||
7586 | cbradney | 3189 | </message> |
3190 | <message> |
||
7716 | cbradney | 3191 | <source>Sample Text</source> |
3192 | <translation>Beispieltext</translation> |
||
7586 | cbradney | 3193 | </message> |
3194 | <message> |
||
7716 | cbradney | 3195 | <source>&Insert...</source> |
3196 | <translation>Ein&fügen...</translation> |
||
7586 | cbradney | 3197 | </message> |
3198 | <message> |
||
7716 | cbradney | 3199 | <source>Im&port...</source> |
3200 | <translation>&Importieren...</translation> |
||
7586 | cbradney | 3201 | </message> |
3202 | <message> |
||
7716 | cbradney | 3203 | <source>&Delete...</source> |
3204 | <translation>&Löschen...</translation> |
||
7586 | cbradney | 3205 | </message> |
3206 | <message> |
||
7716 | cbradney | 3207 | <source>&Copy...</source> |
3208 | <translation>&Kopieren...</translation> |
||
7586 | cbradney | 3209 | </message> |
3210 | <message> |
||
7716 | cbradney | 3211 | <source>&Move...</source> |
3212 | <translation>Ver&schieben...</translation> |
||
7586 | cbradney | 3213 | </message> |
3214 | <message> |
||
7716 | cbradney | 3215 | <source>&Apply Master Page...</source> |
3216 | <translation>Musterseite an&wenden...</translation> |
||
7586 | cbradney | 3217 | </message> |
3218 | <message> |
||
7716 | cbradney | 3219 | <source>Manage &Guides...</source> |
3220 | <translation>&Hilfslinien bearbeiten...</translation> |
||
7586 | cbradney | 3221 | </message> |
3222 | <message> |
||
7716 | cbradney | 3223 | <source>&50%</source> |
3224 | <translation>&50%</translation> |
||
7586 | cbradney | 3225 | </message> |
3226 | <message> |
||
7716 | cbradney | 3227 | <source>&75%</source> |
3228 | <translation>&75%</translation> |
||
7586 | cbradney | 3229 | </message> |
3230 | <message> |
||
7716 | cbradney | 3231 | <source>&100%</source> |
3232 | <translation>&100%</translation> |
||
7586 | cbradney | 3233 | </message> |
3234 | <message> |
||
7716 | cbradney | 3235 | <source>&200%</source> |
3236 | <translation>&200%</translation> |
||
7586 | cbradney | 3237 | </message> |
3238 | <message> |
||
7716 | cbradney | 3239 | <source>&Thumbnails</source> |
3240 | <translation>&Vorschaubilder</translation> |
||
7586 | cbradney | 3241 | </message> |
3242 | <message> |
||
7716 | cbradney | 3243 | <source>Show &Margins</source> |
3244 | <translation>&Ränder anzeigen</translation> |
||
7586 | cbradney | 3245 | </message> |
3246 | <message> |
||
7716 | cbradney | 3247 | <source>Show &Frames</source> |
3248 | <translation>Ra&hmen anzeigen</translation> |
||
7586 | cbradney | 3249 | </message> |
3250 | <message> |
||
7716 | cbradney | 3251 | <source>Show &Images</source> |
3252 | <translation>&Bilder anzeigen</translation> |
||
7586 | cbradney | 3253 | </message> |
3254 | <message> |
||
7716 | cbradney | 3255 | <source>Show &Grid</source> |
3256 | <translation>Ra&ster anzeigen</translation> |
||
7586 | cbradney | 3257 | </message> |
3258 | <message> |
||
7716 | cbradney | 3259 | <source>Show G&uides</source> |
3260 | <translation>&Hilfslinien anzeigen</translation> |
||
7586 | cbradney | 3261 | </message> |
3262 | <message> |
||
7716 | cbradney | 3263 | <source>Show &Baseline Grid</source> |
3264 | <translation>&Grundlinienraster anzeigen</translation> |
||
7586 | cbradney | 3265 | </message> |
3266 | <message> |
||
7716 | cbradney | 3267 | <source>Show &Text Chain</source> |
3268 | <translation>Ver&kettete Textrahmen anzeigen</translation> |
||
7586 | cbradney | 3269 | </message> |
3270 | <message> |
||
7716 | cbradney | 3271 | <source>Show Control Characters</source> |
3272 | <translation>Kontrollzeichen anzeigen</translation> |
||
7586 | cbradney | 3273 | </message> |
3274 | <message> |
||
7716 | cbradney | 3275 | <source>Sn&ap to Grid</source> |
3276 | <translation>Am &Raster ausrichten</translation> |
||
7586 | cbradney | 3277 | </message> |
3278 | <message> |
||
7716 | cbradney | 3279 | <source>Sna&p to Guides</source> |
3280 | <translation>An &Hilfslinien ausrichten</translation> |
||
7586 | cbradney | 3281 | </message> |
3282 | <message> |
||
7716 | cbradney | 3283 | <source>&Properties</source> |
3284 | <translation>&Eigenschaften</translation> |
||
7586 | cbradney | 3285 | </message> |
3286 | <message> |
||
7716 | cbradney | 3287 | <source>&Scrapbook</source> |
3288 | <translation>Biblio&thek</translation> |
||
7586 | cbradney | 3289 | </message> |
3290 | <message> |
||
7716 | cbradney | 3291 | <source>&Layers</source> |
3292 | <translation>E&benen</translation> |
||
7586 | cbradney | 3293 | </message> |
3294 | <message> |
||
7716 | cbradney | 3295 | <source>&Bookmarks</source> |
3296 | <translation>&Lesezeichen</translation> |
||
7586 | cbradney | 3297 | </message> |
3298 | <message> |
||
7716 | cbradney | 3299 | <source>&Measurements</source> |
3300 | <translation>&Abstandsmesser</translation> |
||
7586 | cbradney | 3301 | </message> |
3302 | <message> |
||
7716 | cbradney | 3303 | <source>Action &History</source> |
3304 | <translation>Aktions&verlauf</translation> |
||
7586 | cbradney | 3305 | </message> |
3306 | <message> |
||
7716 | cbradney | 3307 | <source>Preflight &Verifier</source> |
3308 | <translation>&Druckvorstufenüberprüfung</translation> |
||
7586 | cbradney | 3309 | </message> |
3310 | <message> |
||
7716 | cbradney | 3311 | <source>&Align and Distribute</source> |
3312 | <translation>&Ausrichten und Verteilen</translation> |
||
7586 | cbradney | 3313 | </message> |
3314 | <message> |
||
7716 | cbradney | 3315 | <source>&Tools</source> |
3316 | <translation>&Werkzeuge</translation> |
||
7586 | cbradney | 3317 | </message> |
3318 | <message> |
||
7716 | cbradney | 3319 | <source>P&DF Tools</source> |
3320 | <translation>&PDF-Werkzeuge</translation> |
||
7586 | cbradney | 3321 | </message> |
3322 | <message> |
||
7716 | cbradney | 3323 | <source>Select Item</source> |
3324 | <translation>Eintrag auswählen</translation> |
||
7586 | cbradney | 3325 | </message> |
3326 | <message> |
||
7716 | cbradney | 3327 | <source>T&able</source> |
3328 | <translation>Ta&belle</translation> |
||
7586 | cbradney | 3329 | </message> |
3330 | <message> |
||
7716 | cbradney | 3331 | <source>&Shape</source> |
3332 | <translation>&Form</translation> |
||
7586 | cbradney | 3333 | </message> |
3334 | <message> |
||
7716 | cbradney | 3335 | <source>&Line</source> |
3336 | <translation>&Linie</translation> |
||
7586 | cbradney | 3337 | </message> |
3338 | <message> |
||
7716 | cbradney | 3339 | <source>&Freehand Line</source> |
3340 | <translation>Frei&handlinie</translation> |
||
7586 | cbradney | 3341 | </message> |
3342 | <message> |
||
7716 | cbradney | 3343 | <source>Rotate Item</source> |
3344 | <translation>Objekt drehen</translation> |
||
7586 | cbradney | 3345 | </message> |
3346 | <message> |
||
7716 | cbradney | 3347 | <source>Zoom in or out</source> |
3348 | <translation>Vergrössern oder verkleinern</translation> |
||
7586 | cbradney | 3349 | </message> |
3350 | <message> |
||
7716 | cbradney | 3351 | <source>Zoom in</source> |
3352 | <translation>Vergrössern</translation> |
||
7586 | cbradney | 3353 | </message> |
3354 | <message> |
||
7716 | cbradney | 3355 | <source>Zoom out</source> |
3356 | <translation>Verkleinern</translation> |
||
7586 | cbradney | 3357 | </message> |
3358 | <message> |
||
7716 | cbradney | 3359 | <source>Edit Contents of Frame</source> |
3360 | <translation>Rahmeninhalt bearbeiten</translation> |
||
7586 | cbradney | 3361 | </message> |
3362 | <message> |
||
7716 | cbradney | 3363 | <source>Edit Text...</source> |
3364 | <translation>Text bearbeiten...</translation> |
||
7586 | cbradney | 3365 | </message> |
3366 | <message> |
||
7716 | cbradney | 3367 | <source>Link Text Frames</source> |
3368 | <translation>Textrahmen verketten</translation> |
||
7586 | cbradney | 3369 | </message> |
3370 | <message> |
||
7716 | cbradney | 3371 | <source>Unlink Text Frames</source> |
3372 | <translation>Verkettete Textrahmen trennen</translation> |
||
7586 | cbradney | 3373 | </message> |
3374 | <message> |
||
7716 | cbradney | 3375 | <source>&Eye Dropper</source> |
3376 | <translation>Farb&wähler</translation> |
||
7586 | cbradney | 3377 | </message> |
3378 | <message> |
||
7716 | cbradney | 3379 | <source>Copy Item Properties</source> |
3380 | <translation>Eigenschaften übertragen</translation> |
||
7586 | cbradney | 3381 | </message> |
3382 | <message> |
||
7716 | cbradney | 3383 | <source>Edit the text with the Story Editor</source> |
3384 | <translation>Text im Story Editor bearbeiten</translation> |
||
7586 | cbradney | 3385 | </message> |
3386 | <message> |
||
7716 | cbradney | 3387 | <source>Insert Text Frame</source> |
3388 | <translation>Textrahmen einfügen</translation> |
||
7586 | cbradney | 3389 | </message> |
3390 | <message> |
||
7716 | cbradney | 3391 | <source>Insert Image Frame</source> |
3392 | <translation>Bildrahmen einfügen</translation> |
||
7586 | cbradney | 3393 | </message> |
3394 | <message> |
||
7716 | cbradney | 3395 | <source>Insert Table</source> |
3396 | <translation>Tabelle einfügen</translation> |
||
7586 | cbradney | 3397 | </message> |
3398 | <message> |
||
7716 | cbradney | 3399 | <source>Insert Shape</source> |
3400 | <translation>Form einfügen</translation> |
||
7586 | cbradney | 3401 | </message> |
3402 | <message> |
||
7716 | cbradney | 3403 | <source>Insert Polygon</source> |
3404 | <translation>Polygon einfügen</translation> |
||
7586 | cbradney | 3405 | </message> |
3406 | <message> |
||
7716 | cbradney | 3407 | <source>Insert Line</source> |
3408 | <translation>Linie einfügen</translation> |
||
7586 | cbradney | 3409 | </message> |
3410 | <message> |
||
7716 | cbradney | 3411 | <source>Insert Bezier Curve</source> |
3412 | <translation>Bézierkurve einfügen</translation> |
||
7586 | cbradney | 3413 | </message> |
3414 | <message> |
||
7716 | cbradney | 3415 | <source>Insert Freehand Line</source> |
3416 | <translation>Freihandlinie einfügen</translation> |
||
7586 | cbradney | 3417 | </message> |
3418 | <message> |
||
7716 | cbradney | 3419 | <source>&Manage Pictures</source> |
3420 | <translation>Bilder &verwalten</translation> |
||
7586 | cbradney | 3421 | </message> |
3422 | <message> |
||
7716 | cbradney | 3423 | <source>&Hyphenate Text</source> |
3424 | <translation>Silben&trennung anwenden</translation> |
||
7586 | cbradney | 3425 | </message> |
3426 | <message> |
||
7716 | cbradney | 3427 | <source>&Generate Table Of Contents</source> |
3428 | <translation>&Inhaltsverzeichnis erstellen</translation> |
||
7586 | cbradney | 3429 | </message> |
3430 | <message> |
||
7716 | cbradney | 3431 | <source>&About Scribus</source> |
3432 | <translation>&Über Scribus</translation> |
||
7586 | cbradney | 3433 | </message> |
3434 | <message> |
||
7716 | cbradney | 3435 | <source>About &Qt</source> |
3436 | <translation>Über &Qt</translation> |
||
7586 | cbradney | 3437 | </message> |
3438 | <message> |
||
7716 | cbradney | 3439 | <source>Toolti&ps</source> |
3440 | <translation>Tool&tips</translation> |
||
7586 | cbradney | 3441 | </message> |
3442 | <message> |
||
7716 | cbradney | 3443 | <source>Scribus &Manual...</source> |
3444 | <translation>&Handbuch für Scribus...</translation> |
||
7586 | cbradney | 3445 | </message> |
3446 | <message> |
||
7716 | cbradney | 3447 | <source>Smart &Hyphen</source> |
3448 | <translation>Bedingtes &Trennzeichen</translation> |
||
7586 | cbradney | 3449 | </message> |
3450 | <message> |
||
7716 | cbradney | 3451 | <source>Non Breaking Dash</source> |
3452 | <translation>Geschützter Bindestrich</translation> |
||
7586 | cbradney | 3453 | </message> |
3454 | <message> |
||
7716 | cbradney | 3455 | <source>Non Breaking &Space</source> |
3456 | <translation>Geschütztes &Leerzeichen</translation> |
||
7586 | cbradney | 3457 | </message> |
3458 | <message> |
||
7716 | cbradney | 3459 | <source>Page &Number</source> |
3460 | <translation>Seiten&zahl</translation> |
||
7586 | cbradney | 3461 | </message> |
3462 | <message> |
||
7716 | cbradney | 3463 | <source>New Line</source> |
3464 | <translation>Zeilenumbruch</translation> |
||
7586 | cbradney | 3465 | </message> |
3466 | <message> |
||
7716 | cbradney | 3467 | <source>Frame Break</source> |
3468 | <translation>Rahmenumbruch</translation> |
||
7586 | cbradney | 3469 | </message> |
3470 | <message> |
||
7716 | cbradney | 3471 | <source>Column Break</source> |
3472 | <translation>Spaltenumbruch</translation> |
||
7586 | cbradney | 3473 | </message> |
3474 | <message> |
||
7716 | cbradney | 3475 | <source>Copyright</source> |
3476 | <translation>Copyright</translation> |
||
7586 | cbradney | 3477 | </message> |
3478 | <message> |
||
7716 | cbradney | 3479 | <source>Registered Trademark</source> |
3480 | <translation>Registriertes Warenzeichen</translation> |
||
7586 | cbradney | 3481 | </message> |
3482 | <message> |
||
7716 | cbradney | 3483 | <source>Trademark</source> |
3484 | <translation>Warenzeichen</translation> |
||
7586 | cbradney | 3485 | </message> |
3486 | <message> |
||
7716 | cbradney | 3487 | <source>Bullet</source> |
3488 | <translation>Aufzählung</translation> |
||
7586 | cbradney | 3489 | </message> |
3490 | <message> |
||
7716 | cbradney | 3491 | <source>Em Dash</source> |
3492 | <translation>Geviertstrich</translation> |
||
7586 | cbradney | 3493 | </message> |
3494 | <message> |
||
7716 | cbradney | 3495 | <source>En Dash</source> |
3496 | <translation>Halbgeviertstrich</translation> |
||