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