Subversion Repositories Scribus

Rev

Rev 3363 | Rev 4141 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
769 cbradney 1
<!DOCTYPE TS><TS>
2
<context>
1135 cbradney 3
    <name></name>
4
    <message>
5
        <source>getFontSize([&quot;name&quot;]) -&gt; float
6
 
7
Returns the font size in points for the text frame &quot;name&quot;. If this text
8
frame has some text selected the value assigned to the first character of
9
the selection is returned.
10
If &quot;name&quot; is not given the currently selected item is used.
11
</source>
12
        <translation type="unfinished"></translation>
13
    </message>
14
    <message>
15
        <source>getColorNames() -&gt; list
16
 
17
Returns a list containing the names of all defined colors in the document.
18
If no document is open, returns a list of the default document colors.
19
</source>
20
        <translation type="unfinished"></translation>
21
    </message>
22
    <message>
23
        <source>newDocDialog() -&gt; bool
24
 
25
Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
26
accepts the settings. Does not create a document if the user presses cancel.
27
Returns true if a new document was created.
28
</source>
29
        <translation type="unfinished"></translation>
30
    </message>
31
    <message>
32
        <source>getFillColor([&quot;name&quot;]) -&gt; string
33
 
34
Returns the name of the fill color of the object &quot;name&quot;.
35
If &quot;name&quot; is not given the currently selected item is used.
36
</source>
37
        <translation type="unfinished"></translation>
38
    </message>
39
    <message>
40
        <source>moveObject(dx, dy [, &quot;name&quot;])
41
 
42
Moves the object &quot;name&quot; by dx and dy relative to its current position. The
43
distances are expressed in the current measurement unit of the document (see
44
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
45
If the object &quot;name&quot; belongs to a group, the whole group is moved.
46
</source>
47
        <translation type="unfinished"></translation>
48
    </message>
49
    <message>
50
        <source>setRedraw(bool)
51
 
52
Disables page redraw when bool = False, otherwise redrawing is enabled.
53
This change will persist even after the script exits, so make sure to call
54
setRedraw(True) in a finally: clause at the top level of your script.
55
</source>
56
        <translation type="unfinished"></translation>
57
    </message>
58
    <message>
59
        <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string
60
 
61
Creates a new rectangle on the current page and returns its name. The
62
coordinates are given in the current measurement units of the document
63
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
64
because you need this name to reference that object in future. If &quot;name&quot;
65
is not given Scribus will create one for you.
66
 
67
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
68
</source>
69
        <translation type="unfinished"></translation>
70
    </message>
71
    <message>
72
        <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
73
 
74
Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
75
the same as for setFillColor() and setFillShade(). See the constants for
76
available types (FILL_&lt;type&gt;).
77
</source>
78
        <translation type="unfinished"></translation>
79
    </message>
80
    <message>
81
        <source>messagebarText(&quot;string&quot;)
82
 
83
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
84
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
85
</source>
86
        <translation type="unfinished"></translation>
87
    </message>
88
    <message>
3064 cbradney 89
        <source>newPage(where [,&quot;masterpage&quot;])
90
 
91
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
92
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
93
counted from 1 upwards, no matter what the displayed first page number of your
94
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
95
master page for the new page.
96
 
97
May raise IndexError if the page number is out of range
98
</source>
99
        <translation type="unfinished"></translation>
100
    </message>
101
    <message>
102
        <source>importSVG(&quot;string&quot;)
103
 
104
The &quot;string&quot; must be a valid filename for a SVG image. The text
105
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
106
</source>
107
        <translation type="unfinished"></translation>
108
    </message>
3824 cbradney 109
    <message>
110
        <source>newDocument(size, margins, orientation, firstPageNumber,
111
                        unit, pagesType, firstPageOrder) -&gt; bool
112
 
113
Creates a new document and returns true if successful. The parameters have the
114
following meaning:
115
 
116
size = A tuple (width, height) describing the size of the document. You can
117
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
118
 
119
margins = A tuple (left, right, top, bottom) describing the document
120
margins
121
 
122
orientation = the page orientation - constants PORTRAIT, LANDSCAPE
123
 
124
firstPageNumer = is the number of the first page in the document used for
125
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
126
numbers if you&apos;re creating a document in several parts.
127
 
128
unit: this value sets the measurement units used by the document. Use a
129
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
130
UNIT_PICAS, UNIT_POINTS.
131
 
132
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
133
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
134
PAGE_4 is 4-fold.
135
 
136
firstPageOrder = What is position of first page in the document.
137
Indexed from 0 (0 = first).
138
 
139
The values for width, height and the margins are expressed in the given unit
140
for the document. PAPER_* constants are expressed in points. If your document
141
is not in points, make sure to account for this.
142
 
143
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
144
PAGE_4, 3)
145
 
146
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
147
</source>
148
        <translation type="unfinished"></translation>
149
    </message>
1135 cbradney 150
</context>
151
<context>
152
    <name>@default</name>
153
    <message>
154
        <source>getFont([&quot;name&quot;]) -&gt; string
155
 
156
Returns the font name for the text frame &quot;name&quot;. If this text frame
157
has some text selected the value assigned to the first character
158
of the selection is returned. If &quot;name&quot; is not given the currently
159
selected item is used.
160
</source>
161
        <translation type="unfinished"></translation>
162
    </message>
163
    <message>
164
        <source>getTextLength([&quot;name&quot;]) -&gt; integer
165
 
166
Returns the length of the text in the text frame &quot;name&quot;.
167
If &quot;name&quot; is not given the currently selected item is used.
168
</source>
169
        <translation type="unfinished"></translation>
170
    </message>
171
    <message>
172
        <source>getText([&quot;name&quot;]) -&gt; string
173
 
174
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
175
selected, the selected text is returned. All text in the frame, not just
176
currently visible text, is returned. If &quot;name&quot; is not given the currently
177
selected item is used.
178
</source>
179
        <translation type="unfinished"></translation>
180
    </message>
181
    <message>
182
        <source>getAllText([&quot;name&quot;]) -&gt; string
183
 
184
Returns the text of the text frame &quot;name&quot; and of all text frames which are
185
linked with this frame. If this textframe has some text selected, the selected
186
text is returned. If &quot;name&quot; is not given the currently selected item is
187
used.
188
</source>
189
        <translation type="unfinished"></translation>
190
    </message>
191
    <message>
192
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float
193
 
194
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
195
points. If &quot;name&quot; is not given the currently selected item is used.
196
</source>
197
        <translation type="unfinished"></translation>
198
    </message>
199
    <message>
200
        <source>getColumnGap([&quot;name&quot;]) -&gt; float
201
 
202
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
203
&quot;name&quot; is not given the currently selected item is used.
204
</source>
205
        <translation type="unfinished"></translation>
206
    </message>
207
    <message>
208
        <source>getColumns([&quot;name&quot;]) -&gt; integer
209
 
210
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
211
given the currently selected item is used.
212
</source>
213
        <translation type="unfinished"></translation>
214
    </message>
215
    <message>
216
        <source>setText(&quot;text&quot;, [&quot;name&quot;])
217
 
218
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
219
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
220
for more details. If &quot;name&quot; is not given the currently selected item is
221
used.
222
</source>
223
        <translation type="unfinished"></translation>
224
    </message>
225
    <message>
226
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])
227
 
228
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
229
selected only the selected text is changed.  If &quot;name&quot; is not given the
230
currently selected item is used.
231
 
232
May throw ValueError if the font cannot be found.
233
</source>
234
        <translation type="unfinished"></translation>
235
    </message>
236
    <message>
237
        <source>setFontSize(size, [&quot;name&quot;])
238
 
239
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
240
as a value in points. If there is some text selected only the selected text is
241
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
242
currently selected item is used.
243
 
244
May throw ValueError for a font size that&apos;s out of bounds.
245
</source>
246
        <translation type="unfinished"></translation>
247
    </message>
248
    <message>
249
        <source>setLineSpacing(size, [&quot;name&quot;])
250
 
251
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
252
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
253
item is used.
254
 
255
May throw ValueError if the line spacing is out of bounds.
256
</source>
257
        <translation type="unfinished"></translation>
258
    </message>
259
    <message>
260
        <source>setColumnGap(size, [&quot;name&quot;])
261
 
262
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
263
&quot;name&quot; is not given the currently selected item is used.
264
 
265
May throw ValueError if the column gap is out of bounds (must be positive).
266
</source>
267
        <translation type="unfinished"></translation>
268
    </message>
269
    <message>
270
        <source>setColumns(nr, [&quot;name&quot;])
271
 
272
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
273
If &quot;name&quot; is not given the currently selected item is used.
274
 
275
May throw ValueError if number of columns is not at least one.
276
</source>
277
        <translation type="unfinished"></translation>
278
    </message>
279
    <message>
280
        <source>setTextAlignment(align, [&quot;name&quot;])
281
 
282
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
283
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
284
be one of the ALIGN_ constants defined in this module - see dir(scribus).
285
 
286
May throw ValueError for an invalid alignment constant.
287
</source>
288
        <translation type="unfinished"></translation>
289
    </message>
290
    <message>
291
        <source>deleteText([&quot;name&quot;])
292
 
293
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
294
only the selected text will be deleted. If &quot;name&quot; is not given the currently
295
selected item is used.
296
</source>
297
        <translation type="unfinished"></translation>
298
    </message>
299
    <message>
300
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
301
 
302
Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
303
is some text selected only the selected text is changed. If &quot;name&quot; is not
304
given the currently selected item is used.
305
</source>
306
        <translation type="unfinished"></translation>
307
    </message>
308
    <message>
309
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
310
 
311
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
312
selected item is used.
313
</source>
314
        <translation type="unfinished"></translation>
315
    </message>
316
    <message>
317
        <source>setTextShade(shade, [&quot;name&quot;])
318
 
319
Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
320
there is some text selected only the selected text is changed. &quot;shade&quot; must
321
be an integer value in the range from 0 (lightest) to 100 (full color
322
intensity). If &quot;name&quot; is not given the currently selected item is
323
used.
324
</source>
325
        <translation type="unfinished"></translation>
326
    </message>
327
    <message>
328
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
329
 
330
Link two text frames. The frame named &quot;fromname&quot; is linked to the
331
frame named &quot;toname&quot;. The target frame must be an empty text frame
332
and must not link to or be linked from any other frames already.
333
 
334
May throw ScribusException if linking rules are violated.
335
</source>
336
        <translation type="unfinished"></translation>
337
    </message>
338
    <message>
339
        <source>unlinkTextFrames(&quot;name&quot;)
340
 
341
Remove the specified (named) object from the text frame flow/linkage. If the
342
frame was in the middle of a chain, the previous and next frames will be
343
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
344
 
345
May throw ScribusException if linking rules are violated.
346
</source>
347
        <translation type="unfinished"></translation>
348
    </message>
349
    <message>
350
        <source>traceText([&quot;name&quot;])
351
 
352
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
353
currently selected item is used.</source>
354
        <translation type="unfinished"></translation>
355
    </message>
356
    <message>
357
        <source>getColor(&quot;name&quot;) -&gt; tuple
358
 
359
Returns a tuple (C, M, Y, K) containing the four color components of the
360
color &quot;name&quot; from the current document. If no document is open, returns
361
the value of the named color from the default document colors.
362
 
363
May raise NotFoundError if the named color wasn&apos;t found.
364
May raise ValueError if an invalid color name is specified.
365
</source>
366
        <translation type="unfinished"></translation>
367
    </message>
368
    <message>
369
        <source>changeColor(&quot;name&quot;, c, m, y, k)
370
 
371
Changes the color &quot;name&quot; to the specified CMYK value. The color value is
372
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
373
Color components should be in the range from 0 to 255.
374
 
375
May raise NotFoundError if the named color wasn&apos;t found.
376
May raise ValueError if an invalid color name is specified.
377
</source>
378
        <translation type="unfinished"></translation>
379
    </message>
380
    <message>
381
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
382
 
383
Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
384
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
385
&quot;None&quot; - transparent.
386
 
387
deleteColor works on the default document colors if there is no document open.
388
In that case, &quot;replace&quot;, if specified, has no effect.
389
 
390
May raise NotFoundError if a named color wasn&apos;t found.
391
May raise ValueError if an invalid color name is specified.
392
</source>
393
        <translation type="unfinished"></translation>
394
    </message>
395
    <message>
396
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
397
 
398
Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
399
 
400
May raise NotFoundError if a named color wasn&apos;t found.
401
May raise ValueError if an invalid color name is specified.
402
</source>
403
        <translation type="unfinished"></translation>
404
    </message>
405
    <message>
406
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
407
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
408
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
409
 
410
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
411
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
412
button, OK, is displayed. Only the caption and message arguments are required,
413
though setting an icon and appropriate button(s) is strongly
414
recommended. The message text may contain simple HTML-like markup.
415
 
416
Returns the number of the button the user pressed. Button numbers start
417
at 1.
418
 
419
For the icon and the button parameters there are predefined constants available
420
with the same names as in the Qt Documentation. These are the BUTTON_* and
421
ICON_* constants defined in the module. There are also two extra constants that
422
can be binary-ORed with button constants:
423
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
424
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
425
 
426
Usage examples:
427
result = messageBox(&apos;Script failed&apos;,
428
                    &apos;This script only works when you have a text frame selected.&apos;,
429
                    ICON_ERROR)
430
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
431
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
432
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
433
 
434
Defined button and icon constants:
435
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
436
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
437
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
438
</source>
439
        <translation type="unfinished"></translation>
440
    </message>
441
    <message>
442
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string
443
 
444
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
445
Parameters: window title, text in the window and optional &apos;default&apos; value.
446
 
447
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
448
</source>
449
        <translation type="unfinished"></translation>
450
    </message>
451
    <message>
452
        <source>closeDoc()
453
 
454
Closes the current document without prompting to save.
455
 
456
May throw NoDocOpenError if there is no document to close
457
</source>
458
        <translation type="unfinished"></translation>
459
    </message>
460
    <message>
461
        <source>haveDoc() -&gt; bool
462
 
463
Returns true if there is a document open.
464
</source>
465
        <translation type="unfinished"></translation>
466
    </message>
467
    <message>
468
        <source>openDoc(&quot;name&quot;)
469
 
470
Opens the document &quot;name&quot;.
471
 
472
May raise ScribusError if the document could not be opened.
473
</source>
474
        <translation type="unfinished"></translation>
475
    </message>
476
    <message>
477
        <source>saveDoc()
478
 
479
Saves the current document with its current name, returns true if successful.
480
If the document has not already been saved, this may bring up an interactive
481
save file dialog.
482
 
483
If the save fails, there is currently no way to tell.
484
</source>
485
        <translation type="unfinished"></translation>
486
    </message>
487
    <message>
488
        <source>saveDocAs(&quot;name&quot;)
489
 
490
Saves the current document under the new name &quot;name&quot; (which may be a full or
491
relative path).
492
 
493
May raise ScribusError if the save fails.
494
</source>
495
        <translation type="unfinished"></translation>
496
    </message>
497
    <message>
498
        <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
499
 
500
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
501
strings.
502
</source>
503
        <translation type="unfinished"></translation>
504
    </message>
505
    <message>
506
        <source>setMargins(lr, rr, tr, br)
507
 
508
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
509
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
510
constants.
511
</source>
512
        <translation type="unfinished"></translation>
513
    </message>
514
    <message>
515
        <source>setUnit(type)
516
 
517
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
518
defined as constants UNIT_&lt;type&gt;.
519
 
520
May raise ValueError if an invalid unit is passed.
521
</source>
522
        <translation type="unfinished"></translation>
523
    </message>
524
    <message>
525
        <source>getUnit() -&gt; integer (Scribus unit constant)
526
 
527
Returns the measurement units of the document. The returned value will be one
528
of the UNIT_* constants:
529
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
530
</source>
531
        <translation type="unfinished"></translation>
532
    </message>
533
    <message>
534
        <source>loadStylesFromFile(&quot;filename&quot;)
535
 
536
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
537
current document.
538
</source>
539
        <translation type="unfinished"></translation>
540
    </message>
541
    <message>
542
        <source>setDocType(facingPages, firstPageLeft)
543
 
544
Sets the document type. To get facing pages set the first parameter to
545
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
546
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
547
a right page use FIRSTPAGERIGHT.
548
</source>
549
        <translation type="unfinished"></translation>
550
    </message>
551
    <message>
552
        <source>getLineColor([&quot;name&quot;]) -&gt; string
553
 
554
Returns the name of the line color of the object &quot;name&quot;.
555
If &quot;name&quot; is not given the currently selected item is used.
556
</source>
557
        <translation type="unfinished"></translation>
558
    </message>
559
    <message>
560
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer
561
 
562
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
563
is not given the currently selected Item is used.
564
</source>
565
        <translation type="unfinished"></translation>
566
    </message>
567
    <message>
568
        <source>getLineShade([&quot;name&quot;]) -&gt; integer
569
 
570
Returns the shading value of the line color of the object &quot;name&quot;.
571
If &quot;name&quot; is not given the currently selected item is used.
572
</source>
573
        <translation type="unfinished"></translation>
574
    </message>
575
    <message>
576
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
577
 
578
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
579
the currently selected item is used.  The join types are:
580
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
581
</source>
582
        <translation type="unfinished"></translation>
583
    </message>
584
    <message>
585
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
586
 
587
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
588
currently selected item is used. The cap types are:
589
CAP_FLAT, CAP_ROUND, CAP_SQUARE
590
</source>
591
        <translation type="unfinished"></translation>
592
    </message>
593
    <message>
594
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
595
 
596
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
597
currently selected item is used. Line style constants are:
598
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
599
</source>
600
        <translation type="unfinished"></translation>
601
    </message>
602
    <message>
603
        <source>getFillShade([&quot;name&quot;]) -&gt; integer
604
 
605
Returns the shading value of the fill color of the object &quot;name&quot;.
606
If &quot;name&quot; is not given the currently selected item is used.
607
</source>
608
        <translation type="unfinished"></translation>
609
    </message>
610
    <message>
611
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
612
 
613
Returns a (x, y) tuple containing the scaling values of the image frame
614
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
615
</source>
616
        <translation type="unfinished"></translation>
617
    </message>
618
    <message>
619
        <source>getImageName([&quot;name&quot;]) -&gt; string
620
 
621
Returns the filename for the image in the image frame. If &quot;name&quot; is not
622
given the currently selected item is used.
623
</source>
624
        <translation type="unfinished"></translation>
625
    </message>
626
    <message>
627
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)
628
 
629
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
630
If &quot;name&quot; is not given the currently selected item is used. The size is
631
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
632
for reference.
633
</source>
634
        <translation type="unfinished"></translation>
635
    </message>
636
    <message>
637
        <source>getRotation([&quot;name&quot;]) -&gt; integer
638
 
639
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
640
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
641
is used.
642
</source>
643
        <translation type="unfinished"></translation>
644
    </message>
645
    <message>
646
        <source>getAllObjects() -&gt; list
647
 
648
Returns a list containing the names of all objects on the current page.
649
</source>
650
        <translation type="unfinished"></translation>
651
    </message>
652
    <message>
653
        <source>moveObjectAbs(x, y [, &quot;name&quot;])
654
 
655
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
656
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
657
is not given the currently selected item is used.  If the object &quot;name&quot;
658
belongs to a group, the whole group is moved.
659
</source>
660
        <translation type="unfinished"></translation>
661
    </message>
662
    <message>
663
        <source>rotateObject(rot [, &quot;name&quot;])
664
 
665
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
666
rotated by the vertex that is currently selected as the rotation point - by
667
default, the top left vertext at zero rotation. Positive values mean counter
668
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
669
given the currently selected item is used.
670
</source>
671
        <translation type="unfinished"></translation>
672
    </message>
673
    <message>
674
        <source>sizeObject(width, height [, &quot;name&quot;])
675
 
676
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
677
is not given the currently selected item is used.
678
</source>
679
        <translation type="unfinished"></translation>
680
    </message>
681
    <message>
682
        <source>getSelectedObject([nr]) -&gt; string
683
 
684
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
685
of the selected object, e.g. 0 means the first selected object, 1 means the
686
second selected Object and so on.
687
</source>
688
        <translation type="unfinished"></translation>
689
    </message>
690
    <message>
691
        <source>selectionCount() -&gt; integer
692
 
693
Returns the number of selected objects.
694
</source>
695
        <translation type="unfinished"></translation>
696
    </message>
697
    <message>
698
        <source>selectObject(&quot;name&quot;)
699
 
700
Selects the object with the given &quot;name&quot;.
701
</source>
702
        <translation type="unfinished"></translation>
703
    </message>
704
    <message>
705
        <source>deselectAll()
706
 
707
Deselects all objects in the whole document.
708
</source>
709
        <translation type="unfinished"></translation>
710
    </message>
711
    <message>
712
        <source>groupObjects(list)
713
 
714
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
715
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
716
items are used.
717
</source>
718
        <translation type="unfinished"></translation>
719
    </message>
720
    <message>
721
        <source>unGroupObjects(&quot;name&quot;)
722
 
723
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
724
        <translation type="unfinished"></translation>
725
    </message>
726
    <message>
727
        <source>scaleGroup(factor [,&quot;name&quot;])
728
 
729
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
730
the group, values smaller than 1 make the group smaller e.g a value of 0.5
731
scales the group to 50 % of its original size, a value of 1.5 scales the group
732
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
733
0. If &quot;name&quot; is not given the currently selected item is used.
734
 
735
May raise ValueError if an invalid scale factor is passed.
736
</source>
737
        <translation type="unfinished"></translation>
738
    </message>
739
    <message>
740
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
741
 
742
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
743
not given the currently selected item is used.
744
 
745
May raise WrongFrameTypeError if the target frame is not an image frame
746
</source>
747
        <translation type="unfinished"></translation>
748
    </message>
749
    <message>
750
        <source>scaleImage(x, y [, &quot;name&quot;])
751
 
752
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
753
If &quot;name&quot; is not given the currently selected item is used. A number of 1
754
means 100 %.
755
 
756
May raise WrongFrameTypeError if the target frame is not an image frame
757
</source>
758
        <translation type="unfinished"></translation>
759
    </message>
760
    <message>
761
        <source>lockObject([&quot;name&quot;]) -&gt; bool
762
 
763
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
764
If &quot;name&quot; is not given the currently selected item is used. Returns true
765
if locked.
766
</source>
767
        <translation type="unfinished"></translation>
768
    </message>
769
    <message>
770
        <source>isLocked([&quot;name&quot;]) -&gt; bool
771
 
772
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
773
currently selected item is used.
774
</source>
775
        <translation type="unfinished"></translation>
776
    </message>
777
    <message>
778
        <source>getFontNames() -&gt; list
779
 
780
Returns a list with the names of all available fonts.
781
</source>
782
        <translation type="unfinished"></translation>
783
    </message>
784
    <message>
785
        <source>getXFontNames() -&gt; list of tuples
786
 
787
Returns a larger font info. It&apos;s a list of the tuples with:
788
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
789
</source>
790
        <translation type="unfinished"></translation>
791
    </message>
792
    <message>
793
        <source>getLayers() -&gt; list
794
 
795
Returns a list with the names of all defined layers.
796
</source>
797
        <translation type="unfinished"></translation>
798
    </message>
799
    <message>
800
        <source>setActiveLayer(&quot;name&quot;)
801
 
802
Sets the active layer to the layer named &quot;name&quot;.
803
 
804
May raise NotFoundError if the layer can&apos;t be found.
805
May raise ValueError if the layer name isn&apos;t acceptable.
806
</source>
807
        <translation type="unfinished"></translation>
808
    </message>
809
    <message>
810
        <source>getActiveLayer() -&gt; string
811
 
812
Returns the name of the current active layer.
813
</source>
814
        <translation type="unfinished"></translation>
815
    </message>
816
    <message>
817
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
818
 
819
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
820
If &quot;name&quot; is not given the currently selected item is used.
821
 
822
May raise NotFoundError if the layer can&apos;t be found.
823
May raise ValueError if the layer name isn&apos;t acceptable.
824
</source>
825
        <translation type="unfinished"></translation>
826
    </message>
827
    <message>
828
        <source>setLayerVisible(&quot;layer&quot;, visible)
829
 
830
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
831
the layer is invisible.
832
 
833
May raise NotFoundError if the layer can&apos;t be found.
834
May raise ValueError if the layer name isn&apos;t acceptable.
835
</source>
836
        <translation type="unfinished"></translation>
837
    </message>
838
    <message>
839
        <source>setLayerPrintable(&quot;layer&quot;, printable)
840
 
841
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
842
false the layer won&apos;t be printed.
843
 
844
May raise NotFoundError if the layer can&apos;t be found.
845
May raise ValueError if the layer name isn&apos;t acceptable.
846
</source>
847
        <translation type="unfinished"></translation>
848
    </message>
849
    <message>
850
        <source>deleteLayer(&quot;layer&quot;)
851
 
852
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
853
exists or if it&apos;s the only layer in the document.
854
 
855
May raise NotFoundError if the layer can&apos;t be found.
856
May raise ValueError if the layer name isn&apos;t acceptable.
857
</source>
858
        <translation type="unfinished"></translation>
859
    </message>
860
    <message>
861
        <source>createLayer(layer)
862
 
863
Creates a new layer with the name &quot;name&quot;.
864
 
865
May raise ValueError if the layer name isn&apos;t acceptable.
866
</source>
867
        <translation type="unfinished"></translation>
868
    </message>
869
    <message>
870
        <source>getGuiLanguage() -&gt; string
871
 
872
Returns a string with the -lang value.
873
</source>
874
        <translation type="unfinished"></translation>
875
    </message>
876
    <message>
877
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
878
 
879
Creates a new ellipse on the current page and returns its name.
880
The coordinates are given in the current measurement units of the document
881
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
882
because you need this name for further referencing of that object. If &quot;name&quot;
883
is not given Scribus will create one for you.
884
 
885
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
886
</source>
887
        <translation type="unfinished"></translation>
888
    </message>
889
    <message>
890
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
891
 
892
Creates a new picture frame on the current page and returns its name. The
893
coordinates are given in the current measurement units of the document.
894
&quot;name&quot; should be a unique identifier for the object because you need this
895
name for further access to that object. If &quot;name&quot; is not given Scribus will
896
create one for you.
897
 
898
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
899
</source>
900
        <translation type="unfinished"></translation>
901
    </message>
902
    <message>
903
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
904
 
905
Creates a new text frame on the actual page and returns its name.
906
The coordinates are given in the actual measurement unit of the document (see
907
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
908
you need this name for further referencing of that object. If &quot;name&quot; is not
909
given Scribus will create one for you.
910
 
911
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
912
</source>
913
        <translation type="unfinished"></translation>
914
    </message>
915
    <message>
916
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
917
 
918
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
919
its name. The coordinates are given in the current measurement unit of the
920
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
921
object because you need this name for further access to that object. If
922
&quot;name&quot; is not given Scribus will create one for you.
923
 
924
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
925
</source>
926
        <translation type="unfinished"></translation>
927
    </message>
928
    <message>
929
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
930
 
931
Creates a new polyline and returns its name. The points for the polyline are
932
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
933
The coordinates are given in the current measurement units of the document (see
934
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
935
you need this name for further access to that object. If &quot;name&quot; is not given
936
Scribus will create one for you.
937
 
938
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
939
May raise ValueError if an insufficient number of points is passed or if
940
the number of values passed don&apos;t group into points without leftovers.
941
</source>
942
        <translation type="unfinished"></translation>
943
    </message>
944
    <message>
945
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
946
 
947
Creates a new polygon and returns its name. The points for the polygon are
948
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
949
At least three points are required. There is no need to repeat the first point
950
to close the polygon. The polygon is automatically closed by connecting the
951
first and the last point.  The coordinates are given in the current measurement
952
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
953
identifier for the object because you need this name for further access to that
954
object. If &quot;name&quot; is not given Scribus will create one for you.
955
 
956
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
957
May raise ValueError if an insufficient number of points is passed or if
958
the number of values passed don&apos;t group into points without leftovers.
959
</source>
960
        <translation type="unfinished"></translation>
961
    </message>
962
    <message>
963
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
964
 
965
Creates a new bezier curve and returns its name. The points for the bezier
966
curve are stored in the list &quot;list&quot; in the following order:
967
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
968
In the points list, x and y mean the x and y coordinates of the point and kx
969
and ky meaning the control point for the curve.  The coordinates are given in
970
the current measurement units of the document (see UNIT constants). &quot;name&quot;
971
should be a unique identifier for the object because you need this name for
972
further access to that object. If &quot;name&quot; is not given Scribus will create one
973
for you.
974
 
975
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
976
May raise ValueError if an insufficient number of points is passed or if
977
the number of values passed don&apos;t group into points without leftovers.
978
</source>
979
        <translation type="unfinished"></translation>
980
    </message>
981
    <message>
982
        <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
983
 
984
Creates a new pathText by merging the two objects &quot;textbox&quot; and
985
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
986
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
987
unique identifier for the object because you need this name for further access
988
to that object. If &quot;name&quot; is not given Scribus will create one for you.
989
 
990
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
991
May raise NotFoundError if one or both of the named base object don&apos;t exist.
992
</source>
993
        <translation type="unfinished"></translation>
994
    </message>
995
    <message>
996
        <source>deleteObject([&quot;name&quot;])
997
 
998
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
999
selected item is deleted.
1000
</source>
1001
        <translation type="unfinished"></translation>
1002
    </message>
1003
    <message>
1004
        <source>textFlowsAroundFrame(&quot;name&quot; [, state])
1005
 
1006
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1007
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1008
is not passed, text flow is toggled.
1009
</source>
1010
        <translation type="unfinished"></translation>
1011
    </message>
1012
    <message>
1013
        <source>objectExists([&quot;name&quot;]) -&gt; bool
1014
 
1015
Test if an object with specified name really exists in the document.
1016
The optional parameter is the object name. When no object name is given,
1017
returns True if there is something selected.
1018
</source>
1019
        <translation type="unfinished"></translation>
1020
    </message>
1021
    <message>
1022
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])
1023
 
1024
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1025
given, it&apos;s applied on the selected object.
1026
</source>
1027
        <translation type="unfinished"></translation>
1028
    </message>
1029
    <message>
1030
        <source>getAllStyles() -&gt; list
1031
 
1032
Return a list of the names of all paragraph styles in the current document.
1033
</source>
1034
        <translation type="unfinished"></translation>
1035
    </message>
1036
    <message>
1037
        <source>currentPage() -&gt; integer
1038
 
1039
Returns the number of the current working page. Page numbers are counted from 1
1040
upwards, no matter what the displayed first page number of your document is.
1041
</source>
1042
        <translation type="unfinished"></translation>
1043
    </message>
1044
    <message>
1045
        <source>redrawAll()
1046
 
1047
Redraws all pages.
1048
</source>
1049
        <translation type="unfinished"></translation>
1050
    </message>
1051
    <message>
1052
        <source>savePageAsEPS(&quot;name&quot;)
1053
 
1054
Saves the current page as an EPS to the file &quot;name&quot;.
1055
 
1056
May raise ScribusError if the save failed.
1057
</source>
1058
        <translation type="unfinished"></translation>
1059
    </message>
1060
    <message>
1061
        <source>deletePage(nr)
1062
 
1063
Deletes the given page. Does nothing if the document contains only one page.
1064
Page numbers are counted from 1 upwards, no matter what the displayed first
1065
page number is.
1066
 
1067
May raise IndexError if the page number is out of range
1068
</source>
1069
        <translation type="unfinished"></translation>
1070
    </message>
1071
    <message>
1072
        <source>gotoPage(nr)
1073
 
1074
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
1075
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
1076
just sets the page that script commands will operates on.
1077
 
1078
May raise IndexError if the page number is out of range.
1079
</source>
1080
        <translation type="unfinished"></translation>
1081
    </message>
1082
    <message>
1083
        <source>pageCount() -&gt; integer
1084
 
1085
Returns the number of pages in the document.
1086
</source>
1087
        <translation type="unfinished"></translation>
1088
    </message>
1089
    <message>
1090
        <source>getHGuides() -&gt; list
1091
 
1092
Returns a list containing positions of the horizontal guides. Values are in the
1093
document&apos;s current units - see UNIT_&lt;type&gt; constants.
1094
</source>
1095
        <translation type="unfinished"></translation>
1096
    </message>
1097
    <message>
1098
        <source>setHGuides(list)
1099
 
1100
Sets horizontal guides. Input parameter must be a list of guide positions
1101
measured in the current document units - see UNIT_&lt;type&gt; constants.
1102
 
1103
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
1104
         setHGuides([90,250]) # replace current guides entirely
1105
</source>
1106
        <translation type="unfinished"></translation>
1107
    </message>
1108
    <message>
1109
        <source>getVGuides()
1110
 
1111
See getHGuides.
1112
</source>
1113
        <translation type="unfinished"></translation>
1114
    </message>
1115
    <message>
1116
        <source>setVGuides()
1117
 
1118
See setHGuides.
1119
</source>
1120
        <translation type="unfinished"></translation>
1121
    </message>
1122
    <message>
1123
        <source>getPageSize() -&gt; tuple
1124
 
1125
Returns a tuple with page dimensions measured in the document&apos;s current units.
1126
See UNIT_&lt;type&gt; constants and getPageMargins()
1127
</source>
1128
        <translation type="unfinished"></translation>
1129
    </message>
1130
    <message>
1131
        <source>getPageItems() -&gt; list
1132
 
1133
Returns a list of tuples with items on the current page. The tuple is:
1134
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
1135
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
1136
the page...
1137
</source>
1138
        <translation type="unfinished"></translation>
1139
    </message>
1140
    <message>
1141
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
1142
 
1143
Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
1144
is the name of one of the defined colors. If &quot;name&quot; is not given the
1145
currently selected item is used.
1146
</source>
1147
        <translation type="unfinished"></translation>
1148
    </message>
1149
    <message>
1150
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
1151
 
1152
Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
1153
is not given the currently selected item is used.
1154
</source>
1155
        <translation type="unfinished"></translation>
1156
    </message>
1157
    <message>
1158
        <source>setLineWidth(width, [&quot;name&quot;])
1159
 
1160
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
1161
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1162
given the currently selected item is used.
1163
 
1164
May raise ValueError if the line width is out of bounds.
1165
</source>
1166
        <translation type="unfinished"></translation>
1167
    </message>
1168
    <message>
1169
        <source>setLineShade(shade, [&quot;name&quot;])
1170
 
1171
Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
1172
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1173
(full color intensity). If &quot;name&quot; is not given the currently selected item
1174
is used.
1175
 
1176
May raise ValueError if the line shade is out of bounds.
1177
</source>
1178
        <translation type="unfinished"></translation>
1179
    </message>
1180
    <message>
1181
        <source>setLineJoin(join, [&quot;name&quot;])
1182
 
1183
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
1184
If &quot;name&quot; is not given the currently selected item is used. There are
1185
predefined constants for join - JOIN_&lt;type&gt;.
1186
</source>
1187
        <translation type="unfinished"></translation>
1188
    </message>
1189
    <message>
1190
        <source>setLineEnd(endtype, [&quot;name&quot;])
1191
 
1192
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
1193
If &quot;name&quot; is not given the currently selected item is used. There are
1194
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
1195
</source>
1196
        <translation type="unfinished"></translation>
1197
    </message>
1198
    <message>
1199
        <source>setLineStyle(style, [&quot;name&quot;])
1200
 
1201
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
1202
is not given the currently selected item is used. There are predefined
1203
constants for &quot;style&quot; - LINE_&lt;style&gt;.
1204
</source>
1205
        <translation type="unfinished"></translation>
1206
    </message>
1207
    <message>
1208
        <source>setFillShade(shade, [&quot;name&quot;])
1209
 
1210
Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
1211
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1212
(full Color intensity). If &quot;name&quot; is not given the currently selected
1213
Item is used.
1214
 
1215
May raise ValueError if the fill shade is out of bounds.
1216
</source>
1217
        <translation type="unfinished"></translation>
1218
    </message>
1219
    <message>
1220
        <source>setCornerRadius(radius, [&quot;name&quot;])
1221
 
1222
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
1223
in points. If &quot;name&quot; is not given the currently selected item is used.
1224
 
1225
May raise ValueError if the corner radius is negative.
1226
</source>
1227
        <translation type="unfinished"></translation>
1228
    </message>
1229
    <message>
1230
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
1231
 
1232
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
1233
If &quot;name&quot; is not given the currently selected item is used.
1234
 
1235
May raise NotFoundError if the line style doesn&apos;t exist.
1236
</source>
1237
        <translation type="unfinished"></translation>
1238
    </message>
1239
    <message>
1240
        <source>progressReset()
1241
 
1242
Cleans up the Scribus progress bar previous settings. It is called before the
1243
new progress bar use. See progressSet.
1244
</source>
1245
        <translation type="unfinished"></translation>
1246
    </message>
1247
    <message>
1248
        <source>progressTotal(max)
1249
 
1250
Sets the progress bar&apos;s maximum steps value to the specified number.
1251
See progressSet.
1252
</source>
1253
        <translation type="unfinished"></translation>
1254
    </message>
1255
    <message>
1256
        <source>progressSet(nr)
1257
 
1258
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
1259
progressTotal. The progress bar uses the concept of steps; you give it the
1260
total number of steps and the number of steps completed so far and it will
1261
display the percentage of steps that have been completed. You can specify the
1262
total number of steps with progressTotal(). The current number of steps is set
1263
with progressSet(). The progress bar can be rewound to the beginning with
1264
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
1265
</source>
1266
        <translation type="unfinished"></translation>
1267
    </message>
1268
    <message>
1269
        <source>setCursor()
1270
 
1271
[UNSUPPORTED!] This might break things, so steer clear for now.
1272
</source>
1273
        <translation type="unfinished"></translation>
1274
    </message>
1275
    <message>
1276
        <source>docChanged(bool)
1277
 
1278
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
1279
useful to call this procedure when you&apos;re changing the document, because Scribus
1280
won&apos;t automatically notice when you change the document using a script.
1281
</source>
1282
        <translation type="unfinished"></translation>
1283
    </message>
1284
    <message>
1525 cbradney 1285
        <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
1286
 
1287
Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
1288
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
1289
Both `scaletoframe&apos; and `proportional&apos; are boolean.
1290
 
1291
May raise WrongFrameTypeError.
1292
</source>
1293
        <translation type="unfinished"></translation>
1294
    </message>
1295
    <message>
1296
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1297
 
1298
Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
1299
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1300
&quot;layer&quot; is invisible.
1301
 
1302
May raise NotFoundError if the layer can&apos;t be found.
1303
May raise ValueError if the layer name isn&apos;t acceptable.
1304
</source>
1305
        <translation type="unfinished"></translation>
1306
    </message>
1307
    <message>
1308
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1309
 
1310
Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
1311
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1312
the layer &quot;layer&quot; is disabled.
1313
 
1314
May raise NotFoundError if the layer can&apos;t be found.
1315
May raise ValueError if the layer name isn&apos;t acceptable.
1316
</source>
1317
        <translation type="unfinished"></translation>
1318
    </message>
1319
    <message>
1320
        <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple
1321
 
1322
Returns a tuple (R,G,B) containing the three color components of the
1323
color &quot;name&quot; from the current document, converted to the RGB color
1324
space. If no document is open, returns the value of the named color
1325
from the default document colors.
1326
 
1327
May raise NotFoundError if the named color wasn&apos;t found.
1328
May raise ValueError if an invalid color name is specified.
1329
</source>
1330
        <translation type="unfinished"></translation>
1331
    </message>
1332
    <message>
1135 cbradney 1333
        <source>defineColor(&quot;name&quot;, c, m, y, k)
1334
 
1335
Defines a new color &quot;name&quot;. The color Value is defined via four components:
1525 cbradney 1336
c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in
1135 cbradney 1337
the range from 0 to 255.
1338
 
1339
May raise ValueError if an invalid color name is specified.
1340
</source>
1341
        <translation type="unfinished"></translation>
1342
    </message>
1343
    <message>
1344
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer
1345
 
1525 cbradney 1346
Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
1135 cbradney 1347
</source>
1348
        <translation type="unfinished"></translation>
1349
    </message>
1350
    <message>
1351
        <source>getPosition([&quot;name&quot;]) -&gt; (x,y)
1352
 
1353
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
1525 cbradney 1354
If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
1135 cbradney 1355
- see UNIT_&lt;type&gt; for reference.
1356
</source>
1357
        <translation type="unfinished"></translation>
1358
    </message>
1359
    <message>
1525 cbradney 1360
        <source>getPropertyCType(object, property, includesuper=True)
1361
 
1362
Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
1363
for details of arguments.
1364
 
1365
If `includesuper&apos; is true, search inherited properties too.
1366
</source>
1367
        <translation type="unfinished"></translation>
1368
    </message>
1369
    <message>
1370
        <source>getPropertyNames(object, includesuper=True)
1371
 
1372
Return a list of property names supported by `object&apos;.
1373
If `includesuper&apos; is true, return properties supported
1374
by parent classes as well.
1375
</source>
1376
        <translation type="unfinished"></translation>
1377
    </message>
1378
    <message>
1379
        <source>getProperty(object, property)
1380
 
1381
Return the value of the property `property&apos; of the passed `object&apos;.
1382
 
1383
The `object&apos; argument may be a string, in which case the named PageItem
1384
is searched for. It may also be a PyCObject, which may point to any
1385
C++ QObject instance.
1386
 
1387
The `property&apos; argument must be a string, and is the name of the property
1388
to look up on `object&apos;.
1389
 
1390
The return value varies depending on the type of the property.
1391
</source>
1392
        <translation type="unfinished"></translation>
1393
    </message>
1394
    <message>
1395
        <source>setProperty(object, property, value)
1396
 
1397
Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
1398
compatible with the type of `property&apos;, an exception is raised. An exception may
1399
also be raised if the underlying setter fails.
1400
 
1401
See getProperty() for more information.
1402
</source>
1403
        <translation type="unfinished"></translation>
1404
    </message>
1405
    <message>
1406
        <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
1407
 
1408
Return a list of children of `object&apos;, possibly restricted to children
1409
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
1410
search recursively through children, grandchildren, etc.
1411
 
1412
See QObject::children() in the Qt docs for more information.
1413
</source>
1414
        <translation type="unfinished"></translation>
1415
    </message>
1416
    <message>
1417
        <source>getChild(object, childname, ofclass=None, recursive=True)
1418
 
1419
Return the first child of `object&apos; named `childname&apos;, possibly restricting
1420
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
1421
search recursively through children, grandchildren, etc.
1422
</source>
1423
        <translation type="unfinished"></translation>
1424
    </message>
1425
    <message>
1135 cbradney 1426
        <source>rotateObjectAbs(rot [, &quot;name&quot;])
1427
 
1525 cbradney 1428
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
1135 cbradney 1429
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
1430
selected item is used.
1431
</source>
1432
        <translation type="unfinished"></translation>
1433
    </message>
1525 cbradney 1434
    <message>
1435
        <source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
1436
 
1437
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1438
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
1439
image data is returned as a string. The optional &quot;format&quot; argument
1440
specifies the image format to generate, and supports any format allowed
1441
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
1442
 
1443
May raise NotFoundError if the specified font can&apos;t be found.
1444
May raise ValueError if an empty sample or filename is passed.
1445
</source>
1446
        <translation type="unfinished"></translation>
1447
    </message>
1448
    <message>
1449
        <source>selectText(start, count, [&quot;name&quot;])
1450
 
1451
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
1452
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
1453
text selection will be cleared.  If &quot;name&quot; is not given the currently
1454
selected item is used.
1455
 
1456
May throw IndexError if the selection is outside the bounds of the text.
1457
</source>
1458
        <translation type="unfinished"></translation>
1459
    </message>
1460
    <message>
3064 cbradney 1461
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
1525 cbradney 1462
 
3064 cbradney 1463
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
1464
with the filter string &quot;filter&quot;. A default filename or file path can also
1465
supplied, leave this string empty when you don&apos;t want to use it.  A value of
1466
True for haspreview enables a small preview widget in the FileSelect box.  When
1467
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
1468
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
1469
the dialog shows and returns only directories. The default for all of the
1470
opional parameters is False.
1525 cbradney 1471
 
3064 cbradney 1472
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
1473
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
1474
 
1475
Refer to the Qt-Documentation for QFileDialog for details on filters.
1476
 
1477
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
1478
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
1479
</source>
1480
        <translation type="unfinished"></translation>
1481
    </message>
1482
    <message>
1483
        <source>newStyleDialog() -&gt; string
1484
 
1485
Shows &apos;Create new paragraph style&apos; dialog. Function returns real
1486
style name or None when user cancels the dialog.
1487
</source>
1488
        <translation type="unfinished"></translation>
1489
    </message>
1490
    <message>
1491
        <source>getPageMargins()
1492
 
1493
Returns the page margins as a (top, left, right, bottom) tuple in the current
1494
units. See UNIT_&lt;type&gt; constants and getPageSize().
1495
</source>
1496
        <translation type="unfinished"></translation>
1497
    </message>
1498
    <message>
1499
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
1500
 
1501
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
1502
Text must be UTF encoded (see setText() as reference) The first character has an
1503
index of 0. Inserting at position -1 appends text to the frame. If &quot;name&quot; is
1504
not given the currently selected Item is used.
1505
 
1506
May throw IndexError for an insertion out of bounds.
1507
</source>
1508
        <translation type="unfinished"></translation>
1509
    </message>
1510
    <message>
1511
        <source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer
1512
 
1513
Returns the actual number of overflowing characters in text frame &quot;name&quot;.
1514
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
1515
use text frame linking. Without this parameter it search all linking chain.
1516
 
1525 cbradney 1517
May raise WrongFrameTypeError if the target frame is not an text frame
1518
</source>
1519
        <translation type="unfinished"></translation>
1520
    </message>
3064 cbradney 1521
    <message>
1522
        <source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
1523
 
1524
Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
1525
If &quot;name&quot; is not given the currently selected item is used.
1526
 
1527
May raise WrongFrameTypeError if the target frame is not a text frame
1528
</source>
1529
        <translation type="unfinished"></translation>
1530
    </message>
1531
    <message>
1532
        <source>isPDFBookmark([&quot;name&quot;]) -&gt; bool
1533
 
1534
Returns true if the text frame &quot;name&quot; is a PDF bookmark.
1535
If &quot;name&quot; is not given the currently selected item is used.
1536
 
1537
May raise WrongFrameTypeError if the target frame is not a text frame
1538
</source>
1539
        <translation type="unfinished"></translation>
1540
    </message>
3824 cbradney 1541
    <message>
1542
        <source>newDoc(size, margins, orientation, firstPageNumber,
1543
                   unit, facingPages, firstSideLeft) -&gt; bool
1544
 
1545
WARNING: Obsolete procedure! Use newDocument instead.
1546
 
1547
Creates a new document and returns true if successful. The parameters have the
1548
following meaning:
1549
 
1550
    size = A tuple (width, height) describing the size of the document. You can
1551
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
1552
 
1553
    margins = A tuple (left, right, top, bottom) describing the document
1554
    margins
1555
 
1556
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
1557
 
1558
    firstPageNumer = is the number of the first page in the document used for
1559
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
1560
    numbers if you&apos;re creating a document in several parts.
1561
 
1562
    unit: this value sets the measurement units used by the document. Use a
1563
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
1564
    UNIT_PICAS, UNIT_POINTS.
1565
 
1566
    facingPages = FACINGPAGES, NOFACINGPAGES
1567
 
1568
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
1569
 
1570
The values for width, height and the margins are expressed in the given unit
1571
for the document. PAPER_* constants are expressed in points. If your document
1572
is not in points, make sure to account for this.
1573
 
1574
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
1575
                FACINGPAGES, FIRSTPAGERIGHT)
1576
</source>
1577
        <translation type="unfinished"></translation>
1578
    </message>
1135 cbradney 1579
</context>
1580
<context>
444 fschmid 1581
    <name>About</name>
1582
    <message>
1135 cbradney 1583
        <source>About Scribus%1%2</source>
1584
        <translation type="obsolete">О Scribus-у%1%2</translation>
1585
    </message>
1586
    <message>
769 cbradney 1587
        <source>%1. %2 %3 </source>
3064 cbradney 1588
        <translation type="obsolete">%1. %2 %3 </translation>
444 fschmid 1589
    </message>
1590
    <message>
769 cbradney 1591
        <source>Scribus Version %1
444 fschmid 1592
%2 %3</source>
3064 cbradney 1593
        <translation type="obsolete">Scribus верзија %1
444 fschmid 1594
%2 %3</translation>
1595
    </message>
1596
    <message>
769 cbradney 1597
        <source>Build-ID:</source>
3824 cbradney 1598
        <translation type="obsolete">ID градње:</translation>
444 fschmid 1599
    </message>
1600
    <message>
769 cbradney 1601
        <source>&amp;About</source>
1602
        <translation>О прогр&amp;аму</translation>
444 fschmid 1603
    </message>
1604
    <message>
769 cbradney 1605
        <source>Development Team:</source>
1606
        <translation>Развојни тим:</translation>
444 fschmid 1607
    </message>
1608
    <message>
769 cbradney 1609
        <source>Contributions from:</source>
1610
        <translation>Прилози од стране:</translation>
444 fschmid 1611
    </message>
1612
    <message>
769 cbradney 1613
        <source>Windows port:</source>
3064 cbradney 1614
        <translation type="obsolete">Порт за windows:</translation>
444 fschmid 1615
    </message>
1616
    <message>
769 cbradney 1617
        <source>Official Documentation:</source>
1618
        <translation>Званична документација:</translation>
444 fschmid 1619
    </message>
1620
    <message>
769 cbradney 1621
        <source>Other Documentation:</source>
1622
        <translation>Остала документација:</translation>
444 fschmid 1623
    </message>
1624
    <message>
769 cbradney 1625
        <source>A&amp;uthors</source>
1626
        <translation>А&amp;утори</translation>
444 fschmid 1627
    </message>
1628
    <message>
769 cbradney 1629
        <source>Basque:</source>
3064 cbradney 1630
        <translation type="obsolete">Баскијски:</translation>
444 fschmid 1631
    </message>
1632
    <message>
769 cbradney 1633
        <source>Brazilian:</source>
3064 cbradney 1634
        <translation type="obsolete">Бразилски:</translation>
444 fschmid 1635
    </message>
1636
    <message>
769 cbradney 1637
        <source>Bulgarian:</source>
3064 cbradney 1638
        <translation type="obsolete">Бугарски:</translation>
444 fschmid 1639
    </message>
1640
    <message>
769 cbradney 1641
        <source>Catalan:</source>
3064 cbradney 1642
        <translation type="obsolete">Каталански:</translation>
444 fschmid 1643
    </message>
1644
    <message>
769 cbradney 1645
        <source>Czech:</source>
3064 cbradney 1646
        <translation type="obsolete">Чешки:</translation>
444 fschmid 1647
    </message>
1648
    <message>
769 cbradney 1649
        <source>Danish:</source>
3064 cbradney 1650
        <translation type="obsolete">Дански:</translation>
444 fschmid 1651
    </message>
1652
    <message>
769 cbradney 1653
        <source>English (British):</source>
3064 cbradney 1654
        <translation type="obsolete">Енглески (Британски):</translation>
444 fschmid 1655
    </message>
1656
    <message>
769 cbradney 1657
        <source>Esperanto:</source>
3064 cbradney 1658
        <translation type="obsolete">Есперанто:</translation>
444 fschmid 1659
    </message>
1660
    <message>
769 cbradney 1661
        <source>Finnish:</source>
3064 cbradney 1662
        <translation type="obsolete">Фински:</translation>
444 fschmid 1663
    </message>
1664
    <message>
769 cbradney 1665
        <source>French:</source>
3064 cbradney 1666
        <translation type="obsolete">Француски:</translation>
444 fschmid 1667
    </message>
1668
    <message>
769 cbradney 1669
        <source>Galician:</source>
3064 cbradney 1670
        <translation type="obsolete">Галицијски:</translation>
444 fschmid 1671
    </message>
1672
    <message>
769 cbradney 1673
        <source>German:</source>
3064 cbradney 1674
        <translation type="obsolete">Немачки:</translation>
444 fschmid 1675
    </message>
1676
    <message>
769 cbradney 1677
        <source>Hungarian:</source>
3064 cbradney 1678
        <translation type="obsolete">Мађарски:</translation>
444 fschmid 1679
    </message>
1680
    <message>
769 cbradney 1681
        <source>Italian:</source>
3064 cbradney 1682
        <translation type="obsolete">Италијански:</translation>
444 fschmid 1683
    </message>
1684
    <message>
769 cbradney 1685
        <source>Korean:</source>
3064 cbradney 1686
        <translation type="obsolete">Корејски:</translation>
444 fschmid 1687
    </message>
1688
    <message>
769 cbradney 1689
        <source>Lithuanian:</source>
3064 cbradney 1690
        <translation type="obsolete">Литвански:</translation>
444 fschmid 1691
    </message>
1692
    <message>
769 cbradney 1693
        <source>Norwegian:</source>
3064 cbradney 1694
        <translation type="obsolete">Норвешки:</translation>
444 fschmid 1695
    </message>
1696
    <message>
769 cbradney 1697
        <source>Polish:</source>
3064 cbradney 1698
        <translation type="obsolete">Пољски:</translation>
444 fschmid 1699
    </message>
1700
    <message>
769 cbradney 1701
        <source>Russian:</source>
3064 cbradney 1702
        <translation type="obsolete">Руски:</translation>
444 fschmid 1703
    </message>
1704
    <message>
769 cbradney 1705
        <source>Slovak:</source>
3064 cbradney 1706
        <translation type="obsolete">Словачки:</translation>
444 fschmid 1707
    </message>
1708
    <message>
769 cbradney 1709
        <source>Slovenian:</source>
3064 cbradney 1710
        <translation type="obsolete">Словеначки:</translation>
444 fschmid 1711
    </message>
1712
    <message>
769 cbradney 1713
        <source>Spanish:</source>
3064 cbradney 1714
        <translation type="obsolete">Шпански:</translation>
444 fschmid 1715
    </message>
1716
    <message>
769 cbradney 1717
        <source>Swedish:</source>
3064 cbradney 1718
        <translation type="obsolete">Шведски:</translation>
444 fschmid 1719
    </message>
1720
    <message>
769 cbradney 1721
        <source>Turkish:</source>
3064 cbradney 1722
        <translation type="obsolete">Турски:</translation>
444 fschmid 1723
    </message>
1724
    <message>
769 cbradney 1725
        <source>Ukrainian:</source>
3064 cbradney 1726
        <translation type="obsolete">Украјински:</translation>
444 fschmid 1727
    </message>
1728
    <message>
769 cbradney 1729
        <source>Welsh:</source>
3064 cbradney 1730
        <translation type="obsolete">Велшки:</translation>
444 fschmid 1731
    </message>
1732
    <message>
769 cbradney 1733
        <source>&amp;Translations</source>
1734
        <translation>&amp;Преводи</translation>
444 fschmid 1735
    </message>
1736
    <message>
769 cbradney 1737
        <source>Homepage</source>
1738
        <translation>Почетна страница</translation>
444 fschmid 1739
    </message>
1740
    <message>
769 cbradney 1741
        <source>Online Reference</source>
1742
        <translation>Веб референца</translation>
444 fschmid 1743
    </message>
1744
    <message>
769 cbradney 1745
        <source>Bugs and Feature Requests</source>
1746
        <translation>Грешке и захтеви за нове могућности</translation>
444 fschmid 1747
    </message>
1748
    <message>
769 cbradney 1749
        <source>Mailing List</source>
1750
        <translation>Дискусиона листа</translation>
444 fschmid 1751
    </message>
1752
    <message>
769 cbradney 1753
        <source>&amp;Online</source>
1754
        <translation>На &amp;вези</translation>
444 fschmid 1755
    </message>
1756
    <message>
769 cbradney 1757
        <source>&amp;Close</source>
1758
        <translation>&amp;Затвори</translation>
444 fschmid 1759
    </message>
1760
    <message>
1135 cbradney 1761
        <source>This panel shows the version, build date and
1762
 compiled in library support in Scribus
1763
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
1764
Missing library support is indicated by a *</source>
1765
        <translation type="obsolete">Овај панел приказује верзију, датум прављења и
1766
 укомпајлирану подршку за библиотеке у Scribus-у
1767
C-C-T означава: C=CUPS C=littlecms T=TIFF подршку.
1768
Подршка за библиотеке које недостају је обележена *</translation>
1769
    </message>
1770
    <message>
769 cbradney 1771
        <source>Official Translations and Translators:</source>
1772
        <translation>Званични преводи и преводиоци:</translation>
454 fschmid 1773
    </message>
1774
    <message>
769 cbradney 1775
        <source>Serbian:</source>
3064 cbradney 1776
        <translation type="obsolete">Српски:</translation>
454 fschmid 1777
    </message>
1778
    <message>
769 cbradney 1779
        <source>Previous Translation Contributors:</source>
1780
        <translation>Они који су претходно допринели превођењу:</translation>
454 fschmid 1781
    </message>
769 cbradney 1782
    <message>
1783
        <source>About Scribus %1</source>
1784
        <translation type="unfinished"></translation>
1785
    </message>
776 fschmid 1786
    <message>
3824 cbradney 1787
        <source>Mac OSX Aqua Port:</source>
1525 cbradney 1788
        <translation type="unfinished"></translation>
1789
    </message>
1790
    <message>
3824 cbradney 1791
        <source>Windows Port:</source>
1525 cbradney 1792
        <translation type="unfinished"></translation>
1793
    </message>
1794
    <message>
3824 cbradney 1795
        <source>Wiki</source>
1525 cbradney 1796
        <translation type="unfinished"></translation>
1797
    </message>
1798
    <message>
3824 cbradney 1799
        <source>November</source>
776 fschmid 1800
        <translation type="unfinished"></translation>
1801
    </message>
3064 cbradney 1802
    <message>
3824 cbradney 1803
        <source>%1 %2 %3</source>
3064 cbradney 1804
        <translation type="unfinished"></translation>
1805
    </message>
1806
    <message>
3824 cbradney 1807
        <source>%3-%2-%1 %4 %5</source>
3064 cbradney 1808
        <translation type="unfinished"></translation>
1809
    </message>
1810
    <message>
3824 cbradney 1811
        <source>Using Ghostscript version %1</source>
3064 cbradney 1812
        <translation type="unfinished"></translation>
1813
    </message>
1814
    <message>
3824 cbradney 1815
        <source>No Ghostscript version available</source>
3064 cbradney 1816
        <translation type="unfinished"></translation>
1817
    </message>
3824 cbradney 1818
    <message>
1819
        <source>&lt;b&gt;Scribus Version %1&lt;/b&gt;&lt;p&gt;%2&lt;br/&gt;%3 %4&lt;br/&gt;%5&lt;/p&gt;</source>
1820
        <translation type="unfinished"></translation>
1821
    </message>
1822
    <message>
1823
        <source>Build ID:</source>
1824
        <translation type="unfinished"></translation>
1825
    </message>
1826
    <message>
1827
        <source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
1828
        <translation type="unfinished"></translation>
1829
    </message>
769 cbradney 1830
</context>
1831
<context>
3278 cbradney 1832
    <name>AboutPlugins</name>
1833
    <message>
1834
        <source>Yes</source>
1835
        <translation type="unfinished">Да</translation>
1836
    </message>
1837
    <message>
1838
        <source>No</source>
1839
        <translation type="unfinished">Не</translation>
1840
    </message>
1841
</context>
1842
<context>
1843
    <name>AboutPluginsBase</name>
1844
    <message>
1845
        <source>Scribus: About Plug-ins</source>
1846
        <translation type="unfinished"></translation>
1847
    </message>
1848
    <message>
1849
        <source>File Name:</source>
1850
        <translation type="unfinished"></translation>
1851
    </message>
1852
    <message>
1853
        <source>Version:</source>
1854
        <translation type="unfinished"></translation>
1855
    </message>
1856
    <message>
1857
        <source>Enabled:</source>
1858
        <translation type="unfinished"></translation>
1859
    </message>
1860
    <message>
1861
        <source>Release Date:</source>
1862
        <translation type="unfinished"></translation>
1863
    </message>
1864
    <message>
1865
        <source>Copyright:</source>
1866
        <translation type="unfinished"></translation>
1867
    </message>
1868
    <message>
1869
        <source>Author(s):</source>
1870
        <translation type="unfinished"></translation>
1871
    </message>
1872
    <message>
1873
        <source>Description:</source>
1874
        <translation type="unfinished"></translation>
1875
    </message>
1876
    <message>
1877
        <source>License:</source>
1878
        <translation type="unfinished"></translation>
1879
    </message>
1880
    <message>
1881
        <source>&amp;Close</source>
1882
        <translation type="unfinished">&amp;Затвори</translation>
1883
    </message>
1884
    <message>
1885
        <source>Alt+C</source>
1886
        <translation type="unfinished">Alt+C</translation>
1887
    </message>
1888
</context>
1889
<context>
3064 cbradney 1890
    <name>ActionManager</name>
1891
    <message>
1892
        <source>&amp;New</source>
1893
        <translation type="unfinished">&amp;Нови</translation>
1894
    </message>
1895
    <message>
1896
        <source>&amp;Open...</source>
1897
        <translation type="unfinished">&amp;Отвори...</translation>
1898
    </message>
1899
    <message>
1900
        <source>&amp;Close</source>
1901
        <translation type="unfinished">&amp;Затвори</translation>
1902
    </message>
1903
    <message>
1904
        <source>&amp;Save</source>
1905
        <translation type="unfinished">&amp;Сними</translation>
1906
    </message>
1907
    <message>
1908
        <source>Save &amp;As...</source>
1909
        <translation type="unfinished">Сними &amp;као...</translation>
1910
    </message>
1911
    <message>
1912
        <source>Re&amp;vert to Saved</source>
1913
        <translation type="unfinished">Вр&amp;ати на снимљено</translation>
1914
    </message>
1915
    <message>
1916
        <source>Collect for O&amp;utput...</source>
1917
        <translation type="unfinished">Сакупи за и&amp;злаз...</translation>
1918
    </message>
1919
    <message>
1920
        <source>Get Text...</source>
1921
        <translation type="unfinished">Добави текст...</translation>
1922
    </message>
1923
    <message>
1924
        <source>Append &amp;Text...</source>
1925
        <translation type="unfinished">Примени &amp;текст...</translation>
1926
    </message>
1927
    <message>
1928
        <source>Get Image...</source>
1929
        <translation type="unfinished"></translation>
1930
    </message>
1931
    <message>
1932
        <source>Save &amp;Text...</source>
1933
        <translation type="unfinished">Сними &amp;текст...</translation>
1934
    </message>
1935
    <message>
1936
        <source>Save Page as &amp;EPS...</source>
1937
        <translation type="unfinished">Сними страницу као &amp;EPS...</translation>
1938
    </message>
1939
    <message>
1940
        <source>Save as P&amp;DF...</source>
1941
        <translation type="unfinished">Сними као P&amp;DF...</translation>
1942
    </message>
1943
    <message>
1944
        <source>Document &amp;Setup...</source>
1945
        <translation type="unfinished">&amp;Поставке документа...</translation>
1946
    </message>
1947
    <message>
1948
        <source>&amp;Print...</source>
1949
        <translation type="unfinished">Ш&amp;тампај...</translation>
1950
    </message>
1951
    <message>
1952
        <source>&amp;Quit</source>
1953
        <translation type="unfinished">&amp;Заврши</translation>
1954
    </message>
1955
    <message>
1956
        <source>&amp;Undo</source>
1957
        <translation type="unfinished">&amp;Опозови</translation>
1958
    </message>
1959
    <message>
1960
        <source>&amp;Redo</source>
1961
        <translation type="unfinished">Поно&amp;ви</translation>
1962
    </message>
1963
    <message>
1964
        <source>&amp;Item Action Mode</source>
1965
        <translation type="unfinished"></translation>
1966
    </message>
1967
    <message>
1968
        <source>Cu&amp;t</source>
1969
        <translation type="unfinished">&amp;Исеци</translation>
1970
    </message>
1971
    <message>
1972
        <source>&amp;Copy</source>
1973
        <translation type="unfinished">&amp;Копирај</translation>
1974
    </message>
1975
    <message>
1976
        <source>&amp;Paste</source>
1977
        <translation type="unfinished">&amp;Пренеси</translation>
1978
    </message>
1979
    <message>
1980
        <source>C&amp;lear Contents</source>
1981
        <translation type="unfinished">О&amp;чисти садржај</translation>
1982
    </message>
1983
    <message>
1984
        <source>Select &amp;All</source>
1985
        <translation type="unfinished">Изабери &amp;све</translation>
1986
    </message>
1987
    <message>
1988
        <source>&amp;Deselect All</source>
1989
        <translation type="unfinished"></translation>
1990
    </message>
1991
    <message>
1992
        <source>&amp;Search/Replace...</source>
1993
        <translation type="unfinished">&amp;Тражи/Замени...</translation>
1994
    </message>
1995
    <message>
1996
        <source>Edit Image...</source>
1997
        <translation type="unfinished"></translation>
1998
    </message>
1999
    <message>
2000
        <source>C&amp;olors...</source>
2001
        <translation type="unfinished">Б&amp;оје...</translation>
2002
    </message>
2003
    <message>
2004
        <source>&amp;Paragraph Styles...</source>
2005
        <translation type="unfinished">Стилови &amp;пасуса....</translation>
2006
    </message>
2007
    <message>
2008
        <source>&amp;Line Styles...</source>
2009
        <translation type="unfinished">Стилови &amp;линија...</translation>
2010
    </message>
2011
    <message>
2012
        <source>&amp;Master Pages...</source>
2013
        <translation type="unfinished"></translation>
2014
    </message>
2015
    <message>
2016
        <source>&amp;Javascripts...</source>
3278 cbradney 2017
        <translation type="obsolete">&amp;Javascript-ови...</translation>
3064 cbradney 2018
    </message>
2019
    <message>
2020
        <source>P&amp;references...</source>
2021
        <translation type="unfinished">П&amp;одешавања...</translation>
2022
    </message>
2023
    <message>
2024
        <source>%1 pt</source>
2025
        <translation type="unfinished"></translation>
2026
    </message>
2027
    <message>
2028
        <source>&amp;Other...</source>
2029
        <translation type="unfinished">&amp;Остало...</translation>
2030
    </message>
2031
    <message>
2032
        <source>&amp;Left</source>
2033
        <translation type="unfinished">&amp;Лево</translation>
2034
    </message>
2035
    <message>
2036
        <source>&amp;Center</source>
2037
        <translation type="unfinished">&amp;Средина</translation>
2038
    </message>
2039
    <message>
2040
        <source>&amp;Right</source>
2041
        <translation type="unfinished">&amp;Десно</translation>
2042
    </message>
2043
    <message>
2044
        <source>&amp;Block</source>
2045
        <translation type="unfinished">&amp;Блокирај</translation>
2046
    </message>
2047
    <message>
2048
        <source>&amp;Forced</source>
2049
        <translation type="unfinished">&amp;Приморано</translation>
2050
    </message>
2051
    <message>
2052
        <source>&amp;%1 %</source>
2053
        <translation type="unfinished"></translation>
2054
    </message>
2055
    <message>
2056
        <source>&amp;Normal</source>
2057
        <translation type="unfinished"></translation>
2058
    </message>
2059
    <message>
2060
        <source>&amp;Underline</source>
2061
        <translation type="unfinished">&amp;Подвуци</translation>
2062
    </message>
2063
    <message>
2064
        <source>Underline &amp;Words</source>
2065
        <translation type="unfinished"></translation>
2066
    </message>
2067
    <message>
2068
        <source>&amp;Strike Through</source>
2069
        <translation type="unfinished"></translation>
2070
    </message>
2071
    <message>
2072
        <source>&amp;All Caps</source>
2073
        <translation type="unfinished"></translation>
2074
    </message>
2075
    <message>
2076
        <source>Small &amp;Caps</source>
2077
        <translation type="unfinished"></translation>
2078
    </message>
2079
    <message>
2080
        <source>Su&amp;perscript</source>
2081
        <translation type="unfinished"></translation>
2082
    </message>
2083
    <message>
2084
        <source>Su&amp;bscript</source>
2085
        <translation type="unfinished"></translation>
2086
    </message>
2087
    <message>
2088
        <source>&amp;Outline</source>
2089
        <translation type="unfinished">&amp;Контура</translation>
2090
    </message>
2091
    <message>
2092
        <source>S&amp;hadow</source>
2093
        <translation type="unfinished"></translation>
2094
    </message>
2095
    <message>
2096
        <source>&amp;Image Effects</source>
2097
        <translation type="unfinished"></translation>
2098
    </message>
2099
    <message>
2100
        <source>&amp;Tabulators...</source>
2101
        <translation type="unfinished">&amp;Табулатори...</translation>
2102
    </message>
2103
    <message>
2104
        <source>D&amp;uplicate</source>
2105
        <translation type="unfinished"></translation>
2106
    </message>
2107
    <message>
2108
        <source>&amp;Multiple Duplicate</source>
2109
        <translation type="unfinished">&amp;Умножено дуплирање</translation>
2110
    </message>
2111
    <message>
2112
        <source>&amp;Delete</source>
2113
        <translation type="unfinished">&amp;Обриши</translation>
2114
    </message>
2115
    <message>
2116
        <source>&amp;Group</source>
2117
        <translation type="unfinished">&amp;Група</translation>
2118
    </message>
2119
    <message>
2120
        <source>&amp;Ungroup</source>
2121
        <translation type="unfinished">&amp;Растури групу</translation>
2122
    </message>
2123
    <message>
2124
        <source>Is &amp;Locked</source>
2125
        <translation type="unfinished"></translation>
2126
    </message>
2127
    <message>
2128
        <source>Si&amp;ze is Locked</source>
2129
        <translation type="unfinished"></translation>
2130
    </message>
2131
    <message>
2132
        <source>Lower to &amp;Bottom</source>
2133
        <translation type="unfinished"></translation>
2134
    </message>
2135
    <message>
2136
        <source>Raise to &amp;Top</source>
2137
        <translation type="unfinished"></translation>
2138
    </message>
2139
    <message>
2140
        <source>&amp;Lower</source>
2141
        <translation type="unfinished">&amp;Спусти</translation>
2142
    </message>
2143
    <message>
2144
        <source>&amp;Raise</source>
2145
        <translation type="unfinished">&amp;Подигни</translation>
2146
    </message>
2147
    <message>
2148
        <source>Send to S&amp;crapbook</source>
2149
        <translation type="unfinished">Пошаљи у св&amp;еску</translation>
2150
    </message>
2151
    <message>
2152
        <source>&amp;Attributes...</source>
2153
        <translation type="unfinished"></translation>
2154
    </message>
2155
    <message>
2156
        <source>I&amp;mage Visible</source>
2157
        <translation type="unfinished">С&amp;лика видљива</translation>
2158
    </message>
2159
    <message>
2160
        <source>&amp;Update Image</source>
2161
        <translation type="unfinished"></translation>
2162
    </message>
2163
    <message>
2164
        <source>Adjust Frame to Image</source>
2165
        <translation type="unfinished"></translation>
2166
    </message>
2167
    <message>
2168
        <source>Extended Image Properties</source>
2169
        <translation type="unfinished"></translation>
2170
    </message>
2171
    <message>
2172
        <source>&amp;Low Resolution</source>
2173
        <translation type="unfinished"></translation>
2174
    </message>
2175
    <message>
2176
        <source>&amp;Normal Resolution</source>
2177
        <translation type="unfinished"></translation>
2178
    </message>
2179
    <message>
2180
        <source>&amp;Full Resolution</source>
2181
        <translation type="unfinished"></translation>
2182
    </message>
2183
    <message>
2184
        <source>Is PDF &amp;Bookmark</source>
2185
        <translation type="unfinished">Је PDF &amp;маркер</translation>
2186
    </message>
2187
    <message>
2188
        <source>Is PDF A&amp;nnotation</source>
2189
        <translation type="unfinished">Је PDF ан&amp;отација</translation>
2190
    </message>
2191
    <message>
2192
        <source>Annotation P&amp;roperties</source>
2193
        <translation type="unfinished">С&amp;војства анотације</translation>
2194
    </message>
2195
    <message>
2196
        <source>Field P&amp;roperties</source>
2197
        <translation type="unfinished">С&amp;војства поља</translation>
2198
    </message>
2199
    <message>
2200
        <source>&amp;Edit Shape...</source>
2201
        <translation type="unfinished">&amp;Уређивање облика...</translation>
2202
    </message>
2203
    <message>
2204
        <source>&amp;Attach Text to Path</source>
2205
        <translation type="unfinished">&amp;Прикачи текст уз путању</translation>
2206
    </message>
2207
    <message>
2208
        <source>&amp;Detach Text from Path</source>
2209
        <translation type="unfinished">&amp;Откачи текст од путање</translation>
2210
    </message>
2211
    <message>
2212
        <source>&amp;Combine Polygons</source>
2213
        <translation type="unfinished">&amp;Комбинуј полигоне</translation>
2214
    </message>
2215
    <message>
2216
        <source>Split &amp;Polygons</source>
2217
        <translation type="unfinished">Раздвоји &amp;полигоне</translation>
2218
    </message>
2219
    <message>
2220
        <source>&amp;Bezier Curve</source>
2221
        <translation type="unfinished">&amp;Bezier крива</translation>
2222
    </message>
2223
    <message>
2224
        <source>&amp;Image Frame</source>
2225
        <translation type="unfinished"></translation>
2226
    </message>
2227
    <message>
2228
        <source>&amp;Outlines</source>
2229
        <translation type="unfinished">&amp;Оквирне линије</translation>
2230
    </message>
2231
    <message>
2232
        <source>&amp;Polygon</source>
2233
        <translation type="unfinished"></translation>
2234
    </message>
2235
    <message>
2236
        <source>&amp;Text Frame</source>
2237
        <translation type="unfinished">&amp;Текстуални оквир</translation>
2238
    </message>
2239
    <message>
2240
        <source>&amp;Glyph...</source>
2241
        <translation type="unfinished"></translation>
2242
    </message>
2243
    <message>
2244
        <source>Sample Text</source>
2245
        <translation type="unfinished"></translation>
2246
    </message>
2247
    <message>
2248
        <source>&amp;Insert...</source>
2249
        <translation type="unfinished">Уметн&amp;и...</translation>
2250
    </message>
2251
    <message>
2252
        <source>Im&amp;port...</source>
2253
        <translation type="unfinished"></translation>
2254
    </message>
2255
    <message>
2256
        <source>&amp;Delete...</source>
2257
        <translation type="unfinished">&amp;Обриши...</translation>
2258
    </message>
2259
    <message>
2260
        <source>&amp;Copy...</source>
2261
        <translation type="unfinished"></translation>
2262
    </message>
2263
    <message>
2264
        <source>&amp;Move...</source>
2265
        <translation type="unfinished">&amp;Помери...</translation>
2266
    </message>
2267
    <message>
2268
        <source>&amp;Apply Master Page...</source>
2269
        <translation type="unfinished"></translation>
2270
    </message>
2271
    <message>
2272
        <source>Manage &amp;Guides...</source>
2273
        <translation type="unfinished">Управљање &amp;водиљама...</translation>
2274
    </message>
2275
    <message>
2276
        <source>Manage Page Properties...</source>
2277
        <translation type="unfinished"></translation>
2278
    </message>
2279
    <message>
2280
        <source>&amp;Fit in window</source>
2281
        <translation type="unfinished"></translation>
2282
    </message>
2283
    <message>
2284
        <source>&amp;50%</source>
2285
        <translation type="unfinished">&amp;50%</translation>
2286
    </message>
2287
    <message>
2288
        <source>&amp;75%</source>
2289
        <translation type="unfinished">&amp;75%</translation>
2290
    </message>
2291
    <message>
2292
        <source>&amp;100%</source>
2293
        <translation type="unfinished">&amp;100%</translation>
2294
    </message>
2295
    <message>
2296
        <source>&amp;200%</source>
2297
        <translation type="unfinished">&amp;200%</translation>
2298
    </message>
2299
    <message>
2300
        <source>&amp;Thumbnails</source>
2301
        <translation type="unfinished">&amp;Сличице</translation>
2302
    </message>
2303
    <message>
2304
        <source>Show &amp;Margins</source>
2305
        <translation type="unfinished">Прикажи &amp;маргине</translation>
2306
    </message>
2307
    <message>
2308
        <source>Show &amp;Frames</source>
2309
        <translation type="unfinished">Прикажи &amp;оквире</translation>
2310
    </message>
2311
    <message>
2312
        <source>Show &amp;Images</source>
2313
        <translation type="unfinished">Прикажи &amp;слике</translation>
2314
    </message>
2315
    <message>
2316
        <source>Show &amp;Grid</source>
2317
        <translation type="unfinished">Прикажи &amp;мрежу</translation>
2318
    </message>
2319
    <message>
2320
        <source>Show G&amp;uides</source>
2321
        <translation type="unfinished">Прикажи &amp;водиље</translation>
2322
    </message>
2323
    <message>
2324
        <source>Show &amp;Baseline Grid</source>
2325
        <translation type="unfinished">Прикажи мрежу &amp;основне линије</translation>
2326
    </message>
2327
    <message>
2328
        <source>Show &amp;Text Chain</source>
2329
        <translation type="unfinished"></translation>
2330
    </message>
2331
    <message>
2332
        <source>Show Control Characters</source>
2333
        <translation type="unfinished"></translation>
2334
    </message>
2335
    <message>
2336
        <source>Rulers relative to Page</source>
2337
        <translation type="unfinished"></translation>
2338
    </message>
2339
    <message>
2340
        <source>Sn&amp;ap to Grid</source>
2341
        <translation type="unfinished">Пре&amp;баци на мрежу</translation>
2342
    </message>
2343
    <message>
2344
        <source>Sna&amp;p to Guides</source>
2345
        <translation type="unfinished">Преб&amp;аци на водиље</translation>
2346
    </message>
2347
    <message>
2348
        <source>&amp;Properties</source>
2349
        <translation type="unfinished">&amp;Својства</translation>
2350
    </message>
2351
    <message>
2352
        <source>&amp;Scrapbook</source>
2353
        <translation type="unfinished">&amp;Албум</translation>
2354
    </message>
2355
    <message>
2356
        <source>&amp;Layers</source>
2357
        <translation type="unfinished">&amp;Слојеви</translation>
2358
    </message>
2359
    <message>
2360
        <source>&amp;Arrange Pages</source>
2361
        <translation type="unfinished"></translation>
2362
    </message>
2363
    <message>
2364
        <source>&amp;Bookmarks</source>
2365
        <translation type="unfinished">&amp;Маркери</translation>
2366
    </message>
2367
    <message>
2368
        <source>&amp;Measurements</source>
2369
        <translation type="unfinished"></translation>
2370
    </message>
2371
    <message>
2372
        <source>Action &amp;History</source>
2373
        <translation type="unfinished"></translation>
2374
    </message>
2375
    <message>
2376
        <source>Preflight &amp;Verifier</source>
2377
        <translation type="unfinished"></translation>
2378
    </message>
2379
    <message>
2380
        <source>&amp;Align and Distribute</source>
2381
        <translation type="unfinished"></translation>
2382
    </message>
2383
    <message>
2384
        <source>&amp;Tools</source>
2385
        <translation type="unfinished">&amp;Алати</translation>
2386
    </message>
2387
    <message>
2388
        <source>P&amp;DF Tools</source>
2389
        <translation type="unfinished">P&amp;DF алати</translation>
2390
    </message>
2391
    <message>
2392
        <source>Select Item</source>
2393
        <translation type="unfinished"></translation>
2394
    </message>
2395
    <message>
2396
        <source>T&amp;able</source>
2397
        <translation type="unfinished"></translation>
2398
    </message>
2399
    <message>
2400
        <source>&amp;Shape</source>
2401
        <translation type="unfinished">&amp;Облик</translation>
2402
    </message>
2403
    <message>
2404
        <source>&amp;Line</source>
2405
        <translation type="unfinished">&amp;Линија</translation>
2406
    </message>
2407
    <message>
2408
        <source>&amp;Freehand Line</source>
2409
        <translation type="unfinished"></translation>
2410
    </message>
2411
    <message>
2412
        <source>Rotate Item</source>
2413
        <translation type="unfinished">Ротирај ставку</translation>
2414
    </message>
2415
    <message>
2416
        <source>Zoom in or out</source>
2417
        <translation type="unfinished">Увеличај или умањи</translation>
2418
    </message>
2419
    <message>
2420
        <source>Zoom in</source>
2421
        <translation type="unfinished"></translation>
2422
    </message>
2423
    <message>
2424
        <source>Zoom out</source>
2425
        <translation type="unfinished"></translation>
2426
    </message>
2427
    <message>
2428
        <source>Edit Contents of Frame</source>
2429
        <translation type="unfinished">Уређивање садржаја оквира</translation>
2430
    </message>
2431
    <message>
2432
        <source>Edit Text...</source>
2433
        <translation type="unfinished">Уреди текст...</translation>
2434
    </message>
2435
    <message>
2436
        <source>Link Text Frames</source>
2437
        <translation type="unfinished">Повежи текстуалне оквире</translation>
2438
    </message>
2439
    <message>
2440
        <source>Unlink Text Frames</source>
2441
        <translation type="unfinished">Прекини везу између текстуалних оквира</translation>
2442
    </message>
2443
    <message>
2444
        <source>&amp;Eye Dropper</source>
2445
        <translation type="unfinished"></translation>
2446
    </message>
2447
    <message>
2448
        <source>Copy Item Properties</source>
2449
        <translation type="unfinished"></translation>
2450
    </message>
2451
    <message>
2452
        <source>Edit the text with the Story Editor</source>
2453
        <translation type="unfinished">Уређивање текста помоћу уређивача</translation>
2454
    </message>
2455
    <message>
2456
        <source>Insert Text Frame</source>
2457
        <translation type="unfinished">Уметни текстуални оквир</translation>
2458
    </message>
2459
    <message>
2460
        <source>Insert Image Frame</source>
2461
        <translation type="unfinished"></translation>
2462
    </message>
2463
    <message>
2464
        <source>Insert Table</source>
2465
        <translation type="unfinished">Убаци табелу</translation>
2466
    </message>
2467
    <message>
2468
        <source>Insert Shape</source>
2469
        <translation type="unfinished"></translation>
2470
    </message>
2471
    <message>
2472
        <source>Insert Polygon</source>
2473
        <translation type="unfinished"></translation>
2474
    </message>
2475
    <message>
2476
        <source>Insert Line</source>
2477
        <translation type="unfinished"></translation>
2478
    </message>
2479
    <message>
2480
        <source>Insert Bezier Curve</source>
2481
        <translation type="unfinished"></translation>
2482
    </message>
2483
    <message>
2484
        <source>Insert Freehand Line</source>
2485
        <translation type="unfinished">Уметни слободоручну линију</translation>
2486
    </message>
2487
    <message>
2488
        <source>&amp;Manage Pictures</source>
2489
        <translation type="unfinished">&amp;Управљање сликама</translation>
2490
    </message>
2491
    <message>
2492
        <source>&amp;Hyphenate Text</source>
2493
        <translation type="unfinished">&amp;Споји текст цртицама</translation>
2494
    </message>
2495
    <message>
2496
        <source>Dehyphenate Text</source>
2497
        <translation type="unfinished"></translation>
2498
    </message>
2499
    <message>
2500
        <source>&amp;Generate Table Of Contents</source>
2501
        <translation type="unfinished"></translation>
2502
    </message>
2503
    <message>
2504
        <source>&amp;About Scribus</source>
2505
        <translation type="unfinished">&amp;О Scribus-у</translation>
2506
    </message>
2507
    <message>
2508
        <source>About &amp;Qt</source>
2509
        <translation type="unfinished">О &amp;Qt-у</translation>
2510
    </message>
2511
    <message>
2512
        <source>Toolti&amp;ps</source>
2513
        <translation type="unfinished">Облач&amp;ићи</translation>
2514
    </message>
2515
    <message>
2516
        <source>Scribus &amp;Manual...</source>
2517
        <translation type="unfinished">Scribus &amp;Приручник...</translation>
2518
    </message>
2519
    <message>
2520
        <source>Smart &amp;Hyphen</source>
2521
        <translation type="unfinished"></translation>
2522
    </message>
2523
    <message>
2524
        <source>Non Breaking Dash</source>
2525
        <translation type="unfinished"></translation>
2526
    </message>
2527
    <message>
2528
        <source>Non Breaking &amp;Space</source>
2529
        <translation type="unfinished"></translation>
2530
    </message>
2531
    <message>
2532
        <source>Page &amp;Number</source>
2533
        <translation type="unfinished"></translation>
2534
    </message>
2535
    <message>
2536
        <source>New Line</source>
2537
        <translation type="unfinished"></translation>
2538
    </message>
2539
    <message>
2540
        <source>Frame Break</source>
2541
        <translation type="unfinished"></translation>
2542
    </message>
2543
    <message>
2544
        <source>Column Break</source>
2545
        <translation type="unfinished"></translation>
2546
    </message>
2547
    <message>
2548
        <source>Copyright</source>
2549
        <translation type="unfinished"></translation>
2550
    </message>
2551
    <message>
2552
        <source>Registered Trademark</source>
2553
        <translation type="unfinished"></translation>
2554
    </message>
2555
    <message>
2556
        <source>Trademark</source>
2557
        <translation type="unfinished"></translation>
2558
    </message>
2559
    <message>
2560
        <source>Bullet</source>
2561
        <translation type="unfinished"></translation>
2562
    </message>
2563
    <message>
2564
        <source>Em Dash</source>
2565
        <translation type="unfinished"></translation>
2566
    </message>
2567
    <message>
2568
        <source>En Dash</source>
2569
        <translation type="unfinished"></translation>
2570
    </message>
2571
    <message>
2572
        <source>Figure Dash</source>
2573
        <translation type="unfinished"></translation>
2574
    </message>
2575
    <message>
2576
        <source>Quotation Dash</source>
2577
        <translation type="unfinished"></translation>
2578
    </message>
2579
    <message>
2580
        <source>Apostrophe</source>
2581
        <translation type="unfinished"></translation>
2582
    </message>
2583
    <message>
2584
        <source>Straight Double</source>
2585
        <translation type="unfinished"></translation>
2586
    </message>
2587
    <message>
2588
        <source>Single Left</source>
2589
        <translation type="unfinished"></translation>
2590
    </message>
2591
    <message>
2592
        <source>Single Right</source>
2593
        <translation type="unfinished"></translation>
2594
    </message>
2595
    <message>
2596
        <source>Double Left</source>
2597
        <translation type="unfinished"></translation>
2598
    </message>
2599
    <message>
2600
        <source>Double Right</source>
2601
        <translation type="unfinished"></translation>
2602
    </message>
2603
    <message>
2604
        <source>Single Reversed</source>
2605
        <translation type="unfinished"></translation>
2606
    </message>
2607
    <message>
2608
        <source>Double Reversed</source>
2609
        <translation type="unfinished"></translation>
2610
    </message>
2611
    <message>
2612
        <source>Single Left Guillemet</source>
2613
        <translation type="unfinished"></translation>
2614
    </message>
2615
    <message>
2616
        <source>Single Right Guillemet</source>
2617
        <translation type="unfinished"></translation>
2618
    </message>
2619
    <message>
2620
        <source>Double Left Guillemet</source>
2621
        <translation type="unfinished"></translation>
2622
    </message>
2623
    <message>
2624
        <source>Double Right Guillemet</source>
2625
        <translation type="unfinished"></translation>
2626
    </message>
2627
    <message>
2628
        <source>Low Single Comma</source>
2629
        <translation type="unfinished"></translation>
2630
    </message>
2631
    <message>
2632
        <source>Low Double Comma</source>
2633
        <translation type="unfinished"></translation>
2634
    </message>
2635
    <message>
2636
        <source>CJK Single Left</source>
2637
        <translation type="unfinished"></translation>
2638
    </message>
2639
    <message>
2640
        <source>CJK Single Right</source>
2641
        <translation type="unfinished"></translation>
2642
    </message>
2643
    <message>
2644
        <source>CJK Double Left</source>
2645
        <translation type="unfinished"></translation>
2646
    </message>
2647
    <message>
2648
        <source>CJK Double Right</source>
2649
        <translation type="unfinished"></translation>
2650
    </message>
2651
    <message>
2652
        <source>Toggle Palettes</source>
2653
        <translation type="unfinished"></translation>
2654
    </message>
2655
    <message>
2656
        <source>Toggle Guides</source>
2657
        <translation type="unfinished"></translation>
2658
    </message>
3278 cbradney 2659
    <message>
2660
        <source>Print Previe&amp;w</source>
2661
        <translation type="unfinished">Прегл&amp;ед за штампање</translation>
2662
    </message>
2663
    <message>
2664
        <source>&amp;JavaScripts...</source>
2665
        <translation type="unfinished"></translation>
2666
    </message>
2667
    <message>
2668
        <source>Convert to Master Page...</source>
2669
        <translation type="unfinished"></translation>
2670
    </message>
2671
    <message>
2672
        <source>&amp;Cascade</source>
2673
        <translation type="unfinished">&amp;Наслажи</translation>
2674
    </message>
2675
    <message>
2676
        <source>&amp;Tile</source>
2677
        <translation type="unfinished">Поп&amp;лочај</translation>
2678
    </message>
2679
    <message>
2680
        <source>&amp;About Plug-ins</source>
2681
        <translation type="unfinished"></translation>
2682
    </message>
3824 cbradney 2683
    <message>
2684
        <source>More Info...</source>
2685
        <translation type="unfinished"></translation>
2686
    </message>
3064 cbradney 2687
</context>
2688
<context>
444 fschmid 2689
    <name>AdvOptions</name>
2690
    <message>
769 cbradney 2691
        <source>Advanced Options</source>
3278 cbradney 2692
        <translation type="obsolete">Напредне опције</translation>
444 fschmid 2693
    </message>
2694
    <message>
769 cbradney 2695
        <source>Mirror Page(s) &amp;Horizontal</source>
3278 cbradney 2696
        <translation type="obsolete">Окрени страницу(е) &amp;водоравно</translation>
444 fschmid 2697
    </message>
2698
    <message>
769 cbradney 2699
        <source>Mirror Page(s) &amp;Vertical</source>
3278 cbradney 2700
        <translation type="obsolete">Окрени страницу(е) &amp;усправно</translation>
444 fschmid 2701
    </message>
2702
    <message>
769 cbradney 2703
        <source>Apply Under Color &amp;Removal</source>
3278 cbradney 2704
        <translation type="obsolete">Примени под &amp;уклањањем боја</translation>
444 fschmid 2705
    </message>
2706
    <message>
769 cbradney 2707
        <source>Apply &amp;ICC Profiles</source>
3278 cbradney 2708
        <translation type="obsolete">Примени &amp;ICC профиле</translation>
444 fschmid 2709
    </message>
2710
    <message>
769 cbradney 2711
        <source>PostScript Level &amp;1</source>
3278 cbradney 2712
        <translation type="obsolete">PostScript ниво &amp;1</translation>
444 fschmid 2713
    </message>
2714
    <message>
769 cbradney 2715
        <source>PostScript Level &amp;2</source>
3278 cbradney 2716
        <translation type="obsolete">PostScript ниво &amp;2</translation>
444 fschmid 2717
    </message>
2718
    <message>
769 cbradney 2719
        <source>PostScript Level &amp;3</source>
3278 cbradney 2720
        <translation type="obsolete">PostScript ниво &amp;3</translation>
444 fschmid 2721
    </message>
2722
    <message>
769 cbradney 2723
        <source>&amp;OK</source>
3064 cbradney 2724
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 2725
    </message>
2726
    <message>
769 cbradney 2727
        <source>&amp;Cancel</source>
3064 cbradney 2728
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 2729
    </message>
2730
    <message>
769 cbradney 2731
        <source>Creates PostScript Level 3</source>
3278 cbradney 2732
        <translation type="obsolete">Прави PostScript ниво 3</translation>
444 fschmid 2733
    </message>
2734
    <message>
769 cbradney 2735
        <source>Creates PostScript Level 2 only, beware,
444 fschmid 2736
this can create huge files</source>
3278 cbradney 2737
        <translation type="obsolete">Прави PostScript ниво 2 само, опрез,
444 fschmid 2738
ово може направити огромне фајлове</translation>
2739
    </message>
2740
    <message>
769 cbradney 2741
        <source>Creates PostScript Level 1 only, beware,
444 fschmid 2742
this can create huge files</source>
3278 cbradney 2743
        <translation type="obsolete">Прави PostScript ниво 1 само, опрез, 
444 fschmid 2744
oво може направити огромне фајловеНиво огроман</translation>
2745
    </message>
2746
    <message>
769 cbradney 2747
        <source>A way of switching off some of the gray shades which are composed
444 fschmid 2748
of cyan, yellow and magenta and using black instead.
2749
UCR most affects parts of images which are neutral and/or dark tones
2750
which are close to the gray. Use of this may improve printing some images
2751
and some experimentation and testing is need on a case by case basis.
2752
UCR reduces the possibility of over saturation with CMY inks.</source>
3278 cbradney 2753
        <translation type="obsolete">Начин за искључивање неких сивих сенки које су састављене
444 fschmid 2754
од цијан, жуте, и магенте и коришћења црне уместо тога.
2755
UCR највише утиче на делове слике који имају неутралне и/или тамне тонове
2756
који су блиски сивој. Коришћење овога може поправити штампу неких слика
2757
и потребно је мало експериментисања у зависности од случаја.
2758
UCR смањује могућност презасићености CMY мастилима</translation>
2759
    </message>
769 cbradney 2760
</context>
2761
<context>
444 fschmid 2762
    <name>Align</name>
2763
    <message>
769 cbradney 2764
        <source>Distribute/Align</source>
3064 cbradney 2765
        <translation type="obsolete">Распореди/Поравнај</translation>
444 fschmid 2766
    </message>
2767
    <message>
769 cbradney 2768
        <source>Align</source>
3064 cbradney 2769
        <translation type="obsolete">Поравнај</translation>
444 fschmid 2770
    </message>
2771
    <message>
769 cbradney 2772
        <source>Horizontal</source>
3064 cbradney 2773
        <translation type="obsolete">Водоравно</translation>
444 fschmid 2774
    </message>
2775
    <message>
769 cbradney 2776
        <source>Left Sides</source>
3064 cbradney 2777
        <translation type="obsolete">Леве стране</translation>
444 fschmid 2778
    </message>
2779
    <message>
769 cbradney 2780
        <source>Middles</source>
3064 cbradney 2781
        <translation type="obsolete">Средине</translation>
444 fschmid 2782
    </message>
2783
    <message>
769 cbradney 2784
        <source>Right Sides</source>
3064 cbradney 2785
        <translation type="obsolete">Десне стране</translation>
444 fschmid 2786
    </message>
2787
    <message>
769 cbradney 2788
        <source>&amp;Between:</source>
3064 cbradney 2789
        <translation type="obsolete">&amp;Између:</translation>
444 fschmid 2790
    </message>
2791
    <message>
769 cbradney 2792
        <source>&amp;Do Not Change</source>
3064 cbradney 2793
        <translation type="obsolete">&amp;Немој да мењаш</translation>
444 fschmid 2794
    </message>
2795
    <message>
769 cbradney 2796
        <source>A&amp;lign</source>
3064 cbradney 2797
        <translation type="obsolete">П&amp;оравнај</translation>
444 fschmid 2798
    </message>
2799
    <message>
769 cbradney 2800
        <source>Di&amp;splacement</source>
3064 cbradney 2801
        <translation type="obsolete">Погрешно &amp;постављање</translation>
444 fschmid 2802
    </message>
2803
    <message>
769 cbradney 2804
        <source>Distribute &amp;Evenly</source>
3064 cbradney 2805
        <translation type="obsolete">Распореди &amp;равномерно</translation>
444 fschmid 2806
    </message>
2807
    <message>
769 cbradney 2808
        <source>Vertical</source>
3064 cbradney 2809
        <translation type="obsolete">Усправно</translation>
444 fschmid 2810
    </message>
2811
    <message>
769 cbradney 2812
        <source>Top Sides</source>
3064 cbradney 2813
        <translation type="obsolete">Горње стране</translation>
444 fschmid 2814
    </message>
2815
    <message>
769 cbradney 2816
        <source>Bottom Sides</source>
3064 cbradney 2817
        <translation type="obsolete">Доње стране</translation>
444 fschmid 2818
    </message>
2819
    <message>
769 cbradney 2820
        <source>Bet&amp;ween:</source>
3064 cbradney 2821
        <translation type="obsolete">Изм&amp;еђу:</translation>
444 fschmid 2822
    </message>
2823
    <message>
769 cbradney 2824
        <source>Do &amp;Not Change</source>
3064 cbradney 2825
        <translation type="obsolete">&amp;Немој да мењаш</translation>
444 fschmid 2826
    </message>
2827
    <message>
769 cbradney 2828
        <source>Al&amp;ign</source>
3064 cbradney 2829
        <translation type="obsolete">По&amp;равнај</translation>
444 fschmid 2830
    </message>
2831
    <message>
769 cbradney 2832
        <source>Dis&amp;placement</source>
3064 cbradney 2833
        <translation type="obsolete">Погрешно &amp;постављање</translation>
444 fschmid 2834
    </message>
2835
    <message>
769 cbradney 2836
        <source> pt</source>
1525 cbradney 2837
        <translation type="obsolete"> тач.</translation>
444 fschmid 2838
    </message>
2839
    <message>
769 cbradney 2840
        <source> mm</source>
1525 cbradney 2841
        <translation type="obsolete"> mm</translation>
444 fschmid 2842
    </message>
2843
    <message>
769 cbradney 2844
        <source> in</source>
1525 cbradney 2845
        <translation type="obsolete"> in</translation>
444 fschmid 2846
    </message>
2847
    <message>
769 cbradney 2848
        <source> p</source>
1525 cbradney 2849
        <translation type="obsolete"> p</translation>
444 fschmid 2850
    </message>
2851
    <message>
769 cbradney 2852
        <source>Distribute E&amp;venly</source>
3064 cbradney 2853
        <translation type="obsolete">Распореди рав&amp;номерно</translation>
444 fschmid 2854
    </message>
2855
    <message>
769 cbradney 2856
        <source>&amp;OK</source>
3064 cbradney 2857
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 2858
    </message>
2859
    <message>
769 cbradney 2860
        <source>&amp;Apply</source>
3064 cbradney 2861
        <translation type="obsolete">&amp;Примени</translation>
444 fschmid 2862
    </message>
2863
    <message>
769 cbradney 2864
        <source>&amp;Cancel</source>
3064 cbradney 2865
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 2866
    </message>
769 cbradney 2867
</context>
2868
<context>
3064 cbradney 2869
    <name>AlignDistributePalette</name>
2870
    <message>
2871
        <source>Align and Distribute</source>
2872
        <translation type="unfinished"></translation>
2873
    </message>
2874
    <message>
2875
        <source>Align</source>
2876
        <translation type="unfinished">Поравнај</translation>
2877
    </message>
2878
    <message>
2879
        <source>&amp;Relative to:</source>
2880
        <translation type="unfinished"></translation>
2881
    </message>
2882
    <message>
2883
        <source>First Selected</source>
2884
        <translation type="unfinished"></translation>
2885
    </message>
2886
    <message>
2887
        <source>Last Selected</source>
2888
        <translation type="unfinished"></translation>
2889
    </message>
2890
    <message>
2891
        <source>Page</source>
2892
        <translation type="unfinished">Страница</translation>
2893
    </message>
2894
    <message>
2895
        <source>Margins</source>
2896
        <translation type="unfinished"></translation>
2897
    </message>
2898
    <message>
2899
        <source>Guide</source>
2900
        <translation type="unfinished"></translation>
2901
    </message>
2902
    <message>
2903
        <source>Selection</source>
2904
        <translation type="unfinished"></translation>
2905
    </message>
2906
    <message>
2907
        <source>Align right sides of objects to left side of anchor</source>
2908
        <translation type="unfinished"></translation>
2909
    </message>
2910
    <message>
2911
        <source>Align left sides of objects to right side of anchor</source>
2912
        <translation type="unfinished"></translation>
2913
    </message>
2914
    <message>
2915
        <source>Align bottoms</source>
2916
        <translation type="unfinished"></translation>
2917
    </message>
2918
    <message>
2919
        <source>Align right sides</source>
2920
        <translation type="unfinished"></translation>
2921
    </message>
2922
    <message>
2923
        <source>Align tops of objects to bottom of anchor</source>
2924
        <translation type="unfinished"></translation>
2925
    </message>
2926
    <message>
2927
        <source>Center on vertical axis</source>
2928
        <translation type="unfinished"></translation>
2929
    </message>
2930
    <message>
2931
        <source>Align left sides</source>
2932
        <translation type="unfinished"></translation>
2933
    </message>
2934
    <message>
2935
        <source>Center on horizontal axis</source>
2936
        <translation type="unfinished"></translation>
2937
    </message>
2938
    <message>
2939
        <source>Align bottoms of objects to top of anchor</source>
2940
        <translation type="unfinished"></translation>
2941
    </message>
2942
    <message>
2943
        <source>Align tops</source>
2944
        <translation type="unfinished"></translation>
2945
    </message>
2946
    <message>
2947
        <source>&amp;Selected Guide:</source>
2948
        <translation type="unfinished"></translation>
2949
    </message>
2950
    <message>
2951
        <source>Distribute</source>
2952
        <translation type="unfinished"></translation>
2953
    </message>
2954
    <message>
2955
        <source>Make horizontal gaps between objects equal</source>
2956
        <translation type="unfinished"></translation>
2957
    </message>
2958
    <message>
2959
        <source>Make horizontal gaps between objects equal to the value specified</source>
2960
        <translation type="unfinished"></translation>
2961
    </message>
2962
    <message>
2963
        <source>Distribute right sides equidistantly</source>
2964
        <translation type="unfinished"></translation>
2965
    </message>
2966
    <message>
2967
        <source>Distribute bottoms equidistantly</source>
2968
        <translation type="unfinished"></translation>
2969
    </message>
2970
    <message>
2971
        <source>Distribute centers equidistantly horizontally</source>
2972
        <translation type="unfinished"></translation>
2973
    </message>
2974
    <message>
2975
        <source>Make vertical gaps between objects equal</source>
2976
        <translation type="unfinished"></translation>
2977
    </message>
2978
    <message>
2979
        <source>Make vertical gaps between objects equal to the value specified</source>
2980
        <translation type="unfinished"></translation>
2981
    </message>
2982
    <message>
2983
        <source>Distribute left sides equidistantly</source>
2984
        <translation type="unfinished"></translation>
2985
    </message>
2986
    <message>
2987
        <source>Distribute centers equidistantly vertically</source>
2988
        <translation type="unfinished"></translation>
2989
    </message>
2990
    <message>
2991
        <source>Distribute tops equidistantly</source>
2992
        <translation type="unfinished"></translation>
2993
    </message>
2994
    <message>
2995
        <source>&amp;Distance:</source>
2996
        <translation type="unfinished"></translation>
2997
    </message>
2998
    <message>
2999
        <source>Distribute the items with the distance specified</source>
3000
        <translation type="unfinished"></translation>
3001
    </message>
3002
    <message>
3003
        <source>None Selected</source>
3004
        <translation type="unfinished"></translation>
3005
    </message>
3006
    <message>
3007
        <source>Warning</source>
3824 cbradney 3008
        <translation type="obsolete">Упозорење</translation>
3064 cbradney 3009
    </message>
3010
    <message>
3011
        <source>Some objects are locked.</source>
3012
        <translation type="unfinished"></translation>
3013
    </message>
3014
    <message>
3015
        <source>&amp;Unlock All</source>
3016
        <translation type="unfinished"></translation>
3017
    </message>
3018
    <message>
3019
        <source>Y: %1%2</source>
3020
        <translation type="unfinished"></translation>
3021
    </message>
3022
    <message>
3023
        <source>X: %1%2</source>
3024
        <translation type="unfinished"></translation>
3025
    </message>
3026
</context>
3027
<context>
444 fschmid 3028
    <name>AlignSelect</name>
3029
    <message>
769 cbradney 3030
        <source>Align Text Left</source>
3031
        <translation>Поравнај текст лево</translation>
444 fschmid 3032
    </message>
3033
    <message>
769 cbradney 3034
        <source>Align Text Right</source>
3035
        <translation>Поравнај текст десно</translation>
444 fschmid 3036
    </message>
3037
    <message>
769 cbradney 3038
        <source>Align Text Center</source>
3039
        <translation>Поравнај текст по средини</translation>
444 fschmid 3040
    </message>
3041
    <message>
769 cbradney 3042
        <source>Align Text Justified</source>
3043
        <translation>Поравнај текст развучено</translation>
444 fschmid 3044
    </message>
3045
    <message>
769 cbradney 3046
        <source>Align Text Forced Justified</source>
3047
        <translation>Поравнај текст насилно развучено</translation>
444 fschmid 3048
    </message>
769 cbradney 3049
</context>
3050
<context>
444 fschmid 3051
    <name>Annot</name>
3052
    <message>
769 cbradney 3053
        <source>Field Properties</source>
3054
        <translation>Својства поља</translation>
444 fschmid 3055
    </message>
3056
    <message>
769 cbradney 3057
        <source>Type:</source>
3058
        <translation>Врста:</translation>
444 fschmid 3059
    </message>
3060
    <message>
769 cbradney 3061
        <source>Button</source>
3062
        <translation>Дугме</translation>
444 fschmid 3063
    </message>
3064
    <message>
769 cbradney 3065
        <source>Text Field</source>
3066
        <translation>Поље за текст</translation>
444 fschmid 3067
    </message>
3068
    <message>
769 cbradney 3069
        <source>Check Box</source>
3070
        <translation>Кућица</translation>
444 fschmid 3071
    </message>
3072
    <message>
769 cbradney 3073
        <source>Combo Box</source>
3074
        <translation>Комбо кутија</translation>
444 fschmid 3075
    </message>
3076
    <message>
769 cbradney 3077
        <source>List Box</source>
3078
        <translation>Кутија листе</translation>
444 fschmid 3079
    </message>
3080
    <message>
769 cbradney 3081
        <source>Properties</source>
3082
        <translation>Својства</translation>
444 fschmid 3083
    </message>
3084
    <message>
769 cbradney 3085
        <source>Name:</source>
3086
        <translation>Име:</translation>
444 fschmid 3087
    </message>
3088
    <message>
769 cbradney 3089
        <source>Tool-Tip:</source>
3090
        <translation>Алат-Савет:</translation>
444 fschmid 3091
    </message>
3092
    <message>
769 cbradney 3093
        <source>Text</source>
3094
        <translation>Текст</translation>
444 fschmid 3095
    </message>
3096
    <message>
769 cbradney 3097
        <source>Font for use with PDF 1.3:</source>
3098
        <translation>Фонт за коришћење са PDF 1.3:</translation>
444 fschmid 3099
    </message>
3100
    <message>
769 cbradney 3101
        <source>Border</source>
3102
        <translation>Оквир</translation>
444 fschmid 3103
    </message>
3104
    <message>
769 cbradney 3105
        <source>Color:</source>
3106
        <translation>Боја:</translation>
444 fschmid 3107
    </message>
3108
    <message>
769 cbradney 3109
        <source>None</source>
3110
        <translation>Ниједан</translation>
444 fschmid 3111
    </message>
3112
    <message>
769 cbradney 3113
        <source>Width:</source>
3114
        <translation>Ширина:</translation>
444 fschmid 3115
    </message>
3116
    <message>
769 cbradney 3117
        <source>Thin</source>
3118
        <translation>Танак</translation>
444 fschmid 3119
    </message>
3120
    <message>
769 cbradney 3121
        <source>Normal</source>
3122
        <translation>Нормално</translation>
444 fschmid 3123
    </message>
3124
    <message>
769 cbradney 3125
        <source>Wide</source>
3126
        <translation>Широк</translation>
444 fschmid 3127
    </message>
3128
    <message>
769 cbradney 3129
        <source>Style:</source>
3130
        <translation>Стил:</translation>
444 fschmid 3131
    </message>
3132
    <message>
769 cbradney 3133
        <source>Solid</source>
3134
        <translation>Пуно</translation>
444 fschmid 3135
    </message>
3136
    <message>
769 cbradney 3137
        <source>Dashed</source>
3138
        <translation>Испрекидано</translation>
444 fschmid 3139
    </message>
3140
    <message>
769 cbradney 3141
        <source>Underline</source>
3142
        <translation>Подвучено</translation>
444 fschmid 3143
    </message>
3144
    <message>
769 cbradney 3145
        <source>Beveled</source>
3146
        <translation>Искошено</translation>
444 fschmid 3147
    </message>
3148
    <message>
769 cbradney 3149
        <source>Inset</source>
3150
        <translation>Уметак</translation>
444 fschmid 3151
    </message>
3152
    <message>
769 cbradney 3153
        <source>Other</source>
3154
        <translation>Остало</translation>
444 fschmid 3155
    </message>
3156
    <message>
769 cbradney 3157
        <source>Read Only</source>
3158
        <translation>Само за читање</translation>
444 fschmid 3159
    </message>
3160
    <message>
769 cbradney 3161
        <source>Required</source>
3162
        <translation>Захтевано</translation>
444 fschmid 3163
    </message>
3164
    <message>
769 cbradney 3165
        <source>Don&apos;t Export Value</source>
3166
        <translation>Немој да извозиш вредност</translation>
444 fschmid 3167
    </message>
3168
    <message>
769 cbradney 3169
        <source>Visibility:</source>
3170
        <translation>Видљивост:</translation>
444 fschmid 3171
    </message>
3172
    <message>
769 cbradney 3173
        <source>Visible</source>
3174
        <translation>Видљиво</translation>
444 fschmid 3175
    </message>
3176
    <message>
769 cbradney 3177
        <source>Hidden</source>
3178
        <translation>Скривен</translation>
444 fschmid 3179
    </message>
3180
    <message>
769 cbradney 3181
        <source>No Print</source>
3182
        <translation>Не штампај</translation>
444 fschmid 3183
    </message>
3184
    <message>
769 cbradney 3185
        <source>No View</source>
3186
        <translation>Без приказа</translation>
444 fschmid 3187
    </message>
3188
    <message>
769 cbradney 3189
        <source>Appearance</source>
3190
        <translation>Изглед</translation>
444 fschmid 3191
    </message>
3192
    <message>
769 cbradney 3193
        <source>Text for Button Down</source>
3194
        <translation>Текст за Дугме Доле</translation>
444 fschmid 3195
    </message>
3196
    <message>
769 cbradney 3197
        <source>Text for Roll Over</source>
3198
        <translation>Текст за превртање</translation>
444 fschmid 3199
    </message>
3200
    <message>
769 cbradney 3201
        <source>Icons</source>
3202
        <translation>Иконе</translation>
444 fschmid 3203
    </message>
3204
    <message>
769 cbradney 3205
        <source>Use Icons</source>
3206
        <translation>Користи иконе</translation>
444 fschmid 3207
    </message>
3208
    <message>
769 cbradney 3209
        <source>Remove</source>
3210
        <translation>Уклони</translation>
444 fschmid 3211
    </message>
3212
    <message>
769 cbradney 3213
        <source>Pressed</source>
3214
        <translation>Притиснуто</translation>
444 fschmid 3215
    </message>
3216
    <message>
769 cbradney 3217
        <source>Roll Over</source>
3218
        <translation>Превртање</translation>
444 fschmid 3219
    </message>
3220
    <message>
769 cbradney 3221
        <source>Icon Placement...</source>
3222
        <translation>Постављање икона...</translation>
444 fschmid 3223
    </message>
3224
    <message>
769 cbradney 3225
        <source>Highlight</source>
3226
        <translation>Истицање</translation>
444 fschmid 3227
    </message>
3228
    <message>
769 cbradney 3229
        <source>Invert</source>
3230
        <translation>Инвертуј</translation>
444 fschmid 3231
    </message>
3232
    <message>
769 cbradney 3233
        <source>Outlined</source>
3234
        <translation>Уоквирено</translation>
444 fschmid 3235
    </message>
3236
    <message>
769 cbradney 3237
        <source>Push</source>
3238
        <translation>Гурни</translation>
444 fschmid 3239
    </message>
3240
    <message>
769 cbradney 3241
        <source>Multi-Line</source>
3242
        <translation>Мулти-линија</translation>
444 fschmid 3243
    </message>
3244
    <message>
769 cbradney 3245
        <source>Password</source>
3246
        <translation>Лозинка</translation>
444 fschmid 3247
    </message>
3248
    <message>
769 cbradney 3249
        <source>Limit of</source>
3250
        <translation>Лимит од</translation>
444 fschmid 3251
    </message>
3252
    <message>
769 cbradney 3253
        <source>Characters</source>
3254
        <translation>Знакови</translation>
444 fschmid 3255
    </message>
3256
    <message>
769 cbradney 3257
        <source>Do Not Scroll</source>
3258
        <translation>Немој да скролујеш</translation>
444 fschmid 3259
    </message>
3260
    <message>
769 cbradney 3261
        <source>Do Not Spell Check</source>
3262
        <translation>Немој да провераваш правопис</translation>
444 fschmid 3263
    </message>
3264
    <message>
769 cbradney 3265
        <source>Check Style:</source>
3266
        <translation>Провери стил:</translation>
444 fschmid 3267
    </message>
3268
    <message>
769 cbradney 3269
        <source>Check</source>
3270
        <translation>Провери</translation>
444 fschmid 3271
    </message>
3272
    <message>
769 cbradney 3273
        <source>Cross</source>
3274
        <translation>Крст</translation>
444 fschmid 3275
    </message>
3276
    <message>
769 cbradney 3277
        <source>Diamond</source>
3278
        <translation>Дијамант</translation>
444 fschmid 3279
    </message>
3280
    <message>
769 cbradney 3281
        <source>Circle</source>
3282
        <translation>Круг</translation>
444 fschmid 3283
    </message>
3284
    <message>
769 cbradney 3285
        <source>Star</source>
3286
        <translation>Звезда</translation>
444 fschmid 3287
    </message>
3288
    <message>
769 cbradney 3289
        <source>Square</source>
3290
        <translation>Квадрат</translation>
444 fschmid 3291
    </message>
3292
    <message>
769 cbradney 3293
        <source>Default is Checked</source>
3294
        <translation>Подразумевано је обележено</translation>
444 fschmid 3295
    </message>
3296
    <message>
769 cbradney 3297
        <source>Editable</source>
3298
        <translation>Може се уређивати</translation>
444 fschmid 3299
    </message>
3300
    <message>
769 cbradney 3301
        <source>Options</source>
3302
        <translation>Опције</translation>
444 fschmid 3303
    </message>
3304
    <message>
769 cbradney 3305
        <source>Java Script</source>
3278 cbradney 3306
        <translation type="obsolete">Java Script</translation>
444 fschmid 3307
    </message>
3308
    <message>
769 cbradney 3309
        <source>Go To</source>
3310
        <translation>Иди на</translation>
444 fschmid 3311
    </message>
3312
    <message>
769 cbradney 3313
        <source>Submit Form</source>
3314
        <translation>Пошаљи формулар</translation>
444 fschmid 3315
    </message>
3316
    <message>
769 cbradney 3317
        <source>Reset Form</source>
3318
        <translation>Ресетуј формулар</translation>
444 fschmid 3319
    </message>
3320
    <message>
769 cbradney 3321
        <source>Import Data</source>
3322
        <translation>Увези податке</translation>
444 fschmid 3323
    </message>
3324
    <message>
769 cbradney 3325
        <source>Event:</source>
3326
        <translation>Догађај:</translation>
444 fschmid 3327
    </message>
3328
    <message>
769 cbradney 3329
        <source>Mouse Up</source>
3330
        <translation>Миш горе</translation>
444 fschmid 3331
    </message>
3332
    <message>
769 cbradney 3333
        <source>Mouse Down</source>
3334
        <translation>Миш доле</translation>
444 fschmid 3335
    </message>
3336
    <message>
769 cbradney 3337
        <source>Mouse Enter</source>
3338
        <translation>Миш унеси</translation>
444 fschmid 3339
    </message>
3340
    <message>
769 cbradney 3341
        <source>Mouse Exit</source>
3342
        <translation>Миш изађи</translation>
444 fschmid 3343
    </message>
3344
    <message>
769 cbradney 3345
        <source>On Focus</source>
3346
        <translation>На фокус</translation>
444 fschmid 3347
    </message>
3348
    <message>
769 cbradney 3349
        <source>On Blur</source>
3350
        <translation>На замућење</translation>
444 fschmid 3351
    </message>
3352
    <message>
769 cbradney 3353
        <source>Script:</source>
3354
        <translation>Скрипта:</translation>
444 fschmid 3355
    </message>
3356
    <message>
769 cbradney 3357
        <source>Edit...</source>
3358
        <translation>Уреди...</translation>
444 fschmid 3359
    </message>
3360
    <message>
769 cbradney 3361
        <source>Submit to URL:</source>
3362
        <translation>Пошаљи до URL-а:</translation>
444 fschmid 3363
    </message>
3364
    <message>
769 cbradney 3365
        <source>Submit Data as HTML</source>
3366
        <translation>Пошаљи податке као HTML</translation>
444 fschmid 3367
    </message>
3368
    <message>
769 cbradney 3369
        <source>Import Data from:</source>
3370
        <translation>Увези податке од:</translation>
444 fschmid 3371
    </message>
3372
    <message>
769 cbradney 3373
        <source>Destination</source>
3374
        <translation>Одредиште</translation>
444 fschmid 3375
    </message>
3376
    <message>
769 cbradney 3377
        <source>To File:</source>
3378
        <translation>У фајл:</translation>
444 fschmid 3379
    </message>
3380
    <message>
769 cbradney 3381
        <source>Change...</source>
3382
        <translation>Измени...</translation>
444 fschmid 3383
    </message>
3384
    <message>
769 cbradney 3385
        <source>Page:</source>
3386
        <translation>Страна:</translation>
444 fschmid 3387
    </message>
3388
    <message>
769 cbradney 3389
        <source>X-Pos:</source>
3390
        <translation>X Поз:</translation>
444 fschmid 3391
    </message>
3392
    <message>
769 cbradney 3393
        <source> pt</source>
3394
        <translation> тач.</translation>
444 fschmid 3395
    </message>
3396
    <message>
769 cbradney 3397
        <source>Y-Pos:</source>
3398
        <translation>Y Поз:</translation>
444 fschmid 3399
    </message>
3400
    <message>
769 cbradney 3401
        <source>Action</source>
3402
        <translation>Акција</translation>
444 fschmid 3403
    </message>
3404
    <message>
769 cbradney 3405
        <source>Field is formatted as:</source>
3406
        <translation>Поље је форматирано као:</translation>
444 fschmid 3407
    </message>
3408
    <message>
769 cbradney 3409
        <source>Plain</source>
3410
        <translation>Обичан</translation>
444 fschmid 3411
    </message>
3412
    <message>
769 cbradney 3413
        <source>Number</source>
3414
        <translation>Број</translation>
444 fschmid 3415
    </message>
3416
    <message>
769 cbradney 3417
        <source>Percentage</source>
3418
        <translation>Проценат</translation>
444 fschmid 3419
    </message>
3420
    <message>
769 cbradney 3421
        <source>Date</source>
3422
        <translation>Датум</translation>
444 fschmid 3423
    </message>
3424
    <message>
769 cbradney 3425
        <source>Time</source>
3426
        <translation>Време</translation>
444 fschmid 3427
    </message>
3428
    <message>
769 cbradney 3429
        <source>Custom</source>
3430
        <translation>Произвољно</translation>
444 fschmid 3431
    </message>
3432
    <message>
769 cbradney 3433
        <source>Number Format</source>
3434
        <translation>Формат бројева</translation>
444 fschmid 3435
    </message>
3436
    <message>
769 cbradney 3437
        <source>Decimals:</source>
3438
        <translation>Децимале:</translation>
444 fschmid 3439
    </message>
3440
    <message>
769 cbradney 3441
        <source>Use Currency Symbol</source>
3442
        <translation>Користи симбол валуте</translation>
444 fschmid 3443
    </message>
3444
    <message>
769 cbradney 3445
        <source>Prepend Currency Symbol</source>
3446
        <translation>Валута Симбол</translation>
444 fschmid 3447
    </message>
3448
    <message>
769 cbradney 3449
        <source>Formatting</source>
3450
        <translation>Форматирање</translation>
444 fschmid 3451
    </message>
3452
    <message>
769 cbradney 3453
        <source>Percent Format</source>
3454
        <translation>Процентни формат</translation>
444 fschmid 3455
    </message>
3456
    <message>
769 cbradney 3457
        <source>Date Format</source>
3458
        <translation>Формат датума</translation>
444 fschmid 3459
    </message>
3460
    <message>
769 cbradney 3461
        <source>Time Format</source>
3462
        <translation>Формат времена</translation>
444 fschmid 3463
    </message>
3464
    <message>
769 cbradney 3465
        <source>Custom Scripts</source>
3466
        <translation>Произвољне скрипте</translation>
444 fschmid 3467
    </message>
3468
    <message>
769 cbradney 3469
        <source>Format:</source>
3470
        <translation>Формат:</translation>
444 fschmid 3471
    </message>
3472
    <message>
769 cbradney 3473
        <source>Keystroke:</source>
3474
        <translation>Притисак дугмета:</translation>
444 fschmid 3475
    </message>
3476
    <message>
769 cbradney 3477
        <source>Format</source>
3478
        <translation>Формат</translation>
444 fschmid 3479
    </message>
3480
    <message>
769 cbradney 3481
        <source>Value is not validated</source>
3482
        <translation>Вредност није оверена</translation>
444 fschmid 3483
    </message>
3484
    <message>
769 cbradney 3485
        <source>Value must be greater than or equal to:</source>
3486
        <translation>Вредност мора бити већа или једнака са:</translation>
444 fschmid 3487
    </message>
3488
    <message>
769 cbradney 3489
        <source>and less or equal to:</source>
3490
        <translation>и мања или једнака са:</translation>
444 fschmid 3491
    </message>
3492
    <message>
769 cbradney 3493
        <source>Custom validate script:</source>
3494
        <translation>Произвољне скрипте за оверавање:</translation>
444 fschmid 3495
    </message>
3496
    <message>
769 cbradney 3497
        <source>Validate</source>
3498
        <translation>Овери</translation>
444 fschmid 3499
    </message>
3500
    <message>
769 cbradney 3501
        <source>Value is not calculated</source>
3502
        <translation>Вредност није израчуната</translation>
444 fschmid 3503
    </message>
3504
    <message>
769 cbradney 3505
        <source>Value is the</source>
3506
        <translation>Вредност је</translation>
444 fschmid 3507
    </message>
3508
    <message>
769 cbradney 3509
        <source>sum</source>
3510
        <translation>сума</translation>
444 fschmid 3511
    </message>
3512
    <message>
769 cbradney 3513
        <source>product</source>
3514
        <translation>производ</translation>
444 fschmid 3515
    </message>
3516
    <message>
769 cbradney 3517
        <source>average</source>
3518
        <translation>средња вредност</translation>
444 fschmid 3519
    </message>
3520
    <message>
769 cbradney 3521
        <source>minimum</source>
3522
        <translation>минимум</translation>
444 fschmid 3523
    </message>
3524
    <message>
769 cbradney 3525
        <source>maximum</source>
3526
        <translation>максимум</translation>
444 fschmid 3527
    </message>
3528
    <message>
769 cbradney 3529
        <source>of the following fields:</source>
3530
        <translation>од следећих поља:</translation>
444 fschmid 3531
    </message>
3532
    <message>
769 cbradney 3533
        <source>Pick...</source>
3534
        <translation>Изабери...</translation>
444 fschmid 3535
    </message>
3536
    <message>
769 cbradney 3537
        <source>Custom calculation script:</source>
3538
        <translation>Произвољна скрипта за израчунавање:</translation>
444 fschmid 3539
    </message>
3540
    <message>
769 cbradney 3541
        <source>Calculate</source>
3542
        <translation>Израчунај</translation>
444 fschmid 3543
    </message>
3544
    <message>
769 cbradney 3545
        <source>OK</source>
3546
        <translation>У реду</translation>
444 fschmid 3547
    </message>
3548
    <message>
769 cbradney 3549
        <source>Cancel</source>
3550
        <translation>Поништи</translation>
444 fschmid 3551
    </message>
3552
    <message>
769 cbradney 3553
        <source>Flag is ignored for PDF 1.3</source>
3554
        <translation>Застава се игнорише за PDF 1.3</translation>
444 fschmid 3555
    </message>
3556
    <message>
769 cbradney 3557
        <source>Enter a comma separated list of fields here</source>
3558
        <translation>Овде унесите листу поља одвојених зарезима</translation>
444 fschmid 3559
    </message>
3560
    <message>
769 cbradney 3561
        <source>You need at least the Icon for Normal to use Icons for Buttons</source>
3562
        <translation>Потребна Вам је барем икона за Нормално да бисте користили икону за дугмад</translation>
444 fschmid 3563
    </message>
3564
    <message>
769 cbradney 3565
        <source>Open</source>
3566
        <translation>Отвори</translation>
444 fschmid 3567
    </message>
3568
    <message>
769 cbradney 3569
        <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
3278 cbradney 3570
        <translation type="obsolete">Слике (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Сви фајлови (*)</translation>
444 fschmid 3571
    </message>
3572
    <message>
769 cbradney 3573
        <source>Example:</source>
3574
        <translation>Пример:</translation>
444 fschmid 3575
    </message>
3576
    <message>
769 cbradney 3577
        <source>Selection Change</source>
3578
        <translation>Промена избора</translation>
444 fschmid 3579
    </message>
3580
    <message>
769 cbradney 3581
        <source>PDF Files (*.pdf);;All Files (*)</source>
3582
        <translation>PDF фајлови (*.pdf);;Сви фајлови (*)</translation>
444 fschmid 3583
    </message>
3278 cbradney 3584
    <message>
3585
        <source>JavaScript</source>
3586
        <translation type="unfinished"></translation>
3587
    </message>
3588
    <message>
3589
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;All Files (*)</source>
3590
        <translation type="unfinished"></translation>
3591
    </message>
769 cbradney 3592
</context>
3593
<context>
444 fschmid 3594
    <name>Annota</name>
3595
    <message>
769 cbradney 3596
        <source>Annotation Properties</source>
3597
        <translation>Својства анотације</translation>
444 fschmid 3598
    </message>
3599
    <message>
769 cbradney 3600
        <source>Text</source>
3601
        <translation>Текст</translation>
444 fschmid 3602
    </message>
3603
    <message>
769 cbradney 3604
        <source>Link</source>
3605
        <translation>Веза</translation>
444 fschmid 3606
    </message>
3607
    <message>
769 cbradney 3608
        <source>External Link</source>
3609
        <translation>Спољашња веза</translation>
444 fschmid 3610
    </message>
3611
    <message>
769 cbradney 3612
        <source>External Web-Link</source>
3613
        <translation>Спољашња веб-веза</translation>
444 fschmid 3614
    </message>
3615
    <message>
769 cbradney 3616
        <source>Destination</source>
3617
        <translation>Одредиште</translation>
444 fschmid 3618
    </message>
3619
    <message>
769 cbradney 3620
        <source> pt</source>
3621
        <translation> тач.</translation>
444 fschmid 3622
    </message>
3623
    <message>
769 cbradney 3624
        <source>Open</source>
3625
        <translation>Отвори</translation>
444 fschmid 3626
    </message>
3627
    <message>
769 cbradney 3628
        <source>PDF-Documents (*.pdf);;All Files (*)</source>
3629
        <translation>PDF-Документи (*.pdf);;Сви фајлови (*)</translation>
444 fschmid 3630
    </message>
3631
    <message>
769 cbradney 3632
        <source>&amp;Type:</source>
3633
        <translation>&amp;Врста:</translation>
444 fschmid 3634
    </message>
3635
    <message>
769 cbradney 3636
        <source>C&amp;hange...</source>
3637
        <translation>И&amp;змени...</translation>
444 fschmid 3638
    </message>
3639
    <message>
769 cbradney 3640
        <source>&amp;Page:</source>
3641
        <translation>&amp;Страница:</translation>
444 fschmid 3642
    </message>
3643
    <message>
769 cbradney 3644
        <source>&amp;X-Pos</source>
3645
        <translation>&amp;X-Поз</translation>
444 fschmid 3646
    </message>
3647
    <message>
769 cbradney 3648
        <source>&amp;Y-Pos:</source>
3649
        <translation>&amp;Y Поз:</translation>
444 fschmid 3650
    </message>
532 cbradney 3651
    <message>
769 cbradney 3652
        <source>&amp;OK</source>
3064 cbradney 3653
        <translation type="obsolete">&amp;У реду</translation>
532 cbradney 3654
    </message>
3655
    <message>
769 cbradney 3656
        <source>&amp;Cancel</source>
3064 cbradney 3657
        <translation type="obsolete">&amp;Откажи</translation>
532 cbradney 3658
    </message>
769 cbradney 3659
</context>
3660
<context>
3064 cbradney 3661
    <name>ApplyMasterPageDialog</name>
3662
    <message>
3663
        <source>Normal</source>
3664
        <translation type="unfinished">Нормално</translation>
3665
    </message>
3666
    <message>
3667
        <source>Apply Master Page</source>
3668
        <translation type="unfinished"></translation>
3669
    </message>
3670
    <message>
3671
        <source>&amp;Master Page:</source>
3672
        <translation type="unfinished"></translation>
3673
    </message>
3674
    <message>
3675
        <source>Apply To</source>
3676
        <translation type="unfinished"></translation>
3677
    </message>
3678
    <message>
3679
        <source>Current &amp;page</source>
3680
        <translation type="unfinished"></translation>
3681
    </message>
3682
    <message>
3683
        <source>Alt+P</source>
3684
        <translation type="unfinished"></translation>
3685
    </message>
3686
    <message>
3687
        <source>&amp;Even pages</source>
3688
        <translation type="unfinished"></translation>
3689
    </message>
3690
    <message>
3691
        <source>Alt+E</source>
3692
        <translation type="unfinished"></translation>
3693
    </message>
3694
    <message>
3695
        <source>O&amp;dd pages</source>
3696
        <translation type="unfinished"></translation>
3697
    </message>
3698
    <message>
3699
        <source>Alt+D</source>
3700
        <translation type="unfinished"></translation>
3701
    </message>
3702
    <message>
3703
        <source>&amp;All pages</source>
3704
        <translation type="unfinished">&amp;Све странице</translation>
3705
    </message>
3706
    <message>
3707
        <source>Alt+A</source>
3708
        <translation type="unfinished"></translation>
3709
    </message>
3710
    <message>
3711
        <source>&amp;Within range</source>
3712
        <translation type="unfinished"></translation>
3713
    </message>
3714
    <message>
3715
        <source>Alt+W</source>
3716
        <translation type="unfinished"></translation>
3717
    </message>
3718
    <message>
3719
        <source>&lt;qt&gt;Apply the selected template to even, odd or all pages within the following range&lt;/qt&gt;</source>
3720
        <translation type="unfinished"></translation>
3721
    </message>
3722
    <message>
3723
        <source>to</source>
3724
        <translation type="unfinished">до</translation>
3725
    </message>
3726
    <message>
3727
        <source>Alt+O</source>
3728
        <translation type="unfinished">Alt+O</translation>
3729
    </message>
3730
    <message>
3731
        <source>Alt+C</source>
3732
        <translation type="unfinished">Alt+C</translation>
3733
    </message>
3734
</context>
3735
<context>
444 fschmid 3736
    <name>ApplyT</name>
3737
    <message>
769 cbradney 3738
        <source>Apply Template</source>
3064 cbradney 3739
        <translation type="obsolete">Примени шаблон</translation>
444 fschmid 3740
    </message>
3741
    <message>
769 cbradney 3742
        <source>&amp;Template:</source>
3064 cbradney 3743
        <translation type="obsolete">Ша&amp;блон:</translation>
444 fschmid 3744
    </message>
3745
    <message>
769 cbradney 3746
        <source>Normal</source>
3064 cbradney 3747
        <translation type="obsolete">Нормално</translation>
444 fschmid 3748
    </message>
3749
    <message>
769 cbradney 3750
        <source>Apply to &amp;Current Page</source>
3064 cbradney 3751
        <translation type="obsolete">Примени на &amp;текућу страницу</translation>
444 fschmid 3752
    </message>
3753
    <message>
769 cbradney 3754
        <source>Apply to all &amp;even Pages</source>
3064 cbradney 3755
        <translation type="obsolete">Примени на све &amp;парне странице</translation>
444 fschmid 3756
    </message>
3757
    <message>
769 cbradney 3758
        <source>Apply to all &amp;odd Pages</source>
3064 cbradney 3759
        <translation type="obsolete">Примени на све &amp;непарне стране</translation>
444 fschmid 3760
    </message>
3761
    <message>
769 cbradney 3762
        <source>Apply from &amp;Page:</source>
3064 cbradney 3763
        <translation type="obsolete">Примени од &amp;стране:</translation>
444 fschmid 3764
    </message>
3765
    <message>
769 cbradney 3766
        <source>To:</source>
3064 cbradney 3767
        <translation type="obsolete">За:</translation>
444 fschmid 3768
    </message>
3769
    <message>
769 cbradney 3770
        <source>&amp;OK</source>
3064 cbradney 3771
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 3772
    </message>
3773
    <message>
769 cbradney 3774
        <source>&amp;Cancel</source>
3064 cbradney 3775
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 3776
    </message>
769 cbradney 3777
</context>
3778
<context>
1525 cbradney 3779
    <name>ArrowChooser</name>
3780
    <message>
3781
        <source>None</source>
3782
        <translation type="unfinished">Ниједан</translation>
3783
    </message>
3784
</context>
3785
<context>
444 fschmid 3786
    <name>Biblio</name>
3787
    <message>
769 cbradney 3788
        <source>Scrapbook</source>
3789
        <translation>Албум</translation>
444 fschmid 3790
    </message>
3791
    <message>
769 cbradney 3792
        <source>&amp;New</source>
3793
        <translation>&amp;Нови</translation>
444 fschmid 3794
    </message>
3795
    <message>
769 cbradney 3796
        <source>&amp;Load...</source>
3797
        <translation>&amp;Учитај...</translation>
444 fschmid 3798
    </message>
3799
    <message>
769 cbradney 3800
        <source>&amp;Save</source>
3801
        <translation>&amp;Сними</translation>
444 fschmid 3802
    </message>
3803
    <message>
769 cbradney 3804
        <source>Save &amp;As...</source>
3805
        <translation>Сними &amp;као...</translation>
444 fschmid 3806
    </message>
3807
    <message>
769 cbradney 3808
        <source>&amp;Close</source>
3809
        <translation>&amp;Затвори</translation>
444 fschmid 3810
    </message>
3811
    <message>
769 cbradney 3812
        <source>&amp;Small</source>
3813
        <translation>&amp;Мала</translation>
444 fschmid 3814
    </message>
3815
    <message>
769 cbradney 3816
        <source>&amp;Medium</source>
3817
        <translation>&amp;Средње</translation>
444 fschmid 3818
    </message>
3819
    <message>
769 cbradney 3820
        <source>&amp;Large</source>
3821
        <translation>&amp;Велики</translation>
444 fschmid 3822
    </message>
3823
    <message>
769 cbradney 3824
        <source>&amp;File</source>
3825
        <translation>&amp;Фајл</translation>
444 fschmid 3826
    </message>
3827
    <message>
769 cbradney 3828
        <source>&amp;Preview</source>
3829
        <translation>&amp;Преглед</translation>
444 fschmid 3830
    </message>
3831
    <message>
769 cbradney 3832
        <source>Scrapbooks (*.scs);;All Files (*)</source>
3833
        <translation>Албуми (*.scs);;Сви фајлови (*)</translation>
444 fschmid 3834
    </message>
3835
    <message>
769 cbradney 3836
        <source>Rename</source>
3837
        <translation>Преименуј</translation>
444 fschmid 3838
    </message>
3839
    <message>
769 cbradney 3840
        <source>Delete</source>
3841
        <translation>Обриши</translation>
444 fschmid 3842
    </message>
3843
    <message>
769 cbradney 3844
        <source>Warning</source>
3824 cbradney 3845
        <translation type="obsolete">Упозорење</translation>
444 fschmid 3846
    </message>
3847
    <message>
769 cbradney 3848
        <source>Name &quot;%1&quot; isn&apos;t unique.
444 fschmid 3849
Please choose another.</source>
3824 cbradney 3850
        <translation type="obsolete">Име „%1“ није јединствено.
444 fschmid 3851
Молим Вас изаберите друго.</translation>
3852
    </message>
3853
    <message>
769 cbradney 3854
        <source>OK</source>
3064 cbradney 3855
        <translation type="obsolete">У реду</translation>
444 fschmid 3856
    </message>
3857
    <message>
769 cbradney 3858
        <source>Object</source>
3859
        <translation>Објекат</translation>
444 fschmid 3860
    </message>
3861
    <message>
769 cbradney 3862
        <source>&amp;Name:</source>
3863
        <translation>&amp;Име:</translation>
444 fschmid 3864
    </message>
3865
    <message>
769 cbradney 3866
        <source>New Entry</source>
3867
        <translation>Нов унос</translation>
444 fschmid 3868
    </message>
3824 cbradney 3869
    <message>
3870
        <source>Name &quot;%1&quot; is not unique.
3871
Please choose another.</source>
3872
        <translation type="unfinished"></translation>
3873
    </message>
769 cbradney 3874
</context>
3875
<context>
444 fschmid 3876
    <name>BookMView</name>
3877
    <message>
769 cbradney 3878
        <source>Bookmarks</source>
3879
        <translation>Маркери</translation>
444 fschmid 3880
    </message>
3881
    <message>
769 cbradney 3882
        <source>Move Bookmark</source>
3883
        <translation>Помери маркер</translation>
444 fschmid 3884
    </messag