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