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