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