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