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