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