"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "scribus-1.3.3.12/scribus/po/scribus.sl.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>getColorNames() -> list
7
8 Returns a list containing the names of all defined colors in the document.
9 If no document is open, returns a list of the default document colors.
10 </source>
11 <translation>getColorNames() -> list
12
13 Vrne spisek vseh barv, ki so določene v dokumentu.
14 Če ni odprt noben dokument, vrne spisek privzetih barv.</translation>
15 </message>
16 <message>
17 <source>newDocDialog() -> bool
18
19 Displays the "New Document" dialog box. Creates a new document if the user
20 accepts the settings. Does not create a document if the user presses cancel.
21 Returns true if a new document was created.
22 </source>
23 <translation>newDocDialog() -> bool
24
25 Prikaže pogovorno okno "Nov dokument". Ustvari nov dokument, če uporabnik
26 sprejme nastavitve. Ne ustvari novega dokumenta, če uporabnik
27 prekliče ukaz. Vrne vrednost true, če je bil novi dokument ustvarjen.</translation>
28 </message>
29 <message>
30 <source>getFillColor(["name"]) -> string
31
32 Returns the name of the fill color of the object "name".
33 If "name" is not given the currently selected item is used.
34 </source>
35 <translation>getFillColor(["ime"]) -> string
36
37 Vrne ime polnilne barve predmeta "ime".
38 Če "ime" ni podano, se uporabi trenutno izbrani predmet.</translation>
39 </message>
40 <message>
41 <source>moveObject(dx, dy [, "name"])
42
43 Moves the object "name" by dx and dy relative to its current position. The
44 distances are expressed in the current measurement unit of the document (see
45 UNIT constants). If "name" is not given the currently selected item is used.
46 If the object "name" belongs to a group, the whole group is moved.
47 </source>
48 <translation>getFillColor(["ime"]) -> string
49
50 Premakne predmet "ime" za dx in dy relativno na trenuten položaj.
51 Razdalje so podane v enotah trenutnega dokumenta (glejte konstante
52 UNIT). Če "ime" ni podano, se uporabi trenutno izbrani predmet.
53 Če je predmet "ime" del skupine, se premakne celotna skupina.</translation>
54 </message>
55 <message>
56 <source>setRedraw(bool)
57
58 Disables page redraw when bool = False, otherwise redrawing is enabled.
59 This change will persist even after the script exits, so make sure to call
60 setRedraw(True) in a finally: clause at the top level of your script.
61 </source>
62 <translation>setRedraw(bool)
63
64 Izključi ponovno risanje strani, ko je bool = False, sicer je ponovno risanje
65 vključeno. Ta sprememba obvelja, čeprav je skripta konec, zato preverite,
66 da pokličete setRedraw(True) v stavku finally: na vrhnji ravni svojega skripta.</translation>
67 </message>
68 <message>
69 <source>createRect(x, y, width, height, ["name"]) -> string
70
71 Creates a new rectangle on the current page and returns its name. The
72 coordinates are given in the current measurement units of the document
73 (see UNIT constants). "name" should be a unique identifier for the object
74 because you need this name to reference that object in future. If "name"
75 is not given Scribus will create one for you.
76
77 May raise NameExistsError if you explicitly pass a name that's already used.
78 </source>
79 <translation>createRect(x, y, širina, višina, ["ime"]) -> string
80
81 Ustvari nov pravokotnik na trenutni strani in vrne njegovo ime.
82 Koordinate so podane v trenutnih merskih enotah dokumenta
83 (glejte konstante UNIT). "ime" mora biti enkraten imenovalec predmeta,
84 saj bo služil za sklicevanje na ta predmet v prihodnje. Če "ime"
85 ni podano, bo Scribus ustvaril naključno ime.
86
87 Lahko vrne NameExistsError, če izrecno navedete ime, ki je že v uporabi.</translation>
88 </message>
89 <message>
90 <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])
91
92 Sets the gradient fill of the object "name" to type. Color descriptions are
93 the same as for setFillColor() and setFillShade(). See the constants for
94 available types (FILL_<type>).
95 </source>
96 <translation>setGradientFill(vrsta, "barva1", senca1, "barva2", senca2, ["ime"])
97
98 Nastavi polnilo preliva predmeta "ime". Opisi barv so enaki kot pri
99 setFillColor() in setFillShade(). Oglejte si konstante za vrste,
100 ki so na voljo (FILL_<vrsta>).</translation>
101 </message>
102 <message>
103 <source>getFontSize(["name"]) -> float
104
105 Returns the font size in points for the text frame "name". If this text
106 frame has some text selected the value assigned to the first character of
107 the selection is returned.
108 If "name" is not given the currently selected item is used.
109 </source>
110 <translation>getFontSize(["ime"]) -> float
111
112 Vrne velikost pisave v točkah za besedilni okvir "ime". Če ima ta besedilni
113 okvir izbrano besedilo, bo vrnjena vrednost, dodeljena prvemu znaku izbire.
114 Če "ime" ni podano, je uporabljen trenutno izbran element.</translation>
115 </message>
116 <message>
117 <source>messagebarText("string")
118
119 Writes the "string" into the Scribus message bar (status line). The text
120 must be UTF8 encoded or 'unicode' string(recommended).
121 </source>
122 <translation>messagebarText("niz")
123
124 Zapiše "niz" v vrstico sporočil Scribusa (vrstica stanja). Besedilo
125 mora biti kodirano v nizu UTF8 ali 'unicode' (priporočeno).</translation>
126 </message>
127 <message>
128 <source>newPage(where [,"masterpage"])
129
130 Creates a new page. If "where" is -1 the new Page is appended to the
131 document, otherwise the new page is inserted before "where". Page numbers are
132 counted from 1 upwards, no matter what the displayed first page number of your
133 document is. The optional parameter "masterpage" specifies the name of the
134 master page for the new page.
135
136 May raise IndexError if the page number is out of range
137 </source>
138 <translation>newPage(kje [,"glavnastran"])
139
140 Ustvari novo stran. Če je "kje" -1, se nova stran pripne dokumentu, sicer je
141 nova stran vstavljena pred "kje". Številke strani se štejejo od 1 navzgor,
142 ne glede na to, ali je prikazana številka prve strani dokumenta ali ne.
143 Dodatni parameter "glavnastran" določa ime glavne strani za novo stran.
144
145 Če je številka strani zunaj obsega, lahko vrne IndexError</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("niz")
154
155 "niz" mora biti veljavno ime datoteke slike SVG. Besedilo
156 mora biti kodirano v UTF8 ali 'unicode' (priporočeno).</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(velikost, robovi, postavitev, številkaPrveStrani,
200 merskaEnota, vrstaStrani, zaporedjePrveStrani) -> bool
201
202 Ustvari nov dokument in vrne true, če je uspelo. Parametri imajo naslednji pomen:
203
204 velikost = Skupek mer (širina, višina), ki opisuje velikost dokumenta. Uporabite
205 lahko vnaprej določene konstante, poimenovane PAPER_<vrsta_papirja>,
206 npr. PAPER_A4 itn.
207
208 robovi = Skupek mer (levo, desno, zgoraj, spodaj), ki opisuje robove dokumenta.
209
210 postavitev = postavitev strani - konstanti PORTRAIT in LANDSCAPE
211
212 številkaPrveStrani = je številka prve strani v dokumentu, uporabljena za
213 oštevilčevanje strani. Čeprav najpogosteje hočete 1, je uporabno za višje
214 številke, če ustvarjate dokument v več delih.
215
216 merskaEnota: ta vrednost nastavi merske enote, ki jih uporablja dokument. Uporabite
217 vnaprej določene konstante, eno izmed: UNIT_INCHES, UNIT_MILLIMETERS,
218 UNIT_PICAS, UNIT_POINTS.
219
220 vrstaStrani = Ena od vnaprej določenih konstant PAGE_n. PAGE_1 je posamična stran,
221 PAGE_2 je za dvostranske dokumente, PAGE_3 je za tristransko zgibanko in
222 PAGE_4 je za štiristransko zgibanko.
223
224 zaporedjePrveStrani = Kateri položaj ima prva stran dokumenta.
225 Indeksirano od 0 (0 = prva).
226
227 številoStrani = Število strani, ki naj bodo ustvarjene.
228
229 Vrednosti za širino, višino in robove so izražene v danih merskih enotah
230 dokumenta. Konstante PAPER_* so izražene v točkah. Če vaš dokument
231 ni v točkah, poskrbite, da bo tako.
232
233 primer: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
234 PAGE_4, 3, 1)
235
236 Lahko vrne napako ScribusError, če je firstPageOrder večja od dovoljenega z pagesType.</translation>
237 </message>
238 </context>
239 <context>
240 <name>@default</name>
241 <message>
242 <source>getColor("name") -> tuple
243
244 Returns a tuple (C, M, Y, K) containing the four color components of the
245 color "name" from the current document. If no document is open, returns
246 the value of the named color from the default document colors.
247
248 May raise NotFoundError if the named color wasn't found.
249 May raise ValueError if an invalid color name is specified.
250 </source>
251 <translation type="unfinished"></translation>
252 </message>
253 <message>
254 <source>changeColor("name", c, m, y, k)
255
256 Changes the color "name" to the specified CMYK value. The color value is
257 defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
258 Color components should be in the range from 0 to 255.
259
260 May raise NotFoundError if the named color wasn't found.
261 May raise ValueError if an invalid color name is specified.
262 </source>
263 <translation type="unfinished"></translation>
264 </message>
265 <message>
266 <source>deleteColor("name", "replace")
267
268 Deletes the color "name". Every occurence of that color is replaced by the
269 color "replace". If not specified, "replace" defaults to the color
270 "None" - transparent.
271
272 deleteColor works on the default document colors if there is no document open.
273 In that case, "replace", if specified, has no effect.
274
275 May raise NotFoundError if a named color wasn't found.
276 May raise ValueError if an invalid color name is specified.
277 </source>
278 <translation type="unfinished"></translation>
279 </message>
280 <message>
281 <source>replaceColor("name", "replace")
282
283 Every occurence of the color "name" is replaced by the color "replace".
284
285 May raise NotFoundError if a named color wasn't found.
286 May raise ValueError if an invalid color name is specified.
287 </source>
288 <translation type="unfinished"></translation>
289 </message>
290 <message>
291 <source>messageBox("caption", "message",
292 icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
293 button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
294
295 Displays a message box with the title "caption", the message "message", and
296 an icon "icon" and up to 3 buttons. By default no icon is used and a single
297 button, OK, is displayed. Only the caption and message arguments are required,
298 though setting an icon and appropriate button(s) is strongly
299 recommended. The message text may contain simple HTML-like markup.
300
301 Returns the number of the button the user pressed. Button numbers start
302 at 1.
303
304 For the icon and the button parameters there are predefined constants available
305 with the same names as in the Qt Documentation. These are the BUTTON_* and
306 ICON_* constants defined in the module. There are also two extra constants that
307 can be binary-ORed with button constants:
308 BUTTONOPT_DEFAULT Pressing enter presses this button.
309 BUTTONOPT_ESCAPE Pressing escape presses this button.
310
311 Usage examples:
312 result = messageBox('Script failed',
313 'This script only works when you have a text frame selected.',
314 ICON_ERROR)
315 result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
316 ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
317 BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
318
319 Defined button and icon constants:
320 BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
321 BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
322 ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
323 </source>
324 <translation type="unfinished"></translation>
325 </message>
326 <message>
327 <source>valueDialog(caption, message [,defaultvalue]) -> string
328
329 Shows the common 'Ask for string' dialog and returns its value as a string
330 Parameters: window title, text in the window and optional 'default' value.
331
332 Example: valueDialog('title', 'text in the window', 'optional')
333 </source>
334 <translation>valueDialog(napis, vsebina [,privzetavrednost]) -> string
335
336 Pokaže pogosto pogovorno okno 'Vprašaj za niz' in vrne njegovo vrednost kot niz.
337 Parametri: naslov okna, besedilo v oknu in neobvezna 'privzeta' vrednost.
338
339 Primer: valueDialog('naslov', 'besedilo v oknu', 'neobvezno')</translation>
340 </message>
341 <message>
342 <source>closeDoc()
343
344 Closes the current document without prompting to save.
345
346 May throw NoDocOpenError if there is no document to close
347 </source>
348 <translation>closeDoc()
349
350 Zapre trenutni dokument brez poprejšnje ponudbe za shranjevanje.
351
352 Lahko vrne napako NoDocOpenError, če dokumenta za zapiranje ni</translation>
353 </message>
354 <message>
355 <source>haveDoc() -> bool
356
357 Returns true if there is a document open.
358 </source>
359 <translation>haveDoc() -> bool
360
361 Vrne vrednost true, če je dokument odprt.</translation>
362 </message>
363 <message>
364 <source>openDoc("name")
365
366 Opens the document "name".
367
368 May raise ScribusError if the document could not be opened.
369 </source>
370 <translation>openDoc("ime")
371
372 Odpre dokument "ime".
373
374 Lahko vrne napako ScribusError, če dokumenta ni mogoče odpreti.
375 </translation>
376 </message>
377 <message>
378 <source>saveDoc()
379
380 Saves the current document with its current name, returns true if successful.
381 If the document has not already been saved, this may bring up an interactive
382 save file dialog.
383
384 If the save fails, there is currently no way to tell.
385 </source>
386 <translation>saveDoc()
387
388 Shrani trenutni dokument z njegovim trenutnim imenom, vrne true, če je uspešno.
389 Če dokument še ni bil shranjen, lahko to prikliče interaktivno pogovorno okno
390 za shranjevanje.
391
392 Če shranjevanje ne uspe, tega ni mogoče ugotoviti.</translation>
393 </message>
394 <message>
395 <source>saveDocAs("name")
396
397 Saves the current document under the new name "name" (which may be a full or
398 relative path).
399
400 May raise ScribusError if the save fails.
401 </source>
402 <translation>saveDocAs("ime")
403
404 Shrani trenutni dokument pod novim imenom "ime" (ki je lahko polna ali
405 relativna pot).
406
407 Lahko vrne ScribusError, če shranjevanje ne uspe.</translation>
408 </message>
409 <message>
410 <source>setMargins(lr, rr, tr, br)
411
412 Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
413 margins are given in the measurement units of the document - see UNIT_<type>
414 constants.
415 </source>
416 <translation type="unfinished"></translation>
417 </message>
418 <message>
419 <source>setUnit(type)
420
421 Changes the measurement unit of the document. Possible values for "unit" are
422 defined as constants UNIT_<type>.
423
424 May raise ValueError if an invalid unit is passed.
425 </source>
426 <translation>setUnit(vrsta)
427
428 Spremeni merske enote dokumenta. Možne vrednosti za "enoto" so
429 določene kot konstante UNIT_<vrsta>.
430
431 Lahko vrne napako ValueError, če je posredovana neveljavna enota.</translation>
432 </message>
433 <message>
434 <source>getUnit() -> integer (Scribus unit constant)
435
436 Returns the measurement units of the document. The returned value will be one
437 of the UNIT_* constants:
438 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
439 </source>
440 <translation>getUnit() -> integer (konstanta enot Scribus)
441
442 Vrne merske enote dokumenta. Vrnjena vrednost bo ena izmed
443 konstant UNIT_*:
444 UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.</translation>
445 </message>
446 <message>
447 <source>loadStylesFromFile("filename")
448
449 Loads paragraph styles from the Scribus document at "filename" into the
450 current document.
451 </source>
452 <translation>loadStylesFromFile("imedatoteke")
453
454 Naloži sloge odstavkov iz dokumenta Scribus "imedatoteke" v
455 trenutni dokument.</translation>
456 </message>
457 <message>
458 <source>setDocType(facingPages, firstPageLeft)
459
460 Sets the document type. To get facing pages set the first parameter to
461 FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
462 to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
463 a right page use FIRSTPAGERIGHT.
464 </source>
465 <translation type="unfinished"></translation>
466 </message>
467 <message>
468 <source>getLineColor(["name"]) -> string
469
470 Returns the name of the line color of the object "name".
471 If "name" is not given the currently selected item is used.
472 </source>
473 <translation>getLineColor(["ime"]) -> string
474
475 Vrne ime barve črte predmeta "ime".
476 Če "ime" ni podano, uporabi trenutno izbrani predmet.</translation>
477 </message>
478 <message>
479 <source>getLineWidth(["name"]) -> integer
480
481 Returns the line width of the object "name". If "name"
482 is not given the currently selected Item is used.
483 </source>
484 <translation>getLineWidth(["ime"]) -> integer
485 Vrne širino črte predmeta "ime". Če "ime"
486 ni podano, bo uporabljen trenutno izbrani predmet.</translation>
487 </message>
488 <message>
489 <source>getLineShade(["name"]) -> integer
490
491 Returns the shading value of the line color of the object "name".
492 If "name" is not given the currently selected item is used.
493 </source>
494 <translation>getLineShade(["ime"]) -> integer
495
496 Vrne vrednost senčenja za barvo črte predmeta "ime".
497 Če "ime" ni podano, je uporabljen trenutno izbrani predmet.</translation>
498 </message>
499 <message>
500 <source>getLineJoin(["name"]) -> integer (see contants)
501
502 Returns the line join style of the object "name". If "name" is not given
503 the currently selected item is used. The join types are:
504 JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
505 </source>
506 <translation type="unfinished"></translation>
507 </message>
508 <message>
509 <source>getLineEnd(["name"]) -> integer (see constants)
510
511 Returns the line cap style of the object "name". If "name" is not given the
512 currently selected item is used. The cap types are:
513 CAP_FLAT, CAP_ROUND, CAP_SQUARE
514 </source>
515 <translation type="unfinished"></translation>
516 </message>
517 <message>
518 <source>getLineStyle(["name"]) -> integer (see constants)
519
520 Returns the line style of the object "name". If "name" is not given the
521 currently selected item is used. Line style constants are:
522 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
523 </source>
524 <translation>getLineStyle(["ime"]) -> integer (glej konstante)
525
526 Vrne slog črte predmeta "ime". Če "ime" ni podano, je uporabljen
527 trenutno izbrani predmet. Konstante sloga črte so:
528 LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID</translation>
529 </message>
530 <message>
531 <source>getFillShade(["name"]) -> integer
532
533 Returns the shading value of the fill color of the object "name".
534 If "name" is not given the currently selected item is used.
535 </source>
536 <translation>getFillShade(["ime"]) -> integer
537
538 Vrne vrednost senčenja za barvo polnila predmeta "ime".
539 Če "ime" ni podano, bo uporabljen trenutno izbrani predmet.</translation>
540 </message>
541 <message>
542 <source>getImageScale(["name"]) -> (x,y)
543
544 Returns a (x, y) tuple containing the scaling values of the image frame
545 "name". If "name" is not given the currently selected item is used.
546 </source>
547 <translation>getImageScale(["ime"]) -> (x,y)
548
549 Vrne par (x, y), ki vsebuje vrednosti spremembe merila za okvir slike
550 "ime". Če "ime" ni podano, je uporabljen trenutno izbrani predmet.</translation>
551 </message>
552 <message>
553 <source>getImageName(["name"]) -> string
554
555 Returns the filename for the image in the image frame. If "name" is not
556 given the currently selected item is used.
557 </source>
558 <translation>getImageName(["ime"]) -> string
559
560 Vrne ime datoteke slike v okviru slike. Če "ime" ni
561 podano, je uporabljen trenutno izbrani predmet.</translation>
562 </message>
563 <message>
564 <source>getSize(["name"]) -> (width,height)
565
566 Returns a (width, height) tuple with the size of the object "name".
567 If "name" is not given the currently selected item is used. The size is
568 expressed in the current measurement unit of the document - see UNIT_<type>
569 for reference.
570 </source>
571 <translation type="unfinished"></translation>
572 </message>
573 <message>
574 <source>getRotation(["name"]) -> integer
575
576 Returns the rotation of the object "name". The value is expressed in degrees,
577 and clockwise is positive. If "name" is not given the currently selected item
578 is used.
579 </source>
580 <translation>getRotation(["ime"]) -> integer
581
582 Vrne zasukanost predmeta "ime". Vrednost je izražena v stopinjah,
583 in sicer je v smeri urinega kazalca vrednost pozitivna. Če "ime" ni podano,
584 bo uporabljen trenutno izbran element.</translation>
585 </message>
586 <message>
587 <source>getAllObjects() -> list
588
589 Returns a list containing the names of all objects on the current page.
590 </source>
591 <translation>getAllObjects() -> list
592
593 Vrne seznam z imeni vseh predmetov na trenutni strani.</translation>
594 </message>
595 <message>
596 <source>moveObjectAbs(x, y [, "name"])
597
598 Moves the object "name" to a new location. The coordinates are expressed in
599 the current measurement unit of the document (see UNIT constants). If "name"
600 is not given the currently selected item is used. If the object "name"
601 belongs to a group, the whole group is moved.
602 </source>
603 <translation type="unfinished"></translation>
604 </message>
605 <message>
606 <source>rotateObject(rot [, "name"])
607
608 Rotates the object "name" by "rot" degrees relatively. The object is
609 rotated by the vertex that is currently selected as the rotation point - by
610 default, the top left vertext at zero rotation. Positive values mean counter
611 clockwise rotation when the default rotation point is used. If "name" is not
612 given the currently selected item is used.
613 </source>
614 <translation type="unfinished"></translation>
615 </message>
616 <message>
617 <source>sizeObject(width, height [, "name"])
618
619 Resizes the object "name" to the given width and height. If "name"
620 is not given the currently selected item is used.
621 </source>
622 <translation>sizeObject(širina, višina [, "ime"])
623
624 Spremeni velikost predmeta "ime" na podano širino in višino. Če "ime"
625 ni podano, je uporabljen trenutno izbrani predmet.</translation>
626 </message>
627 <message>
628 <source>getSelectedObject([nr]) -> string
629
630 Returns the name of the selected object. "nr" if given indicates the number
631 of the selected object, e.g. 0 means the first selected object, 1 means the
632 second selected Object and so on.
633 </source>
634 <translation>getSelectedObject([št]) -> string
635
636 Vrne ime izbranega predmeta. Če je podana, predstavlja "št" številko
637 izbranega predmeta; 0 npr. pomeni prvi izbrani predmet, 1 drugi
638 izbrani predmet itn.</translation>
639 </message>
640 <message>
641 <source>selectionCount() -> integer
642
643 Returns the number of selected objects.
644 </source>
645 <translation>selectionCount() -> integer
646
647 Vrne število izbranih predmetov.</translation>
648 </message>
649 <message>
650 <source>selectObject("name")
651
652 Selects the object with the given "name".
653 </source>
654 <translation>selectObject("ime")
655
656 Izbere predmet z danim "imenom".</translation>
657 </message>
658 <message>
659 <source>deselectAll()
660
661 Deselects all objects in the whole document.
662 </source>
663 <translation>deselectAll()
664
665 Prekliče izbiro vseh predmetov v celem dokumentu.</translation>
666 </message>
667 <message>
668 <source>groupObjects(list)
669
670 Groups the objects named in "list" together. "list" must contain the names
671 of the objects to be grouped. If "list" is not given the currently selected
672 items are used.
673 </source>
674 <translation>groupObjects(seznam)
675
676 Združi predmete s "seznama" v skupino. "Seznam" mora vsebovati imena
677 predmetov, ki naj bodo združeni. Če "seznam" ni podan, so uporabljeni
678 trenutno izbrani predmeti.</translation>
679 </message>
680 <message>
681 <source>unGroupObjects("name")
682
683 Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source>
684 <translation>unGroupObjects("ime")
685
686 Razdruži skupino predmetov, kateri pripada predmet "ime". Če "ime" ni podano,
687 je uporabljen trenutno izbrani predmet.</translation>
688 </message>
689 <message>
690 <source>scaleGroup(factor [,"name"])
691
692 Scales the group the object "name" belongs to. Values greater than 1 enlarge
693 the group, values smaller than 1 make the group smaller e.g a value of 0.5
694 scales the group to 50 % of its original size, a value of 1.5 scales the group
695 to 150 % of its original size. The value for "factor" must be greater than
696 0. If "name" is not given the currently selected item is used.
697
698 May raise ValueError if an invalid scale factor is passed.
699 </source>
700 <translation type="unfinished"></translation>
701 </message>
702 <message>
703 <source>loadImage("filename" [, "name"])
704
705 Loads the picture "picture" into the image frame "name". If "name" is
706 not given the currently selected item is used.
707
708 May raise WrongFrameTypeError if the target frame is not an image frame
709 </source>
710 <translation>loadImage("imedatoteke" [, "ime"])
711
712 Naloži sliko "imedatoteke" v slikovni okvir "ime". Če "ime"
713 ni podan, je uporabljen trenutno izbran element.
714
715 Vrne lahko napako WrongFrameTypeError, če ciljni okvir ni slikovni okvir
716 </translation>
717 </message>
718 <message>
719 <source>scaleImage(x, y [, "name"])
720
721 Sets the scaling factors of the picture in the image frame "name".
722 If "name" is not given the currently selected item is used. A number of 1
723 means 100 %.
724
725 May raise WrongFrameTypeError if the target frame is not an image frame
726 </source>
727 <translation type="unfinished"></translation>
728 </message>
729 <message>
730 <source>lockObject(["name"]) -> bool
731
732 Locks the object "name" if it's unlocked or unlock it if it's locked.
733 If "name" is not given the currently selected item is used. Returns true
734 if locked.
735 </source>
736 <translation>lockObject(["ime"]) -> bool
737
738 Zaklene predmet "ime", če ni zaklenjen, ali ga odklene, če je zaklenjen.
739 Če "ime" ni podano, je uporabljen trenutno izbrani predmet. Vrne true,
740 če je zaklenjen.</translation>
741 </message>
742 <message>
743 <source>isLocked(["name"]) -> bool
744
745 Returns true if is the object "name" locked. If "name" is not given the
746 currently selected item is used.
747 </source>
748 <translation>isLocked(["ime"]) -> bool
749
750 Vrne true, če je predmet "ime" zaklenjen. Če "ime" ni podano, je
751 uporabljen trenutno izbrani predmet.</translation>
752 </message>
753 <message>
754 <source>getFontNames() -> list
755
756 Returns a list with the names of all available fonts.
757 </source>
758 <translation>getFontNames() -> list
759
760 Vrne seznam z imeni vseh pisav, ki so na voljo.</translation>
761 </message>
762 <message>
763 <source>getXFontNames() -> list of tuples
764
765 Returns a larger font info. It's a list of the tuples with:
766 [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
767 </source>
768 <translation type="unfinished"></translation>
769 </message>
770 <message>
771 <source>getLayers() -> list
772
773 Returns a list with the names of all defined layers.
774 </source>
775 <translation>getLayers() -> list
776
777 Vrne seznam z imeni vseh obstoječih plasti.</translation>
778 </message>
779 <message>
780 <source>setActiveLayer("name")
781
782 Sets the active layer to the layer named "name".
783
784 May raise NotFoundError if the layer can't be found.
785 May raise ValueError if the layer name isn't acceptable.
786 </source>
787 <translation>setActiveLayer("ime")
788
789 Določi aktivno plast na plast, imenovano "ime".
790
791 Lahko vrne napako NotFoundError, če plasti ni mogoče najti.
792 Lahko vrne napako ValueError, če ime plasti ni sprejemljivo.
793 </translation>
794 </message>
795 <message>
796 <source>getActiveLayer() -> string
797
798 Returns the name of the current active layer.
799 </source>
800 <translation>getActiveLayer() -> string
801
802 Vrne ime trenutno aktivne plasti.</translation>
803 </message>
804 <message>
805 <source>sentToLayer("layer" [, "name"])
806
807 Sends the object "name" to the layer "layer". The layer must exist.
808 If "name" is not given the currently selected item is used.
809
810 May raise NotFoundError if the layer can't be found.
811 May raise ValueError if the layer name isn't acceptable.
812 </source>
813 <translation>sentToLayer("plast" [, "ime"])
814
815 Pošlje predmet "ime" na plast "plast". Plast mora obstajati.
816 Če "ime" ni podano, je uporabljen trenutno izbran predmet.
817
818 Lahko vrne napako NotFoundError, če plasti ni mogoče najti.
819 Lahko vrne napako ValueError, če ime plasti ni sprejemljivo.
820 </translation>
821 </message>
822 <message>
823 <source>setLayerVisible("layer", visible)
824
825 Sets the layer "layer" to be visible or not. If is the visible set to false
826 the layer is invisible.
827
828 May raise NotFoundError if the layer can't be found.
829 May raise ValueError if the layer name isn't acceptable.
830 </source>
831 <translation>setLayerVisible("plast", vidna)
832
833 Določi, ali naj bo plast "plast" vidna ali ne. Če je vidna nastavljena na false,
834 plast ni vidna.
835
836 Lahko vrne napako NotFoundError, če plasti ni mogoče najti.
837 Lahko vrne napako ValueError, če ime plasti ni sprejemljivo.
838 </translation>
839 </message>
840 <message>
841 <source>setLayerPrintable("layer", printable)
842
843 Sets the layer "layer" to be printable or not. If is the printable set to
844 false the layer won't be printed.
845
846 May raise NotFoundError if the layer can't be found.
847 May raise ValueError if the layer name isn't acceptable.
848 </source>
849 <translation type="unfinished"></translation>
850 </message>
851 <message>
852 <source>deleteLayer("layer")
853
854 Deletes the layer with the name "layer". Nothing happens if the layer doesn't
855 exists or if it's the only layer in the document.
856
857 May raise NotFoundError if the layer can't be found.
858 May raise ValueError if the layer name isn't acceptable.
859 </source>
860 <translation>deleteLayer("plast")
861
862 Izbriše plast z imenom "plast". Nič se ne zgodi, če plast ne
863 obstaja ali pa je edina plast v dokumentu.
864
865 Vrne lahko napako NotFoundError, če plasti ni mogoče najti.
866 Vrne lahko napako ValueError, če ime plasti ni sprejemljivo.
867 </translation>
868 </message>
869 <message>
870 <source>createLayer(layer)
871
872 Creates a new layer with the name "name".
873
874 May raise ValueError if the layer name isn't acceptable.
875 </source>
876 <translation>createLayer(plast)
877
878 Ustvari novo plast z imenom "ime".
879
880 Lahko vrne napako ValueError. če ime plasti ni sprejemljivo.</translation>
881 </message>
882 <message>
883 <source>getGuiLanguage() -> string
884
885 Returns a string with the -lang value.
886 </source>
887 <translation>getGuiLanguage() -> string
888
889 Vrne niz z vrednostjo -lang.</translation>
890 </message>
891 <message>
892 <source>createEllipse(x, y, width, height, ["name"]) -> string
893
894 Creates a new ellipse on the current page and returns its name.
895 The coordinates are given in the current measurement units of the document
896 (see UNIT constants). "name" should be a unique identifier for the object
897 because you need this name for further referencing of that object. If "name"
898 is not given Scribus will create one for you.
899
900 May raise NameExistsError if you explicitly pass a name that's already used.
901 </source>
902 <translation type="unfinished"></translation>
903 </message>
904 <message>
905 <source>createImage(x, y, width, height, ["name"]) -> string
906
907 Creates a new picture frame on the current page and returns its name. The
908 coordinates are given in the current measurement units of the document.
909 "name" should be a unique identifier for the object because you need this
910 name for further access to that object. If "name" is not given Scribus will
911 create one for you.
912
913 May raise NameExistsError if you explicitly pass a name that's already used.
914 </source>
915 <translation type="unfinished"></translation>
916 </message>
917 <message>
918 <source>createText(x, y, width, height, ["name"]) -> string
919
920 Creates a new text frame on the actual page and returns its name.
921 The coordinates are given in the actual measurement unit of the document (see
922 UNIT constants). "name" should be a unique identifier for the object because
923 you need this name for further referencing of that object. If "name" is not
924 given Scribus will create one for you.
925
926 May raise NameExistsError if you explicitly pass a name that's already used.
927 </source>
928 <translation type="unfinished"></translation>
929 </message>
930 <message>
931 <source>createLine(x1, y1, x2, y2, ["name"]) -> string
932
933 Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
934 its name. The coordinates are given in the current measurement unit of the
935 document (see UNIT constants). "name" should be a unique identifier for the
936 object because you need this name for further access to that object. If
937 "name" is not given Scribus will create one for you.
938
939 May raise NameExistsError if you explicitly pass a name that's already used.
940 </source>
941 <translation>createLine(x1, y1, x2, y2, ["ime"]) -> string
942
943 Ustvari novo črto od točke(x1, y1) do točke(x2, y2) in vrne
944 njeno ime. Koordinate so podane v trenutnih merskih enotah
945 dokumenta (glejte konstante UNIT). "ime" mora biti enkatni označevalec
946 predmeta, saj to ime potrebujete za kasnejše dostopanje do predmeta. Če
947 "ime" ni podano, ga bo Scribus ustvarl namesto vas.
948
949 Lahko vrne napako NameExistsError, če izrecno podate ime, ki je že uporabljeno.
950 </translation>
951 </message>
952 <message>
953 <source>createPolyLine(list, ["name"]) -> string
954
955 Creates a new polyline and returns its name. The points for the polyline are
956 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
957 The coordinates are given in the current measurement units of the document (see
958 UNIT constants). "name" should be a unique identifier for the object because
959 you need this name for further access to that object. If "name" is not given
960 Scribus will create one for you.
961
962 May raise NameExistsError if you explicitly pass a name that's already used.
963 May raise ValueError if an insufficient number of points is passed or if
964 the number of values passed don't group into points without leftovers.
965 </source>
966 <translation type="unfinished"></translation>
967 </message>
968 <message>
969 <source>createPolygon(list, ["name"]) -> string
970
971 Creates a new polygon and returns its name. The points for the polygon are
972 stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn].
973 At least three points are required. There is no need to repeat the first point
974 to close the polygon. The polygon is automatically closed by connecting the
975 first and the last point. The coordinates are given in the current measurement
976 units of the document (see UNIT constants). "name" should be a unique
977 identifier for the object because you need this name for further access to that
978 object. If "name" is not given Scribus will create one for you.
979
980 May raise NameExistsError if you explicitly pass a name that's already used.
981 May raise ValueError if an insufficient number of points is passed or if
982 the number of values passed don't group into points without leftovers.
983 </source>
984 <translation type="unfinished"></translation>
985 </message>
986 <message>
987 <source>createBezierLine(list, ["name"]) -> string
988
989 Creates a new bezier curve and returns its name. The points for the bezier
990 curve are stored in the list "list" in the following order:
991 [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
992 In the points list, x and y mean the x and y coordinates of the point and kx
993 and ky meaning the control point for the curve. The coordinates are given in
994 the current measurement units of the document (see UNIT constants). "name"
995 should be a unique identifier for the object because you need this name for
996 further access to that object. If "name" is not given Scribus will create one
997 for you.
998
999 May raise NameExistsError if you explicitly pass a name that's already used.
1000 May raise ValueError if an insufficient number of points is passed or if
1001 the number of values passed don't group into points without leftovers.
1002 </source>
1003 <translation type="unfinished"></translation>
1004 </message>
1005 <message>
1006 <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
1007
1008 Creates a new pathText by merging the two objects "textbox" and
1009 "beziercurve" and returns its name. The coordinates are given in the current
1010 measurement unit of the document (see UNIT constants). "name" should be a
1011 unique identifier for the object because you need this name for further access
1012 to that object. If "name" is not given Scribus will create one for you.
1013
1014 May raise NameExistsError if you explicitly pass a name that's already used.
1015 May raise NotFoundError if one or both of the named base object don't exist.
1016 </source>
1017 <translation type="unfinished"></translation>
1018 </message>
1019 <message>
1020 <source>deleteObject(["name"])
1021
1022 Deletes the item with the name "name". If "name" is not given the currently
1023 selected item is deleted.
1024 </source>
1025 <translation>deleteObject(["ime"])
1026
1027 Izbriše element z imenom "ime". Če "ime" ni podano, je zbrisan
1028 trenutno izbrani element.</translation>
1029 </message>
1030 <message>
1031 <source>textFlowsAroundFrame("name" [, state])
1032
1033 Enables/disables "Text Flows Around Frame" feature for object "name".
1034 Called with parameters string name and optional boolean "state". If "state"
1035 is not passed, text flow is toggled.
1036 </source>
1037 <translation type="unfinished"></translation>
1038 </message>
1039 <message>
1040 <source>objectExists(["name"]) -> bool
1041
1042 Test if an object with specified name really exists in the document.
1043 The optional parameter is the object name. When no object name is given,
1044 returns True if there is something selected.
1045 </source>
1046 <translation>objectExists(["ime"]) -> bool
1047
1048 Preizkusi, če predmet z navedenim imnom resnično obstaja v dokumentu.
1049 Dodaten možen parameter je ime predmeta. Če ime predmeta ni podano,
1050 vrne True, če je izbran kak predmet.
1051 </translation>
1052 </message>
1053 <message>
1054 <source>setStyle("style" [, "name"])
1055
1056 Apply the named "style" to the object named "name". If is no object name
1057 given, it's applied on the selected object.
1058 </source>
1059 <translation>setStyle("slog" [, "ime"])
1060
1061 Uporabi podani "slog" na predmetu z imenom "ime". Če ime predmeta
1062 ni podano, velja za izbrani predmet.</translation>
1063 </message>
1064 <message>
1065 <source>getAllStyles() -> list
1066
1067 Return a list of the names of all paragraph styles in the current document.
1068 </source>
1069 <translation>getAllStyles() -> list
1070
1071 Vrne seznam imen vseh slogov odstavkov v trenutnem dokumentu.</translation>
1072 </message>
1073 <message>
1074 <source>currentPage() -> integer
1075
1076 Returns the number of the current working page. Page numbers are counted from 1
1077 upwards, no matter what the displayed first page number of your document is.
1078 </source>
1079 <translation>currentPage() -> integer
1080
1081 Vrne številko trenutne strani. Številke strani se štejejo od 1
1082 naprej, ne glede na to, kaj je prikazano na prvi strani vašega dokumenta.</translation>
1083 </message>
1084 <message>
1085 <source>redrawAll()
1086
1087 Redraws all pages.
1088 </source>
1089 <translation>redrawAll()
1090
1091 Ponovno izriše vse strani.</translation>
1092 </message>
1093 <message>
1094 <source>savePageAsEPS("name")
1095
1096 Saves the current page as an EPS to the file "name".
1097
1098 May raise ScribusError if the save failed.
1099 </source>
1100 <translation>savePageAsEPS("ime")
1101
1102 Shrani trenutno stran kot EPS v datoteko "ime".
1103
1104 Lahko vrne napako ScribusError, če shranjevanje ni uspelo.</translation>
1105 </message>
1106 <message>
1107 <source>deletePage(nr)
1108
1109 Deletes the given page. Does nothing if the document contains only one page.
1110 Page numbers are counted from 1 upwards, no matter what the displayed first
1111 page number is.
1112
1113 May raise IndexError if the page number is out of range
1114 </source>
1115 <translation>deletePage(št)
1116
1117 Izbriše podano stran. Ne stori ničesar, če dokument vsebuje le eno stran.
1118 Številke strani se štejejo od 1 naprej, ne glede na to, katera je prva prikazana
1119 številka strani.
1120
1121 Lahko vrne napako IndexError, če je številka strani zunaj veljavnega obsega
1122 </translation>
1123 </message>
1124 <message>
1125 <source>gotoPage(nr)
1126
1127 Moves to the page "nr" (that is, makes the current page "nr"). Note that
1128 gotoPage doesn't (curently) change the page the user's view is displaying, it
1129 just sets the page that script commands will operates on.
1130
1131 May raise IndexError if the page number is out of range.
1132 </source>
1133 <translation type="unfinished"></translation>
1134 </message>
1135 <message>
1136 <source>pageCount() -> integer
1137
1138 Returns the number of pages in the document.
1139 </source>
1140 <translation>pageCount() -> integer
1141
1142 Vrne število strani dokumenta.</translation>
1143 </message>
1144 <message>
1145 <source>getHGuides() -> list
1146
1147 Returns a list containing positions of the horizontal guides. Values are in the
1148 document's current units - see UNIT_<type> constants.
1149 </source>
1150 <translation>getHGuides() -> seznam
1151
1152 Vrne seznam s položaji vodoravnih vodil. Vrednosti so izražene v
1153 trenutnih merskih enotah dokumenta - oglejte si konstante UNIT_<vrsta>.
1154 </translation>
1155 </message>
1156 <message>
1157 <source>setHGuides(list)
1158
1159 Sets horizontal guides. Input parameter must be a list of guide positions
1160 measured in the current document units - see UNIT_<type> constants.
1161
1162 Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
1163 setHGuides([90,250]) # replace current guides entirely
1164 </source>
1165 <translation>setHGuides(seznam)
1166
1167 Določi vodoravna vodila. Vstopni parameter mora biti seznam položajev vodil
1168 v trenutnih merskih enotah dokumenta - oglejte si konstante UNIT_<vrsta>.
1169
1170 Primer: setHGuides(getHGuides() + [200.0, 210.0] # doda nova vodila brez izgubljenih
1171 setHGuides([90,250]) # v celoti zamenja trenutna vodila
1172 </translation>
1173 </message>
1174 <message>
1175 <source>getVGuides()
1176
1177 See getHGuides.
1178 </source>
1179 <translation>getVGuides()
1180
1181 Glejte getHGuides.
1182 </translation>
1183 </message>
1184 <message>
1185 <source>setVGuides()
1186
1187 See setHGuides.
1188 </source>
1189 <translation>setVGuides()
1190
1191 Glejte setHGuides.
1192 </translation>
1193 </message>
1194 <message>
1195 <source>getPageSize() -> tuple
1196
1197 Returns a tuple with page dimensions measured in the document's current units.
1198 See UNIT_<type> constants and getPageMargins()
1199 </source>
1200 <translation type="unfinished"></translation>
1201 </message>
1202 <message>
1203 <source>getPageItems() -> list
1204
1205 Returns a list of tuples with items on the current page. The tuple is:
1206 (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
1207 means that object named 'Text1' is a text frame (type 4) and is the first at
1208 the page...
1209 </source>
1210 <translation type="unfinished"></translation>
1211 </message>
1212 <message>
1213 <source>setFillColor("color", ["name"])
1214
1215 Sets the fill color of the object "name" to the color "color". "color"
1216 is the name of one of the defined colors. If "name" is not given the
1217 currently selected item is used.
1218 </source>
1219 <translation>setFillColor("barva", ["ime"])
1220
1221 Nastavi barvo polnila predmeta "ime" na barvo "barva". "barva"
1222 je ime ene od določenih barv. Če "ime" ni podano,
1223 je uporabljen trenutno izbran element.
1224 </translation>
1225 </message>
1226 <message>
1227 <source>setLineColor("color", ["name"])
1228
1229 Sets the line color of the object "name" to the color "color". If "name"
1230 is not given the currently selected item is used.
1231 </source>
1232 <translation>setLineColor("barva", ["ime"])
1233
1234 Nastavi barvo črt predmeta "ime" na barvo "barva". Če "ime"
1235 ni podan, je uporabljen trenutno izbran element.
1236 </translation>
1237 </message>
1238 <message>
1239 <source>setLineWidth(width, ["name"])
1240
1241 Sets line width of the object "name" to "width". "width" must be in the
1242 range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not
1243 given the currently selected item is used.
1244
1245 May raise ValueError if the line width is out of bounds.
1246 </source>
1247 <translation type="unfinished"></translation>
1248 </message>
1249 <message>
1250 <source>setLineShade(shade, ["name"])
1251
1252 Sets the shading of the line color of the object "name" to "shade".
1253 "shade" must be an integer value in the range from 0 (lightest) to 100
1254 (full color intensity). If "name" is not given the currently selected item
1255 is used.
1256
1257 May raise ValueError if the line shade is out of bounds.
1258 </source>
1259 <translation type="unfinished"></translation>
1260 </message>
1261 <message>
1262 <source>setLineJoin(join, ["name"])
1263
1264 Sets the line join style of the object "name" to the style "join".
1265 If "name" is not given the currently selected item is used. There are
1266 predefined constants for join - JOIN_<type>.
1267 </source>
1268 <translation type="unfinished"></translation>
1269 </message>
1270 <message>
1271 <source>setLineEnd(endtype, ["name"])
1272
1273 Sets the line cap style of the object "name" to the style "cap".
1274 If "name" is not given the currently selected item is used. There are
1275 predefined constants for "cap" - CAP_<type>.
1276 </source>
1277 <translation type="unfinished"></translation>
1278 </message>
1279 <message>
1280 <source>setLineStyle(style, ["name"])
1281
1282 Sets the line style of the object "name" to the style "style". If "name"
1283 is not given the currently selected item is used. There are predefined
1284 constants for "style" - LINE_<style>.
1285 </source>
1286 <translation type="unfinished"></translation>
1287 </message>
1288 <message>
1289 <source>setFillShade(shade, ["name"])
1290
1291 Sets the shading of the fill color of the object "name" to "shade".
1292 "shade" must be an integer value in the range from 0 (lightest) to 100
1293 (full Color intensity). If "name" is not given the currently selected
1294 Item is used.
1295
1296 May raise ValueError if the fill shade is out of bounds.
1297 </source>
1298 <translation type="unfinished"></translation>
1299 </message>
1300 <message>
1301 <source>setCornerRadius(radius, ["name"])
1302
1303 Sets the corner radius of the object "name". The radius is expressed
1304 in points. If "name" is not given the currently selected item is used.
1305
1306 May raise ValueError if the corner radius is negative.
1307 </source>
1308 <translation type="unfinished"></translation>
1309 </message>
1310 <message>
1311 <source>setMultiLine("namedStyle", ["name"])
1312
1313 Sets the line style of the object "name" to the named style "namedStyle".
1314 If "name" is not given the currently selected item is used.
1315
1316 May raise NotFoundError if the line style doesn't exist.
1317 </source>
1318 <translation type="unfinished"></translation>
1319 </message>
1320 <message>
1321 <source>getFont(["name"]) -> string
1322
1323 Returns the font name for the text frame "name". If this text frame
1324 has some text selected the value assigned to the first character
1325 of the selection is returned. If "name" is not given the currently
1326 selected item is used.
1327 </source>
1328 <translation type="unfinished"></translation>
1329 </message>
1330 <message>
1331 <source>getTextLength(["name"]) -> integer
1332
1333 Returns the length of the text in the text frame "name".
1334 If "name" is not given the currently selected item is used.
1335 </source>
1336 <translation type="unfinished"></translation>
1337 </message>
1338 <message>
1339 <source>getText(["name"]) -> string
1340
1341 Returns the text of the text frame "name". If this text frame has some text
1342 selected, the selected text is returned. All text in the frame, not just
1343 currently visible text, is returned. If "name" is not given the currently
1344 selected item is used.
1345 </source>
1346 <translation type="unfinished"></translation>
1347 </message>
1348 <message>
1349 <source>getAllText(["name"]) -> string
1350
1351 Returns the text of the text frame "name" and of all text frames which are
1352 linked with this frame. If this textframe has some text selected, the selected
1353 text is returned. If "name" is not given the currently selected item is
1354 used.
1355 </source>
1356 <translation type="unfinished"></translation>
1357 </message>
1358 <message>
1359 <source>getLineSpacing(["name"]) -> float
1360
1361 Returns the line spacing ("leading") of the text frame "name" expressed in
1362 points. If "name" is not given the currently selected item is used.
1363 </source>
1364 <translation type="unfinished"></translation>
1365 </message>
1366 <message>
1367 <source>getColumnGap(["name"]) -> float
1368
1369 Returns the column gap size of the text frame "name" expressed in points. If
1370 "name" is not given the currently selected item is used.
1371 </source>
1372 <translation type="unfinished"></translation>
1373 </message>
1374 <message>
1375 <source>getColumns(["name"]) -> integer
1376
1377 Gets the number of columns of the text frame "name". If "name" is not
1378 given the currently selected item is used.
1379 </source>
1380 <translation type="unfinished"></translation>
1381 </message>
1382 <message>
1383 <source>setText("text", ["name"])
1384
1385 Sets the text of the text frame "name" to the text of the string "text".
1386 Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
1387 for more details. If "name" is not given the currently selected item is
1388 used.
1389 </source>
1390 <translation type="unfinished"></translation>
1391 </message>
1392 <message>
1393 <source>setFont("font", ["name"])
1394
1395 Sets the font of the text frame "name" to "font". If there is some text
1396 selected only the selected text is changed. If "name" is not given the
1397 currently selected item is used.
1398
1399 May throw ValueError if the font cannot be found.
1400 </source>
1401 <translation type="unfinished"></translation>
1402 </message>
1403 <message>
1404 <source>setFontSize(size, ["name"])
1405
1406 Sets the font size of the text frame "name" to "size". "size" is treated
1407 as a value in points. If there is some text selected only the selected text is
1408 changed. "size" must be in the range 1 to 512. If "name" is not given the
1409 currently selected item is used.
1410
1411 May throw ValueError for a font size that's out of bounds.
1412 </source>
1413 <translation type="unfinished"></translation>
1414 </message>
1415 <message>
1416 <source>setLineSpacing(size, ["name"])
1417
1418 Sets the line spacing ("leading") of the text frame "name" to "size".
1419 "size" is a value in points. If "name" is not given the currently selected
1420 item is used.
1421
1422 May throw ValueError if the line spacing is out of bounds.
1423 </source>
1424 <translation type="unfinished"></translation>
1425 </message>
1426 <message>
1427 <source>setColumnGap(size, ["name"])
1428
1429 Sets the column gap of the text frame "name" to the value "size". If
1430 "name" is not given the currently selected item is used.
1431
1432 May throw ValueError if the column gap is out of bounds (must be positive).
1433 </source>
1434 <translation type="unfinished"></translation>
1435 </message>
1436 <message>
1437 <source>setColumns(nr, ["name"])
1438
1439 Sets the number of columns of the text frame "name" to the integer "nr".
1440 If "name" is not given the currently selected item is used.
1441
1442 May throw ValueError if number of columns is not at least one.
1443 </source>
1444 <translation type="unfinished"></translation>
1445 </message>
1446 <message>
1447 <source>setTextAlignment(align, ["name"])
1448
1449 Sets the text alignment of the text frame "name" to the specified alignment.
1450 If "name" is not given the currently selected item is used. "align" should
1451 be one of the ALIGN_ constants defined in this module - see dir(scribus).
1452
1453 May throw ValueError for an invalid alignment constant.
1454 </source>
1455 <translation type="unfinished"></translation>
1456 </message>
1457 <message>
1458 <source>deleteText(["name"])
1459
1460 Deletes any text in the text frame "name". If there is some text selected,
1461 only the selected text will be deleted. If "name" is not given the currently
1462 selected item is used.
1463 </source>
1464 <translation type="unfinished"></translation>
1465 </message>
1466 <message>
1467 <source>setTextColor("color", ["name"])
1468
1469 Sets the text color of the text frame "name" to the color "color". If there
1470 is some text selected only the selected text is changed. If "name" is not
1471 given the currently selected item is used.
1472 </source>
1473 <translation type="unfinished"></translation>
1474 </message>
1475 <message>
1476 <source>setTextStroke("color", ["name"])
1477
1478 Set "color" of the text stroke. If "name" is not given the currently
1479 selected item is used.
1480 </source>
1481 <translation type="unfinished"></translation>
1482 </message>
1483 <message>
1484 <source>setTextShade(shade, ["name"])
1485
1486 Sets the shading of the text color of the object "name" to "shade". If
1487 there is some text selected only the selected text is changed. "shade" must
1488 be an integer value in the range from 0 (lightest) to 100 (full color
1489 intensity). If "name" is not given the currently selected item is
1490 used.
1491 </source>
1492 <translation type="unfinished"></translation>
1493 </message>
1494 <message>
1495 <source>linkTextFrames("fromname", "toname")
1496
1497 Link two text frames. The frame named "fromname" is linked to the
1498 frame named "toname". The target frame must be an empty text frame
1499 and must not link to or be linked from any other frames already.
1500
1501 May throw ScribusException if linking rules are violated.
1502 </source>
1503 <translation type="unfinished"></translation>
1504 </message>
1505 <message>
1506 <source>unlinkTextFrames("name")
1507
1508 Remove the specified (named) object from the text frame flow/linkage. If the
1509 frame was in the middle of a chain, the previous and next frames will be
1510 connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
1511
1512 May throw ScribusException if linking rules are violated.
1513 </source>
1514 <translation type="unfinished"></translation>
1515 </message>
1516 <message>
1517 <source>traceText(["name"])
1518
1519 Convert the text frame "name" to outlines. If "name" is not given the
1520 currently selected item is used.</source>
1521 <translation type="unfinished"></translation>
1522 </message>
1523 <message>
1524 <source>progressReset()
1525
1526 Cleans up the Scribus progress bar previous settings. It is called before the
1527 new progress bar use. See progressSet.
1528 </source>
1529 <translation type="unfinished"></translation>
1530 </message>
1531 <message>
1532 <source>progressTotal(max)
1533
1534 Sets the progress bar's maximum steps value to the specified number.
1535 See progressSet.
1536 </source>
1537 <translation type="unfinished"></translation>
1538 </message>
1539 <message>
1540 <source>progressSet(nr)
1541
1542 Set the progress bar position to "nr", a value relative to the previously set
1543 progressTotal. The progress bar uses the concept of steps; you give it the
1544 total number of steps and the number of steps completed so far and it will
1545 display the percentage of steps that have been completed. You can specify the
1546 total number of steps with progressTotal(). The current number of steps is set
1547 with progressSet(). The progress bar can be rewound to the beginning with
1548 progressReset(). [based on info taken from Trolltech's Qt docs]
1549 </source>
1550 <translation type="unfinished"></translation>
1551 </message>
1552 <message>
1553 <source>setCursor()
1554
1555 [UNSUPPORTED!] This might break things, so steer clear for now.
1556 </source>
1557 <translation type="unfinished"></translation>
1558 </message>
1559 <message>
1560 <source>docChanged(bool)
1561
1562 Enable/disable save icon in the Scribus icon bar and the Save menu item. It's
1563 useful to call this procedure when you're changing the document, because Scribus
1564 won't automatically notice when you change the document using a script.
1565 </source>
1566 <translation type="unfinished"></translation>
1567 </message>
1568 <message>
1569 <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
1570
1571 Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
1572 If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
1573 Both `scaletoframe' and `proportional' are boolean.
1574
1575 May raise WrongFrameTypeError.
1576 </source>
1577 <translation type="unfinished"></translation>
1578 </message>
1579 <message>
1580 <source>isLayerPrintable("layer") -> bool
1581
1582 Returns whether the layer "layer" is visible or not, a value of True means
1583 that the layer "layer" is visible, a value of False means that the layer
1584 "layer" is invisible.
1585
1586 May raise NotFoundError if the layer can't be found.
1587 May raise ValueError if the layer name isn't acceptable.
1588 </source>
1589 <translation type="unfinished"></translation>
1590 </message>
1591 <message>
1592 <source>isLayerPrintable("layer") -> bool
1593
1594 Returns whether the layer "layer" is printable or not, a value of True means
1595 that the layer "layer" can be printed, a value of False means that printing
1596 the layer "layer" is disabled.
1597
1598 May raise NotFoundError if the layer can't be found.
1599 May raise ValueError if the layer name isn't acceptable.
1600 </source>
1601 <translation type="unfinished"></translation>
1602 </message>