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