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