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