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