"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "scribus-1.3.3.12/scribus/po/scribus.cs_CZ.ts" of archive scribus-1.3.3.12.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 <!DOCTYPE TS><TS>
2 <defaultcodec></defaultcodec>
3 <context>
4 <name></name>
5 <message>
6 <source>getFontSize(["name"]) -> float
7
8 Returns the font size in points for the text frame "name". If this text
9 frame has some text selected the value assigned to the first character of
10 the selection is returned.
11 If "name" is not given the currently selected item is used.
12 </source>
13 <translation>getFontSize(["name"]) -> float
14
15 Vráti velikost písma v bodech rámce "name". Jestliže je
16 vybrán nějaký text, vrátí velikost prvního znaku výběru.
17 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
18 </message>
19 <message>
20 <source>getColorNames() -> list
21
22 Returns a list containing the names of all defined colors in the document.
23 If no document is open, returns a list of the default document colors.
24 </source>
25 <translation>getColorNames() -> list
26
27 Vrátí seznam se jmény všech barev v dokumentu. Jestliže není žádný dokument
28 otevřen, vrátí seznam implicitních barev.</translation>
29 </message>
30 <message>
31 <source>newDocDialog() -> bool
32
33 Displays the "New Document" dialog box. Creates a new document if the user
34 accepts the settings. Does not create a document if the user presses cancel.
35 Returns true if a new document was created.
36 </source>
37 <translation>newDocDialog() -> bool
38
39 Zobrazí "Nový dokument" dialogové okno a vytvoří nový dokument poté, co
40 uživatel potvrdí nastavení. Nic nevytvoří, jestliže uživatel okno zruší. Vrátí true,
41 pokud je dokument vytvořen.</translation>
42 </message>
43 <message>
44 <source>getFillColor(["name"]) -> string
45
46 Returns the name of the fill color of the object "name".
47 If "name" is not given the currently selected item is used.
48 </source>
49 <translation>getFillColor(["name"]) -> string
50
51 Vrátí jméno výplňové barvy objektu "name".
52 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
53 </message>
54 <message>
55 <source>moveObject(dx, dy [, "name"])
56
57 Moves the object "name" by dx and dy relative to its current position. The
58 distances are expressed in the current measurement unit of the document (see
59 UNIT constants). If "name" is not given the currently selected item is used.
60 If the object "name" belongs to a group, the whole group is moved.
61 </source>
62 <translation>moveObject(dx, dy [, "name"])
63
64 Posune objekt "name" relativně o dx a dy vůči aktuální pozici. Vzdálenosti
65 jsou vyjádřeny v délkových jednotkách dokumentu (viz konstanty UNIT).
66 Jestliže není "name" uvedeno, použije vybraný objekt. Jestliže "name"
67 patří do nějaké skupiny, je posunuta celá skupina.</translation>
68 </message>
69 <message>
70 <source>setRedraw(bool)
71
72 Disables page redraw when bool = False, otherwise redrawing is enabled.
73 This change will persist even after the script exits, so make sure to call
74 setRedraw(True) in a finally: clause at the top level of your script.
75 </source>
76 <translation>setRedraw(bool)
77
78 V případě false zruší překreslování stránek, jinak povolí. Tato změna přetrvá
79 i po ukončení skriptu, takže se ujistěte, že zavoláte setRedraw(true) v nejvyšší
80 úrovni skriptu.</translation>
81 </message>
82 <message>
83 <source>createRect(x, y, width, height, ["name"]) -> string
84
85 Creates a new rectangle on the current page and returns its name. The
86 coordinates are given in the current measurement units of the document
87 (see UNIT constants). "name" should be a unique identifier for the object
88 because you need this name to reference that object in future. If "name"
89 is not given Scribus will create one for you.
90
91 May raise NameExistsError if you explicitly pass a name that's already used.
92 </source>
93 <translation>createRect(x, y, width, height, ["name"]) -> string
94
95 Vytvoří nový čtyřúhelník na aktuální stránce a vrátí jeho jméno. X, Y, W a H koordináty
96 jsou dány ve zvolených měrných jednotkách dokumentu (viz konstanty UNIT*).
97 "name" musí být unikátní řetězec, protože slouží jako identifikátor. Jestliže není
98 "name" zadáno, Scribus jméno vytvoří sám.
99
100 Může vyvolat výjimku NameExistsError, když se pokusíte zduplikovat jméno.</translation>
101 </message>
102 <message>
103 <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])
104
105 Sets the gradient fill of the object "name" to type. Color descriptions are
106 the same as for setFillColor() and setFillShade(). See the constants for
107 available types (FILL_<type>).
108 </source>
109 <translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])
110
111 Nastaví gradient výplně objektu "name" na specifikovaný typ. Specifikace barev
112 je stejná jako v setFillColor() a setFillShade(). Dostupné gradienty viz
113 konstanty FILL_<typ>.</translation>
114 </message>
115 <message>
116 <source>messagebarText("string")
117
118 Writes the "string" into the Scribus message bar (status line). The text
119 must be UTF8 encoded or 'unicode' string(recommended).
120 </source>
121 <translation>messagebarText("string")
122
123 Zapíše řetězec "string" do stavového řádku Scribusu. Text musí být kódován
124 UTF8 nebo unicode (např. unicode("text", "iso-8859-2")).</translation>
125 </message>
126 <message>
127 <source>newPage(where [,"masterpage"])
128
129 Creates a new page. If "where" is -1 the new Page is appended to the
130 document, otherwise the new page is inserted before "where". Page numbers are
131 counted from 1 upwards, no matter what the displayed first page number of your
132 document is. The optional parameter "masterpage" specifies the name of the
133 master page for the new page.
134
135 May raise IndexError if the page number is out of range
136 </source>
137 <translation>newPage(where [,"masterpage"])
138
139 Creates a new page. If "where" is -1 the new Page is appended to the
140 document, otherwise the new page is inserted before "where". Page numbers are
141 counted from 1 upwards, no matter what the displayed first page number of your
142 document is. The optional parameter "masterpage" specifies the name of the
143 master page for the new page.
144
145 May raise IndexError if the page number is out of range</translation>
146 </message>
147 <message>
148 <source>importSVG("string")
149
150 The "string" must be a valid filename for a SVG image. The text
151 must be UTF8 encoded or 'unicode' string(recommended).
152 </source>
153 <translation>importSVG("string")
154
155 The "string" must be a valid filename for a SVG image. The text
156 must be UTF8 encoded or 'unicode' string(recommended).</translation>
157 </message>
158 <message>
159 <source>newDocument(size, margins, orientation, firstPageNumber,
160 unit, pagesType, firstPageOrder) -> bool
161
162 Creates a new document and returns true if successful. The parameters have the
163 following meaning:
164
165 size = A tuple (width, height) describing the size of the document. You can
166 use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc.
167
168 margins = A tuple (left, right, top, bottom) describing the document
169 margins
170
171 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
172
173 firstPageNumer = is the number of the first page in the document used for
174 pagenumbering. While you'll usually want 1, it's useful to have higher
175 numbers if you're creating a document in several parts.
176
177 unit: this value sets the measurement units used by the document. Use a
178 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
179 UNIT_PICAS, UNIT_POINTS.
180
181 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
182 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
183 PAGE_4 is 4-fold.
184
185 firstPageOrder = What is position of first page in the document.
186 Indexed from 0 (0 = first).
187
188 numPage = Number of pages to be created.
189
190 The values for width, height and the margins are expressed in the given unit
191 for the document. PAPER_* constants are expressed in points. If your document
192 is not in points, make sure to account for this.
193
194 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
195 PAGE_4, 3, 1)
196
197 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
198 </source>
199 <translation>newDocument(size, margins, orientation, firstPageNumber, unit, pagesType, firstPageOrder) -> bool
200
201 Creates a new document and returns true if successful. The parameters have the following meaning:
202
203 size = A tuple (width, height) describing the size of the document. You can
204 use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc.
205
206 margins = A tuple (left, right, top, bottom) describing the document margins
207
208 orientation = the page orientation - constants PORTRAIT, LANDSCAPE
209
210 firstPageNumer = is the number of the first page in the document used for
211 pagenumbering. While you'll usually want 1, it's useful to have higher
212 numbers if you're creating a document in several parts.
213
214 unit: this value sets the measurement units used by the document. Use a
215 predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
216 UNIT_PICAS, UNIT_POINTS.
217
218 pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
219 PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
220 PAGE_4 is 4-fold.
221
222 firstPageOrder = What is position of first page in the document.
223 Indexed from 0 (0 = first).
224
225 numPage = Number of pages to be created.
226
227 The values for width, height and the margins are expressed in the given unit
228 for the document. PAPER_* constants are expressed in points. If your document
229 is not in points, make sure to account for this.
230
231 example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, PAGE_4, 3, 1)
232
233 May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.</translation>
234 </message>
235 </context>
236 <context>
237 <name>@default</name>
238 <message>
239 <source>getFont(["name"]) -> string
240
241 Returns the font name for the text frame "name". If this text frame
242 has some text selected the value assigned to the first character
243 of the selection is returned. If "name" is not given the currently
244 selected item is used.
245 </source>
246 <translation>getFont(["name"]) -> string
247
248 Vrátí jméno písma textového rámce "name". Jestliže je v rámu vybraný
249 nějaký text, pak vrátí písmo prvního znaku výběru.
250 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
251 </message>
252 <message>
253 <source>getTextLength(["name"]) -> integer
254
255 Returns the length of the text in the text frame "name".
256 If "name" is not given the currently selected item is used.
257 </source>
258 <translation>getTextLength(["name"]) -> integer
259
260 Vrátí délku textu textového rámce "name".
261 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
262 </message>
263 <message>
264 <source>getText(["name"]) -> string
265
266 Returns the text of the text frame "name". If this text frame has some text
267 selected, the selected text is returned. All text in the frame, not just
268 currently visible text, is returned. If "name" is not given the currently
269 selected item is used.
270 </source>
271 <translation>getText(["name"]) -> string
272
273 Vrátí onsah textového rámce "name". Jestliže je vrámu nějaký výběr, pak
274 je výsledkem obsah výběru. Vrátí celý text, ne jen viditelný.
275 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
276 </message>
277 <message>
278 <source>getAllText(["name"]) -> string
279
280 Returns the text of the text frame "name" and of all text frames which are
281 linked with this frame. If this textframe has some text selected, the selected
282 text is returned. If "name" is not given the currently selected item is
283 used.
284 </source>
285 <translation>getAllText(["name"]) -> string
286
287 Vrátí obsah textového rámce včetně kompletního textu všech zřetězených
288 rámů. Jestliže existuje nějaký výběr, pak je výsledkem obsah výběru.
289 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
290 </message>
291 <message>
292 <source>getLineSpacing(["name"]) -> float
293
294 Returns the line spacing ("leading") of the text frame "name" expressed in
295 points. If "name" is not given the currently selected item is used.
296 </source>
297 <translation>getLineSpacing(["name"]) -> float
298
299 Vrátí velikost řádkování textového rámce "name" vyjádřené v bodech.
300 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
301 </message>
302 <message>
303 <source>getColumnGap(["name"]) -> float
304
305 Returns the column gap size of the text frame "name" expressed in points. If
306 "name" is not given the currently selected item is used.
307 </source>
308 <translation>getColumnGap(["name"]) -> float
309
310 Vrátí velikost mezisloupcové mezery textového rámce "name" vyjádřenou v bodech.
311 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
312 </message>
313 <message>
314 <source>getColumns(["name"]) -> integer
315
316 Gets the number of columns of the text frame "name". If "name" is not
317 given the currently selected item is used.
318 </source>
319 <translation>getColumns(["name"]) -> integer
320
321 Vrátí počet sloupců textového rámce "name".
322 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
323 </message>
324 <message>
325 <source>setText("text", ["name"])
326
327 Sets the text of the text frame "name" to the text of the string "text".
328 Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
329 for more details. If "name" is not given the currently selected item is
330 used.
331 </source>
332 <translation>setText("text", ["name"])
333
334 Vyplní obsah textového rámce "name" textem "text". Text musí být v UTF8
335 kódování - použijte např. unicode(text, 'iso-8859-2'). Viz FAQ.
336 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
337 </message>
338 <message>
339 <source>setFont("font", ["name"])
340
341 Sets the font of the text frame "name" to "font". If there is some text
342 selected only the selected text is changed. If "name" is not given the
343 currently selected item is used.
344
345 May throw ValueError if the font cannot be found.
346 </source>
347 <translation>setFont("font", ["name"])
348
349 Nastaví písmo "font" textového rámce "frame". Jestliže v rámci existuje
350 výběr, je písmo aplikováno pouze na něj.
351 Jestliže není "name" uvedeno, použije vybraný objekt.
352
353 Může vyvolat výjimku ValueError, jestliže písmo neexistuje.</translation>
354 </message>
355 <message>
356 <source>setFontSize(size, ["name"])
357
358 Sets the font size of the text frame "name" to "size". "size" is treated
359 as a value in points. If there is some text selected only the selected text is
360 changed. "size" must be in the range 1 to 512. If "name" is not given the
361 currently selected item is used.
362
363 May throw ValueError for a font size that's out of bounds.
364 </source>
365 <translation>setFontSize(size, ["name"])
366
367 Nastaví velikost písma textového rámce "name" na velikost "size". Velikost
368 je vyjádřena v bodech. Jestliže je v rámu nějaký výběr, pak je změna
369 aplikována pouze na něj. Velikost musí být v intervalu <1; 512>.
370 Jestliže není "name" uvedeno, použije vybraný objekt.
371
372 Může vyvolat výjimlu ValueError, jestliže je velikost mimo interval.</translation>
373 </message>
374 <message>
375 <source>setLineSpacing(size, ["name"])
376
377 Sets the line spacing ("leading") of the text frame "name" to "size".
378 "size" is a value in points. If "name" is not given the currently selected
379 item is used.
380
381 May throw ValueError if the line spacing is out of bounds.
382 </source>
383 <translation>setLineSpacing(size, ["name"])
384
385 Nastaví řádkování textového rámu "name" na velikost "size". Velikost
386 je uváděna v bodech.
387 Jestliže není "name" uvedeno, použije vybraný objekt.
388
389 Může vyvolat výjimku ValueError, jestliže je velikost mimo rozsah.</translation>
390 </message>
391 <message>
392 <source>setColumnGap(size, ["name"])
393
394 Sets the column gap of the text frame "name" to the value "size". If
395 "name" is not given the currently selected item is used.
396
397 May throw ValueError if the column gap is out of bounds (must be positive).
398 </source>
399 <translation>setColumnGap(size, ["name"])
400
401 Nastaví mezisloupcovou mezeru textového rámce "name" na velikost "size".
402 Jestliže není "name" uvedeno, použije vybraný objekt.
403
404 Může vyvolat výjimku ValueError, jestliže není velikost kladná hodnota.</translation>
405 </message>
406 <message>
407 <source>setColumns(nr, ["name"])
408
409 Sets the number of columns of the text frame "name" to the integer "nr".
410 If "name" is not given the currently selected item is used.
411
412 May throw ValueError if number of columns is not at least one.
413 </source>
414 <translation>setColumns(nr, ["name"])
415
416 Nastaví počet sloupců textového rámce "name" na počet "nr".
417 Jestliže není "name" uvedeno, použije vybraný objekt.
418
419 Může vyvolat výjimku ValueError, jetsliže je "nr" menší něž 1.</translation>
420 </message>
421 <message>
422 <source>setTextAlignment(align, ["name"])
423
424 Sets the text alignment of the text frame "name" to the specified alignment.
425 If "name" is not given the currently selected item is used. "align" should
426 be one of the ALIGN_ constants defined in this module - see dir(scribus).
427
428 May throw ValueError for an invalid alignment constant.
429 </source>
430 <translation>setTextAlignment(align, ["name"])
431
432 Nastaví zarovnání textu rámce "name". Jestliže není "name" uvedeno, použije
433 vybraný objekt. "align" by měla být jedna z předdefinovaných konstant ALIGN_*.
434
435 Může vyvolat výjimku ValueError, jestliže je "align" nepodporované číslo.</translation>
436 </message>
437 <message>
438 <source>selectText(start, count, ["name"])
439
440 Selects "count" characters of text in the text frame "name" starting from the
441 character "start". Character counting starts at 0. If "count" is zero, any
442 text selection will be cleared. If "name" is not given the currently
443 selected item is used.
444
445 May throw IndexError if the selection is outside the bounds of the text.
446 </source>
447 <translation>selectText(start, count, ["name"])
448
449 Označí jako vybraný počet "count" znaků v textovém rámci "name" od pozice
450 "start". První znak rámce má pozici 0. Jestliže je "count" nula, výběr je zrušen.
451 Jestliže není "name" uvedeno, použije vybraný objekt.
452
453 Může vyvolat výjimku IndexError, jestliže je výběr mimo text rámce.</translation>
454 </message>
455 <message>
456 <source>deleteText(["name"])
457
458 Deletes any text in the text frame "name". If there is some text selected,
459 only the selected text will be deleted. If "name" is not given the currently
460 selected item is used.
461 </source>
462 <translation>deleteText(["name"])
463
464 Smaže text z textového rámce "name". Jestliže je v rámu nějaký výběr,
465 pak je smazán pouze on. Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
466 </message>
467 <message>
468 <source>setTextColor("color", ["name"])
469
470 Sets the text color of the text frame "name" to the color "color". If there
471 is some text selected only the selected text is changed. If "name" is not
472 given the currently selected item is used.
473 </source>
474 <translation>setTextColor("color", ["name"])
475
476 Nastaví barvu textu rámce "name" na barvu "color". Jestliže v rámci
477 existuje výběr, pak je barva aplikována pouze na něj.
478 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
479 </message>
480 <message>
481 <source>setTextStroke("color", ["name"])
482
483 Set "color" of the text stroke. If "name" is not given the currently
484 selected item is used.
485 </source>
486 <translation>setTextStroke("color", ["name"])
487
488 Nastaví barvu "color" tahu textu v textovém rámci "name".
489 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
490 </message>
491 <message>
492 <source>setTextShade(shade, ["name"])
493
494 Sets the shading of the text color of the object "name" to "shade". If
495 there is some text selected only the selected text is changed. "shade" must
496 be an integer value in the range from 0 (lightest) to 100 (full color
497 intensity). If "name" is not given the currently selected item is
498 used.
499 </source>
500 <translation>setTextShade(shade, ["name"])
501
502 Nastaví stín textu v textovém rámci "name" na hodnotu "shade". Jetsliže
503 v rámci existuje výběr, pak je aplikován pouze na něj. Stín musí být celé
504 číslo z intervalu <1; 100>.
505 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
506 </message>
507 <message>
508 <source>linkTextFrames("fromname", "toname")
509
510 Link two text frames. The frame named "fromname" is linked to the
511 frame named "toname". The target frame must be an empty text frame
512 and must not link to or be linked from any other frames already.
513
514 May throw ScribusException if linking rules are violated.
515 </source>
516 <translation>linkTextFrames("fromname", "toname")
517
518 zřetězí dva textové rámce. Rámec "fromname" je před rámcem "toname".
519 "toname" musí být prázdný a ještě neslinkovaný textový rámec.
520
521 Může vyvolat výjimku ScribusException, jestliže jsou porušena pravidla řetězení.</translation>
522 </message>
523 <message>
524 <source>unlinkTextFrames("name")
525
526 Remove the specified (named) object from the text frame flow/linkage. If the
527 frame was in the middle of a chain, the previous and next frames will be
528 connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
529
530 May throw ScribusException if linking rules are violated.
531 </source>
532 <translation>unlinkTextFrames("name")
533
534 Odstraní objekt "name" ze zřetězených textových rámců. Např. sekvence
535 a->b->c bude a->c po vykonání unlinkTextFrames(b)
536
537 Může vyvolat výjimku ScribusException, jestliže jsou porušena pravidla zřetězení.</translation>
538 </message>
539 <message>
540 <source>traceText(["name"])
541
542 Convert the text frame "name" to outlines. If "name" is not given the
543 currently selected item is used.</source>
544 <translation>traceText(["name"])
545
546 Převede textový rámec "name" na obrys.
547 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
548 </message>
549 <message>
550 <source>getColor("name") -> tuple
551
552 Returns a tuple (C, M, Y, K) containing the four color components of the
553 color "name" from the current document. If no document is open, returns
554 the value of the named color from the default document colors.
555
556 May raise NotFoundError if the named color wasn't found.
557 May raise ValueError if an invalid color name is specified.
558 </source>
559 <translation>getColor("name") -> tuple
560
561 Vrátí CMYK složky barvy "name" daného dokumentu. Jestliže není otevřený
562 žádný dokument, vrátí složky implicitní barvy "name".
563
564 Může vyvolat výjimky NotFoundError (jestliže barvu nenajde) a
565 ValueError (chybné parametry).</translation>
566 </message>
567 <message>
568 <source>changeColor("name", c, m, y, k)
569
570 Changes the color "name" to the specified CMYK value. The color value is
571 defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
572 Color components should be in the range from 0 to 255.
573
574 May raise NotFoundError if the named color wasn't found.
575 May raise ValueError if an invalid color name is specified.
576 </source>
577 <translation>changeColor("name", c, m, y, k)
578
579 Změní barvu "name" na specifikované CMYK hodnoty "c", "m", "y", "k".
580 Každá z barevných komponenty musí být z intervalu <0; 255>.
581
582 Může vyvolat výjimky NotFoundError (barva neexistuje) a ValueError
583 (chybné parametry).</translation>
584 </message>
585 <message>
586 <source>deleteColor("name", "replace")
587
588 Deletes the color "name". Every occurence of that color is replaced by the
589 color "replace". If not specified, "replace" defaults to the color
590 "None" - transparent.
591
592 deleteColor works on the default document colors if there is no document open.
593 In that case, "replace", if specified, has no effect.
594
595 May raise NotFoundError if a named color wasn't found.
596 May raise ValueError if an invalid color name is specified.
597 </source>
598 <translation>deleteColor("name", "replace")
599
600 Smaže barvu "name". každý výskyt této barvy je nahrazen barvou "replace".
601 Jestliže není "replace" uvedena, zamění mazanou barvu transparentní
602 průhlednou "None".
603 Jestliže není otevřený žádný dokument pracuje deleteColor s imlicitní
604 barevnou množinou. "replace" potom nemá žádnou funkčnost.
605
606 Může vyvolat výjimky NotFoundError (barva neexistuje) a ValueError
607 (chybné parametry).</translation>
608 </message>
609 <message>
610 <source>replaceColor("name", "replace")
611
612 Every occurence of the color "name" is replaced by the color "replace".
613
614 May raise NotFoundError if a named color wasn't found.
615 May raise ValueError if an invalid color name is specified.
616 </source>
617 <translation>replaceColor("name", "replace")
618
619 Každý výskyt barvy "name" je nahrazen barvou "replace".
620 Může vyvolat výjimky NotFoundError (barva neexistuje) a ValueError
621 (chybné parametry).</translation>
622 </message>
623 <message>
624 <source>messageBox("caption", "message",
625 icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
626 button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
627
628 Displays a message box with the title "caption", the message "message", and
629 an icon "icon" and up to 3 buttons. By default no icon is used and a single
630 button, OK, is displayed. Only the caption and message arguments are required,
631 though setting an icon and appropriate button(s) is strongly
632 recommended. The message text may contain simple HTML-like markup.
633
634 Returns the number of the button the user pressed. Button numbers start
635 at 1.
636
637 For the icon and the button parameters there are predefined constants available
638 with the same names as in the Qt Documentation. These are the BUTTON_* and
639 ICON_* constants defined in the module. There are also two extra constants that
640 can be binary-ORed with button constants:
641 BUTTONOPT_DEFAULT Pressing enter presses this button.
642 BUTTONOPT_ESCAPE Pressing escape presses this button.
643
644 Usage examples:
645 result = messageBox('Script failed',
646 'This script only works when you have a text frame selected.',
647 ICON_ERROR)
648 result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
649 ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
650 BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
651
652 Defined button and icon constants:
653 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
654 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
655 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
656 </source>
657 <translation>messageBox("caption", "message", icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
658 button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
659
660 Zobrazí message box s titulkem "caption", textem "message", ikonou "icon"
661 a několika tlačítky. Implicitně není nastavena žádná ikona a zobrazí se jediné
662 tlačitko (OK). Povinné jsou tedy pouze parametry "caption" a "message".
663 "message" může obsahovat jednoduché HTML značky.
664 Vrátí číslo tlačítka, které uživatel stisknul. Tlačítka jsou číslována od 1.
665 Jednotlivé typy ikon a tlačitek mají své předdefinované konstanty. Jsou to
666 BUTTON_* a ICON_*. Existují také dvě konstanty, které mohou být použity
667 v binárním OR s BUTTON konstantami:
668 BUTTONOPT_DEFAULT nastaví příznak "stisk enteru stiskne tlačítko"
669 BUTTONOPT_ESCAPE nastaví příznak "stisk escape stiskne tlačítko"
670 Příklady:
671 result = messageBox('Script failed',
672 'This script only works when you have a text frame selected.',
673 ICON_ERROR)
674 result = messageBox('Monkeys!',
675 'Something went ook! <i>Was it a monkey?</i>',
676 ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
677 BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
678 Konstanty: BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL,
679 BUTTON_IGNORE, BUTTON_NO, BUTTON_NOALL, BUTTON_OK,
680 BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
681 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.</translation>
682 </message>
683 <message>
684 <source>valueDialog(caption, message [,defaultvalue]) -> string
685
686 Shows the common 'Ask for string' dialog and returns its value as a string
687 Parameters: window title, text in the window and optional 'default' value.
688
689 Example: valueDialog('title', 'text in the window', 'optional')
690 </source>
691 <translation>valueDialog(caption, message [,defaultvalue]) -> string
692
693 Zobrazí jednoduchý dialog, do kterého uživatel zadává hodnotu,
694 kterou vráti skriptu jako string. Okno má titulek "caption",
695 text "message" a může zobrazit implicitní hodnotu "defaultvalue".
696 Např.: valueDialog('title', 'text in the window', 'optional')</translation>
697 </message>
698 <message>
699 <source>closeDoc()
700
701 Closes the current document without prompting to save.
702
703 May throw NoDocOpenError if there is no document to close
704 </source>
705 <translation>closeDoc()
706
707 Zavře aktuální dokument bez výzvy k uložení.
708
709 Může vyvolat výjimku NoDocOpenError, kdyý enní žádný dokument otevřen</translation>
710 </message>
711 <message>
712 <source>haveDoc() -> bool
713
714 Returns true if there is a document open.
715 </source>
716 <translation>haveDoc() -> bool
717
718 Vrátí true, když je otevřený jakýkoli dokument.</translation>
719 </message>
720 <message>
721 <source>openDoc("name")
722
723 Opens the document "name".
724
725 May raise ScribusError if the document could not be opened.
726 </source>
727 <translation>openDoc("name")
728
729 Otevře dokument "name".
730
731 Může vyvolat výjimku ScribusError, když dokument nejde otevřít.</translation>
732 </message>
733 <message>
734 <source>saveDoc()
735
736 Saves the current document with its current name, returns true if successful.
737 If the document has not already been saved, this may bring up an interactive
738 save file dialog.
739
740 If the save fails, there is currently no way to tell.
741 </source>
742 <translation>saveDoc()
743
744 Uloží aktuální dokument pod platným jménem. Vrátí true v případě úspěchu.
745 Jestliže nebyl dokument ještě niky uložen, zobrazí se "Uložit jako" okno.
746 Jestliže ukladání selže, neexituje žádný způsob, jak toto zjistit.</translation>
747 </message>
748 <message>
749 <source>saveDocAs("name")
750
751 Saves the current document under the new name "name" (which may be a full or
752 relative path).
753
754 May raise ScribusError if the save fails.
755 </source>
756 <translation>saveDocAs("name")
757
758 Uloží aktuální dokument pod jménem "name". "name" může být jak celá, tak
759 relativní cesta souborového systému.
760
761 Může vyvolat výjimku ScribusError, jestliže ukládání selže.</translation>
762 </message>
763 <message>
764 <source>setMargins(lr, rr, tr, br)
765
766 Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
767 margins are given in the measurement units of the document - see UNIT_<type>
768 constants.
769 </source>
770 <translation>setMargins(lr, rr, tr, br)
771
772 Nastaví okraje dokumentu - levý, pravý, horní a spodní okraj je zadáván
773 v aktuálních měrných jednotkách dokumentu. Viz konstanty UNIT_typ.</translation>
774 </message>
775 <message>
776 <source>setUnit(type)
777
778 Changes the measurement unit of the document. Possible values for "unit" are
779 defined as constants UNIT_<type>.
780
781 May raise ValueError if an invalid unit is passed.
782 </source>
783 <translation>setUnit(type)
784
785 Změní měrné jednotky dokumentu. Možná nastavení jsou definována jako
786 konstanty UNIT_*.
787
788 Může vyvolat výjimku ValueError při nepodporovaném typu jednotky.</translation>
789 </message>
790 <message>
791 <source>getUnit() -> integer (Scribus unit constant)
792
793 Returns the measurement units of the document. The returned value will be one
794 of the UNIT_* constants:
795 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
796 </source>
797 <translation>getUnit() -> integer (Scribus unit constant)
798
799 Vrátí typ měrné jednotky dokumentu. Návratová hodnota je jednou z UNIT_*
800 konstant: UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.</translation>
801 </message>
802 <message>
803 <source>loadStylesFromFile("filename")
804
805 Loads paragraph styles from the Scribus document at "filename" into the
806 current document.
807 </source>
808 <translation>loadStylesFromFile("filename")
809
810 Nahraje styly odstavce z dokumentu "filename" do dokumentu aktuálního.</translation>
811 </message>
812 <message>
813 <source>setDocType(facingPages, firstPageLeft)
814
815 Sets the document type. To get facing pages set the first parameter to
816 FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
817 to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
818 a right page use FIRSTPAGERIGHT.
819 </source>
820 <translation>setDocType(facingPages, firstPageLeft)
821
822 Nastaví typ dokumentu. Parametr facingPages může být FACINGPAGES (dvoustrany)
823 nebo NOFACINGPAGES (jedna strana). Jestliže chcete, aby dokument začínal
824 levou stranou nastavte firstPageLeft na FIRSTPAGELEFT, jinak na FIRSTPAGERIGHT.
825 </translation>
826 </message>
827 <message>
828 <source>getLineColor(["name"]) -> string
829
830 Returns the name of the line color of the object "name".
831 If "name" is not given the currently selected item is used.
832 </source>
833 <translation>getLineColor(["name"]) -> string
834
835 Vrátí jméno barvy linek objektu "name".
836 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
837 </message>
838 <message>
839 <source>getLineWidth(["name"]) -> integer
840
841 Returns the line width of the object "name". If "name"
842 is not given the currently selected Item is used.
843 </source>
844 <translation>getLineWidth(["name"]) -> integer
845
846 Vrátí tloušťku linky objektu "name".
847 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
848 </message>
849 <message>
850 <source>getLineShade(["name"]) -> integer
851
852 Returns the shading value of the line color of the object "name".
853 If "name" is not given the currently selected item is used.
854 </source>
855 <translation>getLineShade(["name"]) -> integer
856
857 Vrátí stín barvy objektu "name".
858 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
859 </message>
860 <message>
861 <source>getLineJoin(["name"]) -> integer (see contants)
862
863 Returns the line join style of the object "name". If "name" is not given
864 the currently selected item is used. The join types are:
865 JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
866 </source>
867 <translation>getLineJoin(["name"]) -> integer (see contants)
868
869 Vrátí typ spojení linek objektu "name".
870 Jestliže není "name" uvedeno, použije vybraný objekt.
871 Typy spojení: JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND</translation>
872 </message>
873 <message>
874 <source>getLineEnd(["name"]) -> integer (see constants)
875
876 Returns the line cap style of the object "name". If "name" is not given the
877 currently selected item is used. The cap types are:
878 CAP_FLAT, CAP_ROUND, CAP_SQUARE
879 </source>
880 <translation>getLineEnd(["name"]) -> integer (see constants)
881
882 Vrátí typ ukončení linky objektu "name".
883 Jestliže není "name" uvedeno, použije vybraný objekt.
884 Typy jsou: CAP_FLAT, CAP_ROUND, CAP_SQUARE</translation>
885 </message>
886 <message>
887 <source>getLineStyle(["name"]) -> integer (see constants)
888
889 Returns the line style of the object "name". If "name" is not given the
890 currently selected item is used. Line style constants are:
891 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
892 </source>
893 <translation>getLineStyle(["name"]) -> integer (see constants)
894
895 Vrátí styl linky objektu "name".
896 Jestliže není "name" uvedeno, použije vybraný objekt.
897 Styly jsou: LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID</translation>
898 </message>
899 <message>
900 <source>getFillShade(["name"]) -> integer
901
902 Returns the shading value of the fill color of the object "name".
903 If "name" is not given the currently selected item is used.
904 </source>
905 <translation>getFillShade(["name"]) -> integer
906
907 Vrátí stín výplně objektu "name".
908 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
909 </message>
910 <message>
911 <source>getImageScale(["name"]) -> (x,y)
912
913 Returns a (x, y) tuple containing the scaling values of the image frame
914 "name". If "name" is not given the currently selected item is used.
915 </source>
916 <translation>getImageScale(["name"]) -> (x,y)
917
918 Vrátí tuple s velikostmi obrázku rámce "name".
919 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
920 </message>
921 <message>
922 <source>getImageName(["name"]) -> string
923
924 Returns the filename for the image in the image frame. If "name" is not
925 given the currently selected item is used.
926 </source>
927 <translation>getImageName(["name"]) -> string
928
929 Vrátí jméno souboru (obrázku) daného rámce "name".
930 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
931 </message>
932 <message>
933 <source>getSize(["name"]) -> (width,height)
934
935 Returns a (width, height) tuple with the size of the object "name".
936 If "name" is not given the currently selected item is used. The size is
937 expressed in the current measurement unit of the document - see UNIT_<type>
938 for reference.
939 </source>
940 <translation>getSize(["name"]) -> (width,height)
941
942 Vrátí velikost (tuple) s velikostí rámce "name".
943 Jestliže není "name" uvedeno, použije vybraný objekt.
944 Velikost je vyjádřena v aktuálních měrných jednotkách (viz UNIT_typ).</translation>
945 </message>
946 <message>
947 <source>getRotation(["name"]) -> integer
948
949 Returns the rotation of the object "name". The value is expressed in degrees,
950 and clockwise is positive. If "name" is not given the currently selected item
951 is used.
952 </source>
953 <translation>getRotation(["name"]) -> integer
954
955 Vrátí rotaci objektu "name". Hodnota je vyjádřena ve stupních. Otočení ve směru
956 hodinových ručiček je kladné.
957 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
958 </message>
959 <message>
960 <source>getAllObjects() -> list
961
962 Returns a list containing the names of all objects on the current page.
963 </source>
964 <translation>getAllObjects() -> list
965
966 Vrátí seznam, který obsahuje jména všech objektů na aktuální stránce.</translation>
967 </message>
968 <message>
969 <source>moveObjectAbs(x, y [, "name"])
970
971 Moves the object "name" to a new location. The coordinates are expressed in
972 the current measurement unit of the document (see UNIT constants). If "name"
973 is not given the currently selected item is used. If the object "name"
974 belongs to a group, the whole group is moved.
975 </source>
976 <translation>moveObjectAbs(x, y [, "name"])
977
978 Přesune objekt "name" na nové místo. Paramety x a y jsou vyjádřeny v aktuálních
979 měrných jednotkách dokumentu (viz konstanty UNIT).
980 Jestliže není "name" uvedeno, použije vybraný objekt.
981 Jestliže onjekt "name" patří do skupiny onjektů, je posunuta celá skupina.</translation>
982 </message>
983 <message>
984 <source>rotateObject(rot [, "name"])
985
986 Rotates the object "name" by "rot" degrees relatively. The object is
987 rotated by the vertex that is currently selected as the rotation point - by
988 default, the top left vertext at zero rotation. Positive values mean counter
989 clockwise rotation when the default rotation point is used. If "name" is not
990 given the currently selected item is used.
991 </source>
992 <translation>rotateObject(rot [, "name"])
993
994 Otočí relativně objekt "name" o "rot" stupňů. Střed otáčení je aktuální bod otáčení,
995 implicitně horní levý bod. Kladné hodnoty otáčí po směru hodinových ručiček.
996 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
997 </message>
998 <message>
999 <source>sizeObject(width, height [, "name"])
1000
1001 Resizes the object "name" to the given width and height. If "name"
1002 is not given the currently selected item is used.
1003 </source>
1004 <translation>sizeObject(width, height [, "name"])
1005
1006 Změní velikost objektu "name" na danou šířku "width" a výšku "height".
1007 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
1008 </message>
1009 <message>
1010 <source>getSelectedObject([nr]) -> string
1011
1012 Returns the name of the selected object. "nr" if given indicates the number
1013 of the selected object, e.g. 0 means the first selected object, 1 means the
1014 second selected Object and so on.
1015 </source>
1016 <translation>getSelectedObject([nr]) -> string
1017
1018 Vrátí jméno vybraného objektu. Jestliže je zadáno "nr", pak indikuje,
1019 jaký objekt z výběru vrátí. 0 znamená první objekt atd.</translation>
1020 </message>
1021 <message>
1022 <source>selectionCount() -> integer
1023
1024 Returns the number of selected objects.
1025 </source>
1026 <translation>selectionCount() -> integer
1027
1028 Vrátí počet objektů ve výběru.</translation>
1029 </message>
1030 <message>
1031 <source>selectObject("name")
1032
1033 Selects the object with the given "name".
1034 </source>
1035 <translation>selectObject("name")
1036
1037 Zařadí objekt "name" do výběru.</translation>
1038 </message>
1039 <message>
1040 <source>deselectAll()
1041
1042 Deselects all objects in the whole document.
1043 </source>
1044 <translation>deselectAll()
1045
1046 Zruší výběr všech objektů v celém dokumentu.</translation>
1047 </message>
1048 <message>
1049 <source>groupObjects(list)
1050
1051 Groups the objects named in "list" together. "list" must contain the names
1052 of the objects to be grouped. If "list" is not given the currently selected
1053 items are used.
1054 </source>
1055 <translation>groupObjects(list)
1056
1057 Seskupí objekty vyjmenované v seznamu "list". Jestliže není seznam zadán,
1058 použijí se vybrané objekty.</translation>
1059 </message>
1060 <message>
1061 <source>unGroupObjects("name")
1062
1063 Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source>
1064 <translation>unGroupObjects("name")
1065
1066 Zruší seskupení objektů, do kterého patří objekt "name".
1067 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
1068 </message>
1069 <message>
1070 <source>scaleGroup(factor [,"name"])
1071
1072 Scales the group the object "name" belongs to. Values greater than 1 enlarge
1073 the group, values smaller than 1 make the group smaller e.g a value of 0.5
1074 scales the group to 50 % of its original size, a value of 1.5 scales the group
1075 to 150 % of its original size. The value for "factor" must be greater than
1076 0. If "name" is not given the currently selected item is used.
1077
1078 May raise ValueError if an invalid scale factor is passed.
1079 </source>
1080 <translation>scaleGroup(factor [,"name"])
1081
1082 Změní velikost seskupených objektů, kam objekt "name" patří. Hodnoty "factor"
1083 větší než 1 zvětšují a naopak. Např. 0.5 znamená 50%, 1.5 150% atd. "factor"
1084 musí být větší než 0.
1085 Jestliže není "name" uvedeno, použije vybraný objekt.
1086
1087 Může vyvolat výjimku ValueError při chybném nastavení "factor".</translation>
1088 </message>
1089 <message>
1090 <source>loadImage("filename" [, "name"])
1091
1092 Loads the picture "picture" into the image frame "name". If "name" is
1093 not given the currently selected item is used.
1094
1095 May raise WrongFrameTypeError if the target frame is not an image frame
1096 </source>
1097 <translation>loadImage("filename" [, "name"])
1098
1099 Nahraje obrázek "picture" do obrázkového rámce "name".
1100 Jestliže není "name" uvedeno, použije vybraný objekt.
1101
1102 Může vyvolat výjimku WrongFrameTypeError, není-li objekt obrázkovým rámem</translation>
1103 </message>
1104 <message>
1105 <source>scaleImage(x, y [, "name"])
1106
1107 Sets the scaling factors of the picture in the image frame "name".
1108 If "name" is not given the currently selected item is used. A number of 1
1109 means 100 %.
1110
1111 May raise WrongFrameTypeError if the target frame is not an image frame
1112 </source>
1113 <translation>scaleImage(x, y [, "name"])
1114
1115 Nastaví velikost obrázku v obrázkovém rámu "name".
1116 Jestliže není "name" uvedeno, použije vybraný objekt.
1117 Číslo 1 znamená 100%.
1118
1119 Může vyvolat výjimku WrongFrameTypeError jestliže rámec není obrázkový</translation>
1120 </message>
1121 <message>
1122 <source>lockObject(["name"]) -> bool
1123
1124 Locks the object "name" if it's unlocked or unlock it if it's locked.
1125 If "name" is not given the currently selected item is used. Returns true
1126 if locked.
1127 </source>
1128 <translation>lockObject(["name"]) -> bool
1129
1130 Jestliže je objekt "name" zamčený, tak jej odemkne a naopak.
1131 Jestliže není "name" uvedeno, použije vybraný objekt.
1132 Vrátí true jestliže je objekt zamčený.</translation>
1133 </message>
1134 <message>
1135 <source>isLocked(["name"]) -> bool
1136
1137 Returns true if is the object "name" locked. If "name" is not given the
1138 currently selected item is used.
1139 </source>
1140 <translation>isLocked(["name"]) -> bool
1141
1142 Vrátí true kdyý je objekt "name" zamčený.
1143 Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
1144 </message>
1145 <message>
1146 <source>getFontNames() -> list
1147
1148 Returns a list with the names of all available fonts.
1149 </source>
1150 <translation>getFontNames() -> list
1151
1152 Vrátí seznam se jmény dostupných písem.</translation>
1153 </message>
1154 <message>
1155 <source>getXFontNames() -> list of tuples
1156
1157 Returns a larger font info. It's a list of the tuples with:
1158 [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
1159 </source>
1160 <translation>getXFontNames() -> list of tuples
1161
1162 Vrátí více informací o dostupných písmech. Seznam obsahuje tupple:
1163 [(Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]</translation>
1164 </message>
1165 <message>
1166 <source>getLayers() -> list
1167
1168 Returns a list with the names of all defined layers.
1169 </source>
1170 <translation>getLayers() -> list
1171
1172 Vrátí seznam se jmény všech vrstev.</translation>
1173 </message>
1174 <message>
1175 <source>setActiveLayer("name")
1176
1177 Sets the active layer to the layer named "name".
1178
1179 May raise NotFoundError if the layer can't be found.
1180 May raise ValueError if the layer name isn't acceptable.
1181 </source>
1182 <translation>setActiveLayer("name")
1183
1184 Přepne dokument na specifikovanou vrstvu "name".
1185
1186 Může vyvolat výjimky NotFoundError (vrstva nenalezena) a
1187 ValueError (nelze přepnout vrstvu).</translation>
1188 </message>
1189 <message>
1190 <source>getActiveLayer() -> string
1191
1192 Returns the name of the current active layer.
1193 </source>
1194 <translation>getActiveLayer() -> string
1195
1196 Vrátí jméno aktuální vrstvy.</translation>
1197 </message>
1198 <message>
1199 <source>sentToLayer("layer" [, "name"])
1200
1201 Sends the object "name" to the layer "layer". The layer must exist.
1202 If "name" is not given the currently selected item is used.
1203
1204 May raise NotFoundError if the layer can't be found.
1205 May raise ValueError if the layer name isn't acceptable.
1206 </source>
1207 <translation>sentToLayer("layer" [, "name"])
1208
1209 Přesune objekt "name" do vrstvy "layer". Vrstva musí existovat.
1210 Jestliže není "name" uvedeno, použije vybraný objekt.
1211
1212 Může vyvolat výjimku NotFoundError (vrstva nenalezena) a
1213 ValueError (nelze přepnout vrstvu).</translation>
1214 </message>
1215 <message>
1216 <source>setLayerVisible("layer", visible)
1217
1218 Sets the layer "layer" to be visible or not. If is the visible set to false
1219 the layer is invisible.
1220
1221 May raise NotFoundError if the layer can't be found.
1222 May raise ValueError if the layer name isn't acceptable.
1223 </source>
1224 <translation>setLayerVisible("layer", visible)
1225
1226 Nastaví jestli má být vrstva "layer" viditelná nebo nemá. Je-li "visible"
1227 false, bude vrstva neviditelná.
1228
1229 Může vyvolat výjimku NotFoundError (vrstva nenalezena) a
1230 ValueError (nelze přepnout vrstvu).</translation>
1231 </message>
1232 <message>
1233 <source>setLayerPrintable("layer", printable)
1234
1235 Sets the layer "layer" to be printable or not. If is the printable set to
1236 false the layer won't be printed.
1237
1238 May raise NotFoundError if the layer can't be found.
1239 May raise ValueError if the layer name isn't acceptable.
1240 </source>
1241 <translation>setLayerPrintable("layer", printable)
1242
1243 Nastaví jestli má být vrstva "layer" tisknutelná nebo nemá. Je-li "printable"
1244 false, nebude vrstva tisknuta.
1245
1246 Může vyvolat výjimku NotFoundError (vrstva nenalezena) a
1247 ValueError (nelze přepnout vrstvu).</translation>
1248 </message>
1249 <message>
1250 <source>deleteLayer("layer")
1251
1252 Deletes the layer with the name "layer". Nothing happens if the layer doesn't
1253 exists or if it's the only layer in the document.
1254
1255 May raise NotFoundError if the layer can't be found.
1256 May raise ValueError if the layer name isn't acceptable.
1257 </source>
1258 <translation>deleteLayer("layer")
1259
1260 Smaže vrstvu "layer". Neudělá nic, jestliže je to poslední vrstva dokumentu
1261 nebo vrstva neexistuje.
1262
1263 Může vyvolat výjimku NotFoundError (vrstva nenalezena) a
1264 ValueError (nelze přepnout vrstvu).</translation>
1265 </message>
1266 <message>
1267 <source>createLayer(layer)
1268
1269 Creates a new layer with the name "name".
1270
1271 May raise ValueError if the layer name isn't acceptable.
1272 </source>
1273 <translation>createLayer(layer)
1274
1275 Vytvoří novou vrstvu se jménem "layer".
1276
1277 Může vyvolat výjimku ValueError v případě chyby.</translation>
1278 </message>
1279 <message>
1280 <source>getGuiLanguage() -> string
1281
1282 Returns a string with the -lang value.
1283 </source>
1284 <translation>getGuiLanguage() -> string
1285
1286 Vrátí řetězec s kódem jazyka, ve kterém Scribus běží (viz přepínač --lang xx).</translation>
1287 </message>
1288 <message>
1289 <source>createEllipse(x, y, width, height, ["name"]) -> string
1290
1291 Creates a new ellipse on the current page and returns its name.
1292 The coordinates are given in the current measurement units of the document
1293 (see UNIT constants). "name" should be a unique identifier for the object
1294 because you need this name for further referencing of that object. If "name"
1295 is not given Scribus will create one for you.
1296
1297 May raise NameExistsError if you explicitly pass a name that's already used.
1298 </source>
1299 <translation>createEllipse(x, y, width, height, ["name"]) -> string
1300
1301 Vytvoří novou elipsu na aktuální stránce dokumentu a vrátí její jméno.
1302 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1303 Jméno "name" musí být unikátní řetězec.
1304 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1305
1306 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.</translation>
1307 </message>
1308 <message>
1309 <source>createImage(x, y, width, height, ["name"]) -> string
1310
1311 Creates a new picture frame on the current page and returns its name. The
1312 coordinates are given in the current measurement units of the document.
1313 "name" should be a unique identifier for the object because you need this
1314 name for further access to that object. If "name" is not given Scribus will
1315 create one for you.
1316
1317 May raise NameExistsError if you explicitly pass a name that's already used.
1318 </source>
1319 <translation>createImage(x, y, width, height, ["name"]) -> string
1320
1321 Vytvoří novoý obrázkový rám na aktuální stránce dokumentu a vrátí jeho jméno.
1322 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1323 Jméno "name" musí být unikátní řetězec.
1324 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1325
1326 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.</translation>
1327 </message>
1328 <message>
1329 <source>createText(x, y, width, height, ["name"]) -> string
1330
1331 Creates a new text frame on the actual page and returns its name.
1332 The coordinates are given in the actual measurement unit of the document (see
1333 UNIT constants). "name" should be a unique identifier for the object because
1334 you need this name for further referencing of that object. If "name" is not
1335 given Scribus will create one for you.
1336
1337 May raise NameExistsError if you explicitly pass a name that's already used.
1338 </source>
1339 <translation>createText(x, y, width, height, ["name"]) -> string
1340
1341 Vytvoří nový textový rámec na aktuální stránce dokumentu a vrátí jeho jméno.
1342 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1343 Jméno "name" musí být unikátní řetězec.
1344 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1345
1346 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.</translation>
1347 </message>
1348 <message>
1349 <source>createLine(x1, y1, x2, y2, ["name"]) -> string
1350
1351 Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
1352 its name. The coordinates are given in the current measurement unit of the
1353 document (see UNIT constants). "name" should be a unique identifier for the
1354 object because you need this name for further access to that object. If
1355 "name" is not given Scribus will create one for you.
1356
1357 May raise NameExistsError if you explicitly pass a name that's already used.
1358 </source>
1359 <translation>createLine(x1, y1, x2, y2, ["name"]) -> string
1360
1361 Vytvoří novou linku na aktuální stránce dokumentu a vrátí její jméno.
1362 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1363 Jméno "name" musí být unikátní řetězec.
1364 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1365
1366 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.</translation>
1367 </message>
1368 <message>
1369 <source>createPolyLine(list, ["name"]) -> string
1370
1371 Creates a new polyline and returns its name. The points for the polyline are
1372 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1373 The coordinates are given in the current measurement units of the document (see
1374 UNIT constants). "name" should be a unique identifier for the object because
1375 you need this name for further access to that object. If "name" is not given
1376 Scribus will create one for you.
1377
1378 May raise NameExistsError if you explicitly pass a name that's already used.
1379 May raise ValueError if an insufficient number of points is passed or if
1380 the number of values passed don't group into points without leftovers.
1381 </source>
1382 <translation>createPolyLine(list, ["name"]) -> string
1383
1384 Vytvoří novou lomenou linku na aktuální stránce dokumentu a vrátí její jméno.
1385 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1386 Jméno "name" musí být unikátní řetězec.
1387 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1388 Seznam bodů má tvar: [x1, y1, x2, y2, ..., xn, yn].
1389
1390 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.
1391 Může vyvolat výjimku ValueError v případě špatných koordinátů.</translation>
1392 </message>
1393 <message>
1394 <source>createPolygon(list, ["name"]) -> string
1395
1396 Creates a new polygon and returns its name. The points for the polygon are
1397 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
1398 At least three points are required. There is no need to repeat the first point
1399 to close the polygon. The polygon is automatically closed by connecting the
1400 first and the last point. The coordinates are given in the current measurement
1401 units of the document (see UNIT constants). "name" should be a unique
1402 identifier for the object because you need this name for further access to that
1403 object. If "name" is not given Scribus will create one for you.
1404
1405 May raise NameExistsError if you explicitly pass a name that's already used.
1406 May raise ValueError if an insufficient number of points is passed or if
1407 the number of values passed don't group into points without leftovers.
1408 </source>
1409 <translation>createPolygon(list, ["name"]) -> string
1410
1411 Vytvoří nový mnohoúhelník na aktuální stránce dokumentu a vrátí jeho jméno.
1412 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1413 Jméno "name" musí být unikátní řetězec.
1414 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1415 Seznam bodů objeku má tvar: [x1, y1, x2, y2, ..., xn, yn] a jsou nutné alespoň
1416 tři body. Mnohoúhelník je automaticky uzavřen, takže není třeba zadávat poslední
1417 bod jako první.
1418
1419 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.
1420 Může vyvolat výjimku ValueError v případě špatných koordinátů.</translation>
1421 </message>
1422 <message>
1423 <source>createBezierLine(list, ["name"]) -> string
1424
1425 Creates a new bezier curve and returns its name. The points for the bezier
1426 curve are stored in the list "list" in the following order:
1427 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
1428 In the points list, x and y mean the x and y coordinates of the point and kx
1429 and ky meaning the control point for the curve. The coordinates are given in
1430 the current measurement units of the document (see UNIT constants). "name"
1431 should be a unique identifier for the object because you need this name for
1432 further access to that object. If "name" is not given Scribus will create one
1433 for you.
1434
1435 May raise NameExistsError if you explicitly pass a name that's already used.
1436 May raise ValueError if an insufficient number of points is passed or if
1437 the number of values passed don't group into points without leftovers.
1438 </source>
1439 <translation>createBezierLine(list, ["name"]) -> string
1440
1441 Vytvoří novou Bezierovou křivku na aktuální stránce dokumentu a vrátí jeho jméno.
1442 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1443 Jméno "name" musí být unikátní řetězec.
1444 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1445 Seznam bodů objeku má tvar: [x1, y1, kx1, ky1, x2, y2, kx2, ky2, ..., xn, yn, kxn, kyn].
1446 x a y jsou koordináty bodů, kx a ky jsou koordináty řídícího bodu křivky.
1447
1448 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.
1449 Může vyvolat výjimku ValueError v případě špatných koordinátů.</translation>
1450 </message>
1451 <message>
1452 <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
1453
1454 Creates a new pathText by merging the two objects "textbox" and
1455 "beziercurve" and returns its name. The coordinates are given in the current
1456 measurement unit of the document (see UNIT constants). "name" should be a
1457 unique identifier for the object because you need this name for further access
1458 to that object. If "name" is not given Scribus will create one for you.
1459
1460 May raise NameExistsError if you explicitly pass a name that's already used.
1461 May raise NotFoundError if one or both of the named base object don't exist.
1462 </source>
1463 <translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
1464
1465 Vytvoří nový text na křivce na aktuální stránce dokumentu a vrátí jeho jméno.
1466 Koordináty jsou zadávány v současných měrných jednotkách (viz konstanty UNIT).
1467 Jméno "name" musí být unikátní řetězec.
1468 Jestliže není "name" uvedeno, Scribus jméno vytvoří sám.
1469 Text na křivce vyznikne ze dvou objektů - textového rámce "textbox" a Bezierovské
1470 křivky "beziercurve".
1471
1472 Může vyvolat výjimku NameExistsError když zadáte jméno, které již existuje.
1473 Může vyvolat výjimku NotFoundError v případě neexistujících objektů.</translation>
1474 </message>
1475 <message>
1476 <source>deleteObject(["name"])
1477
1478 Deletes the item with the name "name". If "name" is not given the currently
1479 selected item is deleted.
1480 </source>
1481 <translation>deleteObject(["name"])
1482
1483 Smaže objekt "name". Jestliže není "name" uvedeno, použije vybraný objekt.</translation>
1484 </message>
1485 <message>
1486 <source>textFlowsAroundFrame("name" [, state])
1487
1488 Enables/disables "Text Flows Around Frame" feature for object "name".
1489 Called with parameters string name and optional boolean "state". If "state"
1490 is not passed, text flow is toggled.
1491 </source>
1492 <translation>textFlowsAroundFrame("name" [, state])
1493
1494 Povolí/zakáže vlastnost "Text obtéká okolo rámu" objektu "name".
1495 Jestliže je "state" true, vlastnost povolí a naopak. V případě, že "state" není
1496 zadáno, stav se obrátí.</translation>
1497 </message>
1498 <message>
1499 <source>objectExists(["name"]) -> bool
1500
1501 Test if an object with specified name really exists in the document.
1502 The optional parameter is the object name. When no object name is given,
1503 returns True if there is something selected.
1504 </source>
1505 <translation>objectExists(["name"]) -> bool
1506
1507 Vrátí příznak, zda objekt "name" v dokuemntu existuje. Když není "name"
1508 zadáno, vrátí true, jestliže je nějaký objekt vybrán.</translation>
1509 </message>
1510 <message>
1511 <source>setStyle("style" [, "name"])
1512
1513 Apply the named "style" to the object named "name". If is no object name
1514 given, it's applied on the selected object.
1515 </source>
1516 <translation>setStyle("style" [, "name"])
1517
1518 Aplikuje styl "style" na objekt "name". Jestliže není "name" uvedeno,