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