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