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