Subversion Repositories Scribus

Rev

Rev 3824 | Rev 4310 | 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>
4141 cbradney 1579
    <message>
1580
        <source>closeMasterPage()
1581
 
1582
Closes the currently active master page, if any, and returns editing
1583
to normal. Begin editing with editMasterPage().
1584
</source>
1585
        <translation type="unfinished"></translation>
1586
    </message>
1587
    <message>
1588
        <source>masterPageNames()
1589
 
1590
Returns a list of the names of all master pages in the document.
1591
</source>
1592
        <translation type="unfinished"></translation>
1593
    </message>
1594
    <message>
1595
        <source>editMasterPage(pageName)
1596
 
1597
Enables master page editing and opens the named master page
1598
for editing. Finish editing with closeMasterPage().
1599
</source>
1600
        <translation type="unfinished"></translation>
1601
    </message>
1602
    <message>
1603
        <source>createMasterPage(pageName)
1604
 
1605
Creates a new master page named pageName and opens it for
1606
editing.
1607
</source>
1608
        <translation type="unfinished"></translation>
1609
    </message>
1610
    <message>
1611
        <source>deleteMasterPage(pageName)
1612
 
1613
Delete the named master page.
1614
</source>
1615
        <translation type="unfinished"></translation>
1616
    </message>
1617
    <message>
1618
        <source>zoomDocument(double)
1619
 
1620
Zoom the document in main GUI window. Actions have whole number
1621
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
1622
</source>
1623
        <translation type="unfinished"></translation>
1624
    </message>
1135 cbradney 1625
</context>
1626
<context>
444 fschmid 1627
    <name>About</name>
1628
    <message>
1135 cbradney 1629
        <source>About Scribus%1%2</source>
1630
        <translation type="obsolete">О Scribus-у%1%2</translation>
1631
    </message>
1632
    <message>
769 cbradney 1633
        <source>%1. %2 %3 </source>
3064 cbradney 1634
        <translation type="obsolete">%1. %2 %3 </translation>
444 fschmid 1635
    </message>
1636
    <message>
769 cbradney 1637
        <source>Scribus Version %1
444 fschmid 1638
%2 %3</source>
3064 cbradney 1639
        <translation type="obsolete">Scribus верзија %1
444 fschmid 1640
%2 %3</translation>
1641
    </message>
1642
    <message>
769 cbradney 1643
        <source>Build-ID:</source>
3824 cbradney 1644
        <translation type="obsolete">ID градње:</translation>
444 fschmid 1645
    </message>
1646
    <message>
769 cbradney 1647
        <source>&amp;About</source>
1648
        <translation>О прогр&amp;аму</translation>
444 fschmid 1649
    </message>
1650
    <message>
769 cbradney 1651
        <source>Development Team:</source>
1652
        <translation>Развојни тим:</translation>
444 fschmid 1653
    </message>
1654
    <message>
769 cbradney 1655
        <source>Contributions from:</source>
1656
        <translation>Прилози од стране:</translation>
444 fschmid 1657
    </message>
1658
    <message>
769 cbradney 1659
        <source>Windows port:</source>
3064 cbradney 1660
        <translation type="obsolete">Порт за windows:</translation>
444 fschmid 1661
    </message>
1662
    <message>
769 cbradney 1663
        <source>Official Documentation:</source>
1664
        <translation>Званична документација:</translation>
444 fschmid 1665
    </message>
1666
    <message>
769 cbradney 1667
        <source>Other Documentation:</source>
1668
        <translation>Остала документација:</translation>
444 fschmid 1669
    </message>
1670
    <message>
769 cbradney 1671
        <source>A&amp;uthors</source>
1672
        <translation>А&amp;утори</translation>
444 fschmid 1673
    </message>
1674
    <message>
769 cbradney 1675
        <source>Basque:</source>
3064 cbradney 1676
        <translation type="obsolete">Баскијски:</translation>
444 fschmid 1677
    </message>
1678
    <message>
769 cbradney 1679
        <source>Brazilian:</source>
3064 cbradney 1680
        <translation type="obsolete">Бразилски:</translation>
444 fschmid 1681
    </message>
1682
    <message>
769 cbradney 1683
        <source>Bulgarian:</source>
3064 cbradney 1684
        <translation type="obsolete">Бугарски:</translation>
444 fschmid 1685
    </message>
1686
    <message>
769 cbradney 1687
        <source>Catalan:</source>
3064 cbradney 1688
        <translation type="obsolete">Каталански:</translation>
444 fschmid 1689
    </message>
1690
    <message>
769 cbradney 1691
        <source>Czech:</source>
3064 cbradney 1692
        <translation type="obsolete">Чешки:</translation>
444 fschmid 1693
    </message>
1694
    <message>
769 cbradney 1695
        <source>Danish:</source>
3064 cbradney 1696
        <translation type="obsolete">Дански:</translation>
444 fschmid 1697
    </message>
1698
    <message>
769 cbradney 1699
        <source>English (British):</source>
3064 cbradney 1700
        <translation type="obsolete">Енглески (Британски):</translation>
444 fschmid 1701
    </message>
1702
    <message>
769 cbradney 1703
        <source>Esperanto:</source>
3064 cbradney 1704
        <translation type="obsolete">Есперанто:</translation>
444 fschmid 1705
    </message>
1706
    <message>
769 cbradney 1707
        <source>Finnish:</source>
3064 cbradney 1708
        <translation type="obsolete">Фински:</translation>
444 fschmid 1709
    </message>
1710
    <message>
769 cbradney 1711
        <source>French:</source>
3064 cbradney 1712
        <translation type="obsolete">Француски:</translation>
444 fschmid 1713
    </message>
1714
    <message>
769 cbradney 1715
        <source>Galician:</source>
3064 cbradney 1716
        <translation type="obsolete">Галицијски:</translation>
444 fschmid 1717
    </message>
1718
    <message>
769 cbradney 1719
        <source>German:</source>
3064 cbradney 1720
        <translation type="obsolete">Немачки:</translation>
444 fschmid 1721
    </message>
1722
    <message>
769 cbradney 1723
        <source>Hungarian:</source>
3064 cbradney 1724
        <translation type="obsolete">Мађарски:</translation>
444 fschmid 1725
    </message>
1726
    <message>
769 cbradney 1727
        <source>Italian:</source>
3064 cbradney 1728
        <translation type="obsolete">Италијански:</translation>
444 fschmid 1729
    </message>
1730
    <message>
769 cbradney 1731
        <source>Korean:</source>
3064 cbradney 1732
        <translation type="obsolete">Корејски:</translation>
444 fschmid 1733
    </message>
1734
    <message>
769 cbradney 1735
        <source>Lithuanian:</source>
3064 cbradney 1736
        <translation type="obsolete">Литвански:</translation>
444 fschmid 1737
    </message>
1738
    <message>
769 cbradney 1739
        <source>Norwegian:</source>
3064 cbradney 1740
        <translation type="obsolete">Норвешки:</translation>
444 fschmid 1741
    </message>
1742
    <message>
769 cbradney 1743
        <source>Polish:</source>
3064 cbradney 1744
        <translation type="obsolete">Пољски:</translation>
444 fschmid 1745
    </message>
1746
    <message>
769 cbradney 1747
        <source>Russian:</source>
3064 cbradney 1748
        <translation type="obsolete">Руски:</translation>
444 fschmid 1749
    </message>
1750
    <message>
769 cbradney 1751
        <source>Slovak:</source>
3064 cbradney 1752
        <translation type="obsolete">Словачки:</translation>
444 fschmid 1753
    </message>
1754
    <message>
769 cbradney 1755
        <source>Slovenian:</source>
3064 cbradney 1756
        <translation type="obsolete">Словеначки:</translation>
444 fschmid 1757
    </message>
1758
    <message>
769 cbradney 1759
        <source>Spanish:</source>
3064 cbradney 1760
        <translation type="obsolete">Шпански:</translation>
444 fschmid 1761
    </message>
1762
    <message>
769 cbradney 1763
        <source>Swedish:</source>
3064 cbradney 1764
        <translation type="obsolete">Шведски:</translation>
444 fschmid 1765
    </message>
1766
    <message>
769 cbradney 1767
        <source>Turkish:</source>
3064 cbradney 1768
        <translation type="obsolete">Турски:</translation>
444 fschmid 1769
    </message>
1770
    <message>
769 cbradney 1771
        <source>Ukrainian:</source>
3064 cbradney 1772
        <translation type="obsolete">Украјински:</translation>
444 fschmid 1773
    </message>
1774
    <message>
769 cbradney 1775
        <source>Welsh:</source>
3064 cbradney 1776
        <translation type="obsolete">Велшки:</translation>
444 fschmid 1777
    </message>
1778
    <message>
769 cbradney 1779
        <source>&amp;Translations</source>
1780
        <translation>&amp;Преводи</translation>
444 fschmid 1781
    </message>
1782
    <message>
769 cbradney 1783
        <source>Homepage</source>
1784
        <translation>Почетна страница</translation>
444 fschmid 1785
    </message>
1786
    <message>
769 cbradney 1787
        <source>Online Reference</source>
1788
        <translation>Веб референца</translation>
444 fschmid 1789
    </message>
1790
    <message>
769 cbradney 1791
        <source>Bugs and Feature Requests</source>
1792
        <translation>Грешке и захтеви за нове могућности</translation>
444 fschmid 1793
    </message>
1794
    <message>
769 cbradney 1795
        <source>Mailing List</source>
1796
        <translation>Дискусиона листа</translation>
444 fschmid 1797
    </message>
1798
    <message>
769 cbradney 1799
        <source>&amp;Online</source>
1800
        <translation>На &amp;вези</translation>
444 fschmid 1801
    </message>
1802
    <message>
769 cbradney 1803
        <source>&amp;Close</source>
1804
        <translation>&amp;Затвори</translation>
444 fschmid 1805
    </message>
1806
    <message>
1135 cbradney 1807
        <source>This panel shows the version, build date and
1808
 compiled in library support in Scribus
1809
The C-C-T equates to C=CUPS C=littlecms T=TIFF support.
1810
Missing library support is indicated by a *</source>
1811
        <translation type="obsolete">Овај панел приказује верзију, датум прављења и
1812
 укомпајлирану подршку за библиотеке у Scribus-у
1813
C-C-T означава: C=CUPS C=littlecms T=TIFF подршку.
1814
Подршка за библиотеке које недостају је обележена *</translation>
1815
    </message>
1816
    <message>
769 cbradney 1817
        <source>Official Translations and Translators:</source>
1818
        <translation>Званични преводи и преводиоци:</translation>
454 fschmid 1819
    </message>
1820
    <message>
769 cbradney 1821
        <source>Serbian:</source>
3064 cbradney 1822
        <translation type="obsolete">Српски:</translation>
454 fschmid 1823
    </message>
1824
    <message>
769 cbradney 1825
        <source>Previous Translation Contributors:</source>
1826
        <translation>Они који су претходно допринели превођењу:</translation>
454 fschmid 1827
    </message>
769 cbradney 1828
    <message>
1829
        <source>About Scribus %1</source>
1830
        <translation type="unfinished"></translation>
1831
    </message>
776 fschmid 1832
    <message>
3824 cbradney 1833
        <source>Mac OSX Aqua Port:</source>
1525 cbradney 1834
        <translation type="unfinished"></translation>
1835
    </message>
1836
    <message>
3824 cbradney 1837
        <source>Windows Port:</source>
1525 cbradney 1838
        <translation type="unfinished"></translation>
1839
    </message>
1840
    <message>
3824 cbradney 1841
        <source>Wiki</source>
1525 cbradney 1842
        <translation type="unfinished"></translation>
1843
    </message>
1844
    <message>
3824 cbradney 1845
        <source>%1 %2 %3</source>
3064 cbradney 1846
        <translation type="unfinished"></translation>
1847
    </message>
1848
    <message>
3824 cbradney 1849
        <source>%3-%2-%1 %4 %5</source>
3064 cbradney 1850
        <translation type="unfinished"></translation>
1851
    </message>
1852
    <message>
3824 cbradney 1853
        <source>Using Ghostscript version %1</source>
3064 cbradney 1854
        <translation type="unfinished"></translation>
1855
    </message>
1856
    <message>
3824 cbradney 1857
        <source>No Ghostscript version available</source>
3064 cbradney 1858
        <translation type="unfinished"></translation>
1859
    </message>
3824 cbradney 1860
    <message>
1861
        <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>
1862
        <translation type="unfinished"></translation>
1863
    </message>
1864
    <message>
1865
        <source>Build ID:</source>
1866
        <translation type="unfinished"></translation>
1867
    </message>
1868
    <message>
1869
        <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>
1870
        <translation type="unfinished"></translation>
1871
    </message>
4141 cbradney 1872
    <message>
1873
        <source>December</source>
1874
        <translation type="unfinished"></translation>
1875
    </message>
769 cbradney 1876
</context>
1877
<context>
3278 cbradney 1878
    <name>AboutPlugins</name>
1879
    <message>
1880
        <source>Yes</source>
1881
        <translation type="unfinished">Да</translation>
1882
    </message>
1883
    <message>
1884
        <source>No</source>
1885
        <translation type="unfinished">Не</translation>
1886
    </message>
1887
</context>
1888
<context>
1889
    <name>AboutPluginsBase</name>
1890
    <message>
1891
        <source>Scribus: About Plug-ins</source>
1892
        <translation type="unfinished"></translation>
1893
    </message>
1894
    <message>
1895
        <source>File Name:</source>
1896
        <translation type="unfinished"></translation>
1897
    </message>
1898
    <message>
1899
        <source>Version:</source>
1900
        <translation type="unfinished"></translation>
1901
    </message>
1902
    <message>
1903
        <source>Enabled:</source>
1904
        <translation type="unfinished"></translation>
1905
    </message>
1906
    <message>
1907
        <source>Release Date:</source>
1908
        <translation type="unfinished"></translation>
1909
    </message>
1910
    <message>
1911
        <source>Copyright:</source>
1912
        <translation type="unfinished"></translation>
1913
    </message>
1914
    <message>
1915
        <source>Author(s):</source>
1916
        <translation type="unfinished"></translation>
1917
    </message>
1918
    <message>
1919
        <source>Description:</source>
1920
        <translation type="unfinished"></translation>
1921
    </message>
1922
    <message>
1923
        <source>License:</source>
1924
        <translation type="unfinished"></translation>
1925
    </message>
1926
    <message>
1927
        <source>&amp;Close</source>
1928
        <translation type="unfinished">&amp;Затвори</translation>
1929
    </message>
1930
    <message>
1931
        <source>Alt+C</source>
1932
        <translation type="unfinished">Alt+C</translation>
1933
    </message>
1934
</context>
1935
<context>
3064 cbradney 1936
    <name>ActionManager</name>
1937
    <message>
1938
        <source>&amp;New</source>
1939
        <translation type="unfinished">&amp;Нови</translation>
1940
    </message>
1941
    <message>
1942
        <source>&amp;Open...</source>
1943
        <translation type="unfinished">&amp;Отвори...</translation>
1944
    </message>
1945
    <message>
1946
        <source>&amp;Close</source>
1947
        <translation type="unfinished">&amp;Затвори</translation>
1948
    </message>
1949
    <message>
1950
        <source>&amp;Save</source>
1951
        <translation type="unfinished">&amp;Сними</translation>
1952
    </message>
1953
    <message>
1954
        <source>Save &amp;As...</source>
1955
        <translation type="unfinished">Сними &amp;као...</translation>
1956
    </message>
1957
    <message>
1958
        <source>Re&amp;vert to Saved</source>
1959
        <translation type="unfinished">Вр&amp;ати на снимљено</translation>
1960
    </message>
1961
    <message>
1962
        <source>Collect for O&amp;utput...</source>
1963
        <translation type="unfinished">Сакупи за и&amp;злаз...</translation>
1964
    </message>
1965
    <message>
1966
        <source>Get Text...</source>
1967
        <translation type="unfinished">Добави текст...</translation>
1968
    </message>
1969
    <message>
1970
        <source>Append &amp;Text...</source>
1971
        <translation type="unfinished">Примени &amp;текст...</translation>
1972
    </message>
1973
    <message>
1974
        <source>Get Image...</source>
1975
        <translation type="unfinished"></translation>
1976
    </message>
1977
    <message>
1978
        <source>Save &amp;Text...</source>
1979
        <translation type="unfinished">Сними &amp;текст...</translation>
1980
    </message>
1981
    <message>
1982
        <source>Save Page as &amp;EPS...</source>
1983
        <translation type="unfinished">Сними страницу као &amp;EPS...</translation>
1984
    </message>
1985
    <message>
1986
        <source>Save as P&amp;DF...</source>
1987
        <translation type="unfinished">Сними као P&amp;DF...</translation>
1988
    </message>
1989
    <message>
1990
        <source>Document &amp;Setup...</source>
1991
        <translation type="unfinished">&amp;Поставке документа...</translation>
1992
    </message>
1993
    <message>
1994
        <source>&amp;Print...</source>
1995
        <translation type="unfinished">Ш&amp;тампај...</translation>
1996
    </message>
1997
    <message>
1998
        <source>&amp;Quit</source>
1999
        <translation type="unfinished">&amp;Заврши</translation>
2000
    </message>
2001
    <message>
2002
        <source>&amp;Undo</source>
2003
        <translation type="unfinished">&amp;Опозови</translation>
2004
    </message>
2005
    <message>
2006
        <source>&amp;Redo</source>
2007
        <translation type="unfinished">Поно&amp;ви</translation>
2008
    </message>
2009
    <message>
2010
        <source>&amp;Item Action Mode</source>
2011
        <translation type="unfinished"></translation>
2012
    </message>
2013
    <message>
2014
        <source>Cu&amp;t</source>
2015
        <translation type="unfinished">&amp;Исеци</translation>
2016
    </message>
2017
    <message>
2018
        <source>&amp;Copy</source>
2019
        <translation type="unfinished">&amp;Копирај</translation>
2020
    </message>
2021
    <message>
2022
        <source>&amp;Paste</source>
2023
        <translation type="unfinished">&amp;Пренеси</translation>
2024
    </message>
2025
    <message>
2026
        <source>C&amp;lear Contents</source>
2027
        <translation type="unfinished">О&amp;чисти садржај</translation>
2028
    </message>
2029
    <message>
2030
        <source>Select &amp;All</source>
2031
        <translation type="unfinished">Изабери &amp;све</translation>
2032
    </message>
2033
    <message>
2034
        <source>&amp;Deselect All</source>
2035
        <translation type="unfinished"></translation>
2036
    </message>
2037
    <message>
2038
        <source>&amp;Search/Replace...</source>
2039
        <translation type="unfinished">&amp;Тражи/Замени...</translation>
2040
    </message>
2041
    <message>
2042
        <source>Edit Image...</source>
2043
        <translation type="unfinished"></translation>
2044
    </message>
2045
    <message>
2046
        <source>C&amp;olors...</source>
2047
        <translation type="unfinished">Б&amp;оје...</translation>
2048
    </message>
2049
    <message>
2050
        <source>&amp;Paragraph Styles...</source>
2051
        <translation type="unfinished">Стилови &amp;пасуса....</translation>
2052
    </message>
2053
    <message>
2054
        <source>&amp;Line Styles...</source>
2055
        <translation type="unfinished">Стилови &amp;линија...</translation>
2056
    </message>
2057
    <message>
2058
        <source>&amp;Master Pages...</source>
2059
        <translation type="unfinished"></translation>
2060
    </message>
2061
    <message>
2062
        <source>&amp;Javascripts...</source>
3278 cbradney 2063
        <translation type="obsolete">&amp;Javascript-ови...</translation>
3064 cbradney 2064
    </message>
2065
    <message>
2066
        <source>P&amp;references...</source>
2067
        <translation type="unfinished">П&amp;одешавања...</translation>
2068
    </message>
2069
    <message>
2070
        <source>%1 pt</source>
2071
        <translation type="unfinished"></translation>
2072
    </message>
2073
    <message>
2074
        <source>&amp;Other...</source>
2075
        <translation type="unfinished">&amp;Остало...</translation>
2076
    </message>
2077
    <message>
2078
        <source>&amp;Left</source>
2079
        <translation type="unfinished">&amp;Лево</translation>
2080
    </message>
2081
    <message>
2082
        <source>&amp;Center</source>
2083
        <translation type="unfinished">&amp;Средина</translation>
2084
    </message>
2085
    <message>
2086
        <source>&amp;Right</source>
2087
        <translation type="unfinished">&amp;Десно</translation>
2088
    </message>
2089
    <message>
2090
        <source>&amp;Block</source>
2091
        <translation type="unfinished">&amp;Блокирај</translation>
2092
    </message>
2093
    <message>
2094
        <source>&amp;Forced</source>
2095
        <translation type="unfinished">&amp;Приморано</translation>
2096
    </message>
2097
    <message>
2098
        <source>&amp;%1 %</source>
2099
        <translation type="unfinished"></translation>
2100
    </message>
2101
    <message>
2102
        <source>&amp;Normal</source>
2103
        <translation type="unfinished"></translation>
2104
    </message>
2105
    <message>
2106
        <source>&amp;Underline</source>
2107
        <translation type="unfinished">&amp;Подвуци</translation>
2108
    </message>
2109
    <message>
2110
        <source>Underline &amp;Words</source>
2111
        <translation type="unfinished"></translation>
2112
    </message>
2113
    <message>
2114
        <source>&amp;Strike Through</source>
2115
        <translation type="unfinished"></translation>
2116
    </message>
2117
    <message>
2118
        <source>&amp;All Caps</source>
2119
        <translation type="unfinished"></translation>
2120
    </message>
2121
    <message>
2122
        <source>Small &amp;Caps</source>
2123
        <translation type="unfinished"></translation>
2124
    </message>
2125
    <message>
2126
        <source>Su&amp;perscript</source>
2127
        <translation type="unfinished"></translation>
2128
    </message>
2129
    <message>
2130
        <source>Su&amp;bscript</source>
2131
        <translation type="unfinished"></translation>
2132
    </message>
2133
    <message>
2134
        <source>&amp;Outline</source>
2135
        <translation type="unfinished">&amp;Контура</translation>
2136
    </message>
2137
    <message>
2138
        <source>S&amp;hadow</source>
2139
        <translation type="unfinished"></translation>
2140
    </message>
2141
    <message>
2142
        <source>&amp;Image Effects</source>
2143
        <translation type="unfinished"></translation>
2144
    </message>
2145
    <message>
2146
        <source>&amp;Tabulators...</source>
2147
        <translation type="unfinished">&amp;Табулатори...</translation>
2148
    </message>
2149
    <message>
2150
        <source>D&amp;uplicate</source>
2151
        <translation type="unfinished"></translation>
2152
    </message>
2153
    <message>
2154
        <source>&amp;Multiple Duplicate</source>
2155
        <translation type="unfinished">&amp;Умножено дуплирање</translation>
2156
    </message>
2157
    <message>
2158
        <source>&amp;Delete</source>
2159
        <translation type="unfinished">&amp;Обриши</translation>
2160
    </message>
2161
    <message>
2162
        <source>&amp;Group</source>
2163
        <translation type="unfinished">&amp;Група</translation>
2164
    </message>
2165
    <message>
2166
        <source>&amp;Ungroup</source>
2167
        <translation type="unfinished">&amp;Растури групу</translation>
2168
    </message>
2169
    <message>
2170
        <source>Is &amp;Locked</source>
2171
        <translation type="unfinished"></translation>
2172
    </message>
2173
    <message>
2174
        <source>Si&amp;ze is Locked</source>
2175
        <translation type="unfinished"></translation>
2176
    </message>
2177
    <message>
2178
        <source>Lower to &amp;Bottom</source>
2179
        <translation type="unfinished"></translation>
2180
    </message>
2181
    <message>
2182
        <source>Raise to &amp;Top</source>
2183
        <translation type="unfinished"></translation>
2184
    </message>
2185
    <message>
2186
        <source>&amp;Lower</source>
2187
        <translation type="unfinished">&amp;Спусти</translation>
2188
    </message>
2189
    <message>
2190
        <source>&amp;Raise</source>
2191
        <translation type="unfinished">&amp;Подигни</translation>
2192
    </message>
2193
    <message>
2194
        <source>Send to S&amp;crapbook</source>
2195
        <translation type="unfinished">Пошаљи у св&amp;еску</translation>
2196
    </message>
2197
    <message>
2198
        <source>&amp;Attributes...</source>
2199
        <translation type="unfinished"></translation>
2200
    </message>
2201
    <message>
2202
        <source>I&amp;mage Visible</source>
2203
        <translation type="unfinished">С&amp;лика видљива</translation>
2204
    </message>
2205
    <message>
2206
        <source>&amp;Update Image</source>
2207
        <translation type="unfinished"></translation>
2208
    </message>
2209
    <message>
2210
        <source>Adjust Frame to Image</source>
2211
        <translation type="unfinished"></translation>
2212
    </message>
2213
    <message>
2214
        <source>Extended Image Properties</source>
2215
        <translation type="unfinished"></translation>
2216
    </message>
2217
    <message>
2218
        <source>&amp;Low Resolution</source>
2219
        <translation type="unfinished"></translation>
2220
    </message>
2221
    <message>
2222
        <source>&amp;Normal Resolution</source>
2223
        <translation type="unfinished"></translation>
2224
    </message>
2225
    <message>
2226
        <source>&amp;Full Resolution</source>
2227
        <translation type="unfinished"></translation>
2228
    </message>
2229
    <message>
2230
        <source>Is PDF &amp;Bookmark</source>
2231
        <translation type="unfinished">Је PDF &amp;маркер</translation>
2232
    </message>
2233
    <message>
2234
        <source>Is PDF A&amp;nnotation</source>
2235
        <translation type="unfinished">Је PDF ан&amp;отација</translation>
2236
    </message>
2237
    <message>
2238
        <source>Annotation P&amp;roperties</source>
2239
        <translation type="unfinished">С&amp;војства анотације</translation>
2240
    </message>
2241
    <message>
2242
        <source>Field P&amp;roperties</source>
2243
        <translation type="unfinished">С&amp;војства поља</translation>
2244
    </message>
2245
    <message>
2246
        <source>&amp;Edit Shape...</source>
2247
        <translation type="unfinished">&amp;Уређивање облика...</translation>
2248
    </message>
2249
    <message>
2250
        <source>&amp;Attach Text to Path</source>
2251
        <translation type="unfinished">&amp;Прикачи текст уз путању</translation>
2252
    </message>
2253
    <message>
2254
        <source>&amp;Detach Text from Path</source>
2255
        <translation type="unfinished">&amp;Откачи текст од путање</translation>
2256
    </message>
2257
    <message>
2258
        <source>&amp;Combine Polygons</source>
2259
        <translation type="unfinished">&amp;Комбинуј полигоне</translation>
2260
    </message>
2261
    <message>
2262
        <source>Split &amp;Polygons</source>
2263
        <translation type="unfinished">Раздвоји &amp;полигоне</translation>
2264
    </message>
2265
    <message>
2266
        <source>&amp;Bezier Curve</source>
2267
        <translation type="unfinished">&amp;Bezier крива</translation>
2268
    </message>
2269
    <message>
2270
        <source>&amp;Image Frame</source>
2271
        <translation type="unfinished"></translation>
2272
    </message>
2273
    <message>
2274
        <source>&amp;Outlines</source>
2275
        <translation type="unfinished">&amp;Оквирне линије</translation>
2276
    </message>
2277
    <message>
2278
        <source>&amp;Polygon</source>
2279
        <translation type="unfinished"></translation>
2280
    </message>
2281
    <message>
2282
        <source>&amp;Text Frame</source>
2283
        <translation type="unfinished">&amp;Текстуални оквир</translation>
2284
    </message>
2285
    <message>
2286
        <source>&amp;Glyph...</source>
2287
        <translation type="unfinished"></translation>
2288
    </message>
2289
    <message>
2290
        <source>Sample Text</source>
2291
        <translation type="unfinished"></translation>
2292
    </message>
2293
    <message>
2294
        <source>&amp;Insert...</source>
2295
        <translation type="unfinished">Уметн&amp;и...</translation>
2296
    </message>
2297
    <message>
2298
        <source>Im&amp;port...</source>
2299
        <translation type="unfinished"></translation>
2300
    </message>
2301
    <message>
2302
        <source>&amp;Delete...</source>
2303
        <translation type="unfinished">&amp;Обриши...</translation>
2304
    </message>
2305
    <message>
2306
        <source>&amp;Copy...</source>
2307
        <translation type="unfinished"></translation>
2308
    </message>
2309
    <message>
2310
        <source>&amp;Move...</source>
2311
        <translation type="unfinished">&amp;Помери...</translation>
2312
    </message>
2313
    <message>
2314
        <source>&amp;Apply Master Page...</source>
2315
        <translation type="unfinished"></translation>
2316
    </message>
2317
    <message>
2318
        <source>Manage &amp;Guides...</source>
2319
        <translation type="unfinished">Управљање &amp;водиљама...</translation>
2320
    </message>
2321
    <message>
2322
        <source>Manage Page Properties...</source>
2323
        <translation type="unfinished"></translation>
2324
    </message>
2325
    <message>
2326
        <source>&amp;Fit in window</source>
2327
        <translation type="unfinished"></translation>
2328
    </message>
2329
    <message>
2330
        <source>&amp;50%</source>
2331
        <translation type="unfinished">&amp;50%</translation>
2332
    </message>
2333
    <message>
2334
        <source>&amp;75%</source>
2335
        <translation type="unfinished">&amp;75%</translation>
2336
    </message>
2337
    <message>
2338
        <source>&amp;100%</source>
2339
        <translation type="unfinished">&amp;100%</translation>
2340
    </message>
2341
    <message>
2342
        <source>&amp;200%</source>
2343
        <translation type="unfinished">&amp;200%</translation>
2344
    </message>
2345
    <message>
2346
        <source>&amp;Thumbnails</source>
2347
        <translation type="unfinished">&amp;Сличице</translation>
2348
    </message>
2349
    <message>
2350
        <source>Show &amp;Margins</source>
2351
        <translation type="unfinished">Прикажи &amp;маргине</translation>
2352
    </message>
2353
    <message>
2354
        <source>Show &amp;Frames</source>
2355
        <translation type="unfinished">Прикажи &amp;оквире</translation>
2356
    </message>
2357
    <message>
2358
        <source>Show &amp;Images</source>
2359
        <translation type="unfinished">Прикажи &amp;слике</translation>
2360
    </message>
2361
    <message>
2362
        <source>Show &amp;Grid</source>
2363
        <translation type="unfinished">Прикажи &amp;мрежу</translation>
2364
    </message>
2365
    <message>
2366
        <source>Show G&amp;uides</source>
2367
        <translation type="unfinished">Прикажи &amp;водиље</translation>
2368
    </message>
2369
    <message>
2370
        <source>Show &amp;Baseline Grid</source>
2371
        <translation type="unfinished">Прикажи мрежу &amp;основне линије</translation>
2372
    </message>
2373
    <message>
2374
        <source>Show &amp;Text Chain</source>
2375
        <translation type="unfinished"></translation>
2376
    </message>
2377
    <message>
2378
        <source>Show Control Characters</source>
2379
        <translation type="unfinished"></translation>
2380
    </message>
2381
    <message>
2382
        <source>Rulers relative to Page</source>
2383
        <translation type="unfinished"></translation>
2384
    </message>
2385
    <message>
2386
        <source>Sn&amp;ap to Grid</source>
2387
        <translation type="unfinished">Пре&amp;баци на мрежу</translation>
2388
    </message>
2389
    <message>
2390
        <source>Sna&amp;p to Guides</source>
2391
        <translation type="unfinished">Преб&amp;аци на водиље</translation>
2392
    </message>
2393
    <message>
2394
        <source>&amp;Properties</source>
2395
        <translation type="unfinished">&amp;Својства</translation>
2396
    </message>
2397
    <message>
2398
        <source>&amp;Scrapbook</source>
2399
        <translation type="unfinished">&amp;Албум</translation>
2400
    </message>
2401
    <message>
2402
        <source>&amp;Layers</source>
2403
        <translation type="unfinished">&amp;Слојеви</translation>
2404
    </message>
2405
    <message>
2406
        <source>&amp;Arrange Pages</source>
2407
        <translation type="unfinished"></translation>
2408
    </message>
2409
    <message>
2410
        <source>&amp;Bookmarks</source>
2411
        <translation type="unfinished">&amp;Маркери</translation>
2412
    </message>
2413
    <message>
2414
        <source>&amp;Measurements</source>
2415
        <translation type="unfinished"></translation>
2416
    </message>
2417
    <message>
2418
        <source>Action &amp;History</source>
2419
        <translation type="unfinished"></translation>
2420
    </message>
2421
    <message>
2422
        <source>Preflight &amp;Verifier</source>
2423
        <translation type="unfinished"></translation>
2424
    </message>
2425
    <message>
2426
        <source>&amp;Align and Distribute</source>
2427
        <translation type="unfinished"></translation>
2428
    </message>
2429
    <message>
2430
        <source>&amp;Tools</source>
2431
        <translation type="unfinished">&amp;Алати</translation>
2432
    </message>
2433
    <message>
2434
        <source>P&amp;DF Tools</source>
2435
        <translation type="unfinished">P&amp;DF алати</translation>
2436
    </message>
2437
    <message>
2438
        <source>Select Item</source>
2439
        <translation type="unfinished"></translation>
2440
    </message>
2441
    <message>
2442
        <source>T&amp;able</source>
2443
        <translation type="unfinished"></translation>
2444
    </message>
2445
    <message>
2446
        <source>&amp;Shape</source>
2447
        <translation type="unfinished">&amp;Облик</translation>
2448
    </message>
2449
    <message>
2450
        <source>&amp;Line</source>
2451
        <translation type="unfinished">&amp;Линија</translation>
2452
    </message>
2453
    <message>
2454
        <source>&amp;Freehand Line</source>
2455
        <translation type="unfinished"></translation>
2456
    </message>
2457
    <message>
2458
        <source>Rotate Item</source>
2459
        <translation type="unfinished">Ротирај ставку</translation>
2460
    </message>
2461
    <message>
2462
        <source>Zoom in or out</source>
2463
        <translation type="unfinished">Увеличај или умањи</translation>
2464
    </message>
2465
    <message>
2466
        <source>Zoom in</source>
2467
        <translation type="unfinished"></translation>
2468
    </message>
2469
    <message>
2470
        <source>Zoom out</source>
2471
        <translation type="unfinished"></translation>
2472
    </message>
2473
    <message>
2474
        <source>Edit Contents of Frame</source>
2475
        <translation type="unfinished">Уређивање садржаја оквира</translation>
2476
    </message>
2477
    <message>
2478
        <source>Edit Text...</source>
2479
        <translation type="unfinished">Уреди текст...</translation>
2480
    </message>
2481
    <message>
2482
        <source>Link Text Frames</source>
2483
        <translation type="unfinished">Повежи текстуалне оквире</translation>
2484
    </message>
2485
    <message>
2486
        <source>Unlink Text Frames</source>
2487
        <translation type="unfinished">Прекини везу између текстуалних оквира</translation>
2488
    </message>
2489
    <message>
2490
        <source>&amp;Eye Dropper</source>
2491
        <translation type="unfinished"></translation>
2492
    </message>
2493
    <message>
2494
        <source>Copy Item Properties</source>
2495
        <translation type="unfinished"></translation>
2496
    </message>
2497
    <message>
2498
        <source>Edit the text with the Story Editor</source>
2499
        <translation type="unfinished">Уређивање текста помоћу уређивача</translation>
2500
    </message>
2501
    <message>
2502
        <source>Insert Text Frame</source>
2503
        <translation type="unfinished">Уметни текстуални оквир</translation>
2504
    </message>
2505
    <message>
2506
        <source>Insert Image Frame</source>
2507
        <translation type="unfinished"></translation>
2508
    </message>
2509
    <message>
2510
        <source>Insert Table</source>
2511
        <translation type="unfinished">Убаци табелу</translation>
2512
    </message>
2513
    <message>
2514
        <source>Insert Shape</source>
2515
        <translation type="unfinished"></translation>
2516
    </message>
2517
    <message>
2518
        <source>Insert Polygon</source>
2519
        <translation type="unfinished"></translation>
2520
    </message>
2521
    <message>
2522
        <source>Insert Line</source>
2523
        <translation type="unfinished"></translation>
2524
    </message>
2525
    <message>
2526
        <source>Insert Bezier Curve</source>
2527
        <translation type="unfinished"></translation>
2528
    </message>
2529
    <message>
2530
        <source>Insert Freehand Line</source>
2531
        <translation type="unfinished">Уметни слободоручну линију</translation>
2532
    </message>
2533
    <message>
2534
        <source>&amp;Manage Pictures</source>
2535
        <translation type="unfinished">&amp;Управљање сликама</translation>
2536
    </message>
2537
    <message>
2538
        <source>&amp;Hyphenate Text</source>
2539
        <translation type="unfinished">&amp;Споји текст цртицама</translation>
2540
    </message>
2541
    <message>
2542
        <source>Dehyphenate Text</source>
2543
        <translation type="unfinished"></translation>
2544
    </message>
2545
    <message>
2546
        <source>&amp;Generate Table Of Contents</source>
2547
        <translation type="unfinished"></translation>
2548
    </message>
2549
    <message>
2550
        <source>&amp;About Scribus</source>
2551
        <translation type="unfinished">&amp;О Scribus-у</translation>
2552
    </message>
2553
    <message>
2554
        <source>About &amp;Qt</source>
2555
        <translation type="unfinished">О &amp;Qt-у</translation>
2556
    </message>
2557
    <message>
2558
        <source>Toolti&amp;ps</source>
2559
        <translation type="unfinished">Облач&amp;ићи</translation>
2560
    </message>
2561
    <message>
2562
        <source>Scribus &amp;Manual...</source>
2563
        <translation type="unfinished">Scribus &amp;Приручник...</translation>
2564
    </message>
2565
    <message>
2566
        <source>Smart &amp;Hyphen</source>
2567
        <translation type="unfinished"></translation>
2568
    </message>
2569
    <message>
2570
        <source>Non Breaking Dash</source>
2571
        <translation type="unfinished"></translation>
2572
    </message>
2573
    <message>
2574
        <source>Non Breaking &amp;Space</source>
2575
        <translation type="unfinished"></translation>
2576
    </message>
2577
    <message>
2578
        <source>Page &amp;Number</source>
2579
        <translation type="unfinished"></translation>
2580
    </message>
2581
    <message>
2582
        <source>New Line</source>
2583
        <translation type="unfinished"></translation>
2584
    </message>
2585
    <message>
2586
        <source>Frame Break</source>
2587
        <translation type="unfinished"></translation>
2588
    </message>
2589
    <message>
2590
        <source>Column Break</source>
2591
        <translation type="unfinished"></translation>
2592
    </message>
2593
    <message>
2594
        <source>Copyright</source>
2595
        <translation type="unfinished"></translation>
2596
    </message>
2597
    <message>
2598
        <source>Registered Trademark</source>
2599
        <translation type="unfinished"></translation>
2600
    </message>
2601
    <message>
2602
        <source>Trademark</source>
2603
        <translation type="unfinished"></translation>
2604
    </message>
2605
    <message>
2606
        <source>Bullet</source>
2607
        <translation type="unfinished"></translation>
2608
    </message>
2609
    <message>
2610
        <source>Em Dash</source>
2611
        <translation type="unfinished"></translation>
2612
    </message>
2613
    <message>
2614
        <source>En Dash</source>
2615
        <translation type="unfinished"></translation>
2616
    </message>
2617
    <message>
2618
        <source>Figure Dash</source>
2619
        <translation type="unfinished"></translation>
2620
    </message>
2621
    <message>
2622
        <source>Quotation Dash</source>
2623
        <translation type="unfinished"></translation>
2624
    </message>
2625
    <message>
2626
        <source>Apostrophe</source>
2627
        <translation type="unfinished"></translation>
2628
    </message>
2629
    <message>
2630
        <source>Straight Double</source>
2631
        <translation type="unfinished"></translation>
2632
    </message>
2633
    <message>
2634
        <source>Single Left</source>
2635
        <translation type="unfinished"></translation>
2636
    </message>
2637
    <message>
2638
        <source>Single Right</source>
2639
        <translation type="unfinished"></translation>
2640
    </message>
2641
    <message>
2642
        <source>Double Left</source>
2643
        <translation type="unfinished"></translation>
2644
    </message>
2645
    <message>
2646
        <source>Double Right</source>
2647
        <translation type="unfinished"></translation>
2648
    </message>
2649
    <message>
2650
        <source>Single Reversed</source>
2651
        <translation type="unfinished"></translation>
2652
    </message>
2653
    <message>
2654
        <source>Double Reversed</source>
2655
        <translation type="unfinished"></translation>
2656
    </message>
2657
    <message>
2658
        <source>Single Left Guillemet</source>
2659
        <translation type="unfinished"></translation>
2660
    </message>
2661
    <message>
2662
        <source>Single Right Guillemet</source>
2663
        <translation type="unfinished"></translation>
2664
    </message>
2665
    <message>
2666
        <source>Double Left Guillemet</source>
2667
        <translation type="unfinished"></translation>
2668
    </message>
2669
    <message>
2670
        <source>Double Right Guillemet</source>
2671
        <translation type="unfinished"></translation>
2672
    </message>
2673
    <message>
2674
        <source>Low Single Comma</source>
2675
        <translation type="unfinished"></translation>
2676
    </message>
2677
    <message>
2678
        <source>Low Double Comma</source>
2679
        <translation type="unfinished"></translation>
2680
    </message>
2681
    <message>
2682
        <source>CJK Single Left</source>
2683
        <translation type="unfinished"></translation>
2684
    </message>
2685
    <message>
2686
        <source>CJK Single Right</source>
2687
        <translation type="unfinished"></translation>
2688
    </message>
2689
    <message>
2690
        <source>CJK Double Left</source>
2691
        <translation type="unfinished"></translation>
2692
    </message>
2693
    <message>
2694
        <source>CJK Double Right</source>
2695
        <translation type="unfinished"></translation>
2696
    </message>
2697
    <message>
2698
        <source>Toggle Palettes</source>
2699
        <translation type="unfinished"></translation>
2700
    </message>
2701
    <message>
2702
        <source>Toggle Guides</source>
2703
        <translation type="unfinished"></translation>
2704
    </message>
3278 cbradney 2705
    <message>
2706
        <source>Print Previe&amp;w</source>
2707
        <translation type="unfinished">Прегл&amp;ед за штампање</translation>
2708
    </message>
2709
    <message>
2710
        <source>&amp;JavaScripts...</source>
2711
        <translation type="unfinished"></translation>
2712
    </message>
2713
    <message>
2714
        <source>Convert to Master Page...</source>
2715
        <translation type="unfinished"></translation>
2716
    </message>
2717
    <message>
2718
        <source>&amp;Cascade</source>
2719
        <translation type="unfinished">&amp;Наслажи</translation>
2720
    </message>
2721
    <message>
2722
        <source>&amp;Tile</source>
2723
        <translation type="unfinished">Поп&amp;лочај</translation>
2724
    </message>
2725
    <message>
2726
        <source>&amp;About Plug-ins</source>
2727
        <translation type="unfinished"></translation>
2728
    </message>
3824 cbradney 2729
    <message>
2730
        <source>More Info...</source>
2731
        <translation type="unfinished"></translation>
2732
    </message>
3064 cbradney 2733
</context>
2734
<context>
444 fschmid 2735
    <name>AdvOptions</name>
2736
    <message>
769 cbradney 2737
        <source>Advanced Options</source>
3278 cbradney 2738
        <translation type="obsolete">Напредне опције</translation>
444 fschmid 2739
    </message>
2740
    <message>
769 cbradney 2741
        <source>Mirror Page(s) &amp;Horizontal</source>
3278 cbradney 2742
        <translation type="obsolete">Окрени страницу(е) &amp;водоравно</translation>
444 fschmid 2743
    </message>
2744
    <message>
769 cbradney 2745
        <source>Mirror Page(s) &amp;Vertical</source>
3278 cbradney 2746
        <translation type="obsolete">Окрени страницу(е) &amp;усправно</translation>
444 fschmid 2747
    </message>
2748
    <message>
769 cbradney 2749
        <source>Apply Under Color &amp;Removal</source>
3278 cbradney 2750
        <translation type="obsolete">Примени под &amp;уклањањем боја</translation>
444 fschmid 2751
    </message>
2752
    <message>
769 cbradney 2753
        <source>Apply &amp;ICC Profiles</source>
3278 cbradney 2754
        <translation type="obsolete">Примени &amp;ICC профиле</translation>
444 fschmid 2755
    </message>
2756
    <message>
769 cbradney 2757
        <source>PostScript Level &amp;1</source>
3278 cbradney 2758
        <translation type="obsolete">PostScript ниво &amp;1</translation>
444 fschmid 2759
    </message>
2760
    <message>
769 cbradney 2761
        <source>PostScript Level &amp;2</source>
3278 cbradney 2762
        <translation type="obsolete">PostScript ниво &amp;2</translation>
444 fschmid 2763
    </message>
2764
    <message>
769 cbradney 2765
        <source>PostScript Level &amp;3</source>
3278 cbradney 2766
        <translation type="obsolete">PostScript ниво &amp;3</translation>
444 fschmid 2767
    </message>
2768
    <message>
769 cbradney 2769
        <source>&amp;OK</source>
3064 cbradney 2770
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 2771
    </message>
2772
    <message>
769 cbradney 2773
        <source>&amp;Cancel</source>
3064 cbradney 2774
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 2775
    </message>
2776
    <message>
769 cbradney 2777
        <source>Creates PostScript Level 3</source>
3278 cbradney 2778
        <translation type="obsolete">Прави PostScript ниво 3</translation>
444 fschmid 2779
    </message>
2780
    <message>
769 cbradney 2781
        <source>Creates PostScript Level 2 only, beware,
444 fschmid 2782
this can create huge files</source>
3278 cbradney 2783
        <translation type="obsolete">Прави PostScript ниво 2 само, опрез,
444 fschmid 2784
ово може направити огромне фајлове</translation>
2785
    </message>
2786
    <message>
769 cbradney 2787
        <source>Creates PostScript Level 1 only, beware,
444 fschmid 2788
this can create huge files</source>
3278 cbradney 2789
        <translation type="obsolete">Прави PostScript ниво 1 само, опрез, 
444 fschmid 2790
oво може направити огромне фајловеНиво огроман</translation>
2791
    </message>
2792
    <message>
769 cbradney 2793
        <source>A way of switching off some of the gray shades which are composed
444 fschmid 2794
of cyan, yellow and magenta and using black instead.
2795
UCR most affects parts of images which are neutral and/or dark tones
2796
which are close to the gray. Use of this may improve printing some images
2797
and some experimentation and testing is need on a case by case basis.
2798
UCR reduces the possibility of over saturation with CMY inks.</source>
3278 cbradney 2799
        <translation type="obsolete">Начин за искључивање неких сивих сенки које су састављене
444 fschmid 2800
од цијан, жуте, и магенте и коришћења црне уместо тога.
2801
UCR највише утиче на делове слике који имају неутралне и/или тамне тонове
2802
који су блиски сивој. Коришћење овога може поправити штампу неких слика
2803
и потребно је мало експериментисања у зависности од случаја.
2804
UCR смањује могућност презасићености CMY мастилима</translation>
2805
    </message>
769 cbradney 2806
</context>
2807
<context>
444 fschmid 2808
    <name>Align</name>
2809
    <message>
769 cbradney 2810
        <source>Distribute/Align</source>
3064 cbradney 2811
        <translation type="obsolete">Распореди/Поравнај</translation>
444 fschmid 2812
    </message>
2813
    <message>
769 cbradney 2814
        <source>Align</source>
3064 cbradney 2815
        <translation type="obsolete">Поравнај</translation>
444 fschmid 2816
    </message>
2817
    <message>
769 cbradney 2818
        <source>Horizontal</source>
3064 cbradney 2819
        <translation type="obsolete">Водоравно</translation>
444 fschmid 2820
    </message>
2821
    <message>
769 cbradney 2822
        <source>Left Sides</source>
3064 cbradney 2823
        <translation type="obsolete">Леве стране</translation>
444 fschmid 2824
    </message>
2825
    <message>
769 cbradney 2826
        <source>Middles</source>
3064 cbradney 2827
        <translation type="obsolete">Средине</translation>
444 fschmid 2828
    </message>
2829
    <message>
769 cbradney 2830
        <source>Right Sides</source>
3064 cbradney 2831
        <translation type="obsolete">Десне стране</translation>
444 fschmid 2832
    </message>
2833
    <message>
769 cbradney 2834
        <source>&amp;Between:</source>
3064 cbradney 2835
        <translation type="obsolete">&amp;Између:</translation>
444 fschmid 2836
    </message>
2837
    <message>
769 cbradney 2838
        <source>&amp;Do Not Change</source>
3064 cbradney 2839
        <translation type="obsolete">&amp;Немој да мењаш</translation>
444 fschmid 2840
    </message>
2841
    <message>
769 cbradney 2842
        <source>A&amp;lign</source>
3064 cbradney 2843
        <translation type="obsolete">П&amp;оравнај</translation>
444 fschmid 2844
    </message>
2845
    <message>
769 cbradney 2846
        <source>Di&amp;splacement</source>
3064 cbradney 2847
        <translation type="obsolete">Погрешно &amp;постављање</translation>
444 fschmid 2848
    </message>
2849
    <message>
769 cbradney 2850
        <source>Distribute &amp;Evenly</source>
3064 cbradney 2851
        <translation type="obsolete">Распореди &amp;равномерно</translation>
444 fschmid 2852
    </message>
2853
    <message>
769 cbradney 2854
        <source>Vertical</source>
3064 cbradney 2855
        <translation type="obsolete">Усправно</translation>
444 fschmid 2856
    </message>
2857
    <message>
769 cbradney 2858
        <source>Top Sides</source>
3064 cbradney 2859
        <translation type="obsolete">Горње стране</translation>
444 fschmid 2860
    </message>
2861
    <message>
769 cbradney 2862
        <source>Bottom Sides</source>
3064 cbradney 2863
        <translation type="obsolete">Доње стране</translation>
444 fschmid 2864
    </message>
2865
    <message>
769 cbradney 2866
        <source>Bet&amp;ween:</source>
3064 cbradney 2867
        <translation type="obsolete">Изм&amp;еђу:</translation>
444 fschmid 2868
    </message>
2869
    <message>
769 cbradney 2870
        <source>Do &amp;Not Change</source>
3064 cbradney 2871
        <translation type="obsolete">&amp;Немој да мењаш</translation>
444 fschmid 2872
    </message>
2873
    <message>
769 cbradney 2874
        <source>Al&amp;ign</source>
3064 cbradney 2875
        <translation type="obsolete">По&amp;равнај</translation>
444 fschmid 2876
    </message>
2877
    <message>
769 cbradney 2878
        <source>Dis&amp;placement</source>
3064 cbradney 2879
        <translation type="obsolete">Погрешно &amp;постављање</translation>
444 fschmid 2880
    </message>
2881
    <message>
769 cbradney 2882
        <source> pt</source>
1525 cbradney 2883
        <translation type="obsolete"> тач.</translation>
444 fschmid 2884
    </message>
2885
    <message>
769 cbradney 2886
        <source> mm</source>
1525 cbradney 2887
        <translation type="obsolete"> mm</translation>
444 fschmid 2888
    </message>
2889
    <message>
769 cbradney 2890
        <source> in</source>
1525 cbradney 2891
        <translation type="obsolete"> in</translation>
444 fschmid 2892
    </message>
2893
    <message>
769 cbradney 2894
        <source> p</source>
1525 cbradney 2895
        <translation type="obsolete"> p</translation>
444 fschmid 2896
    </message>
2897
    <message>
769 cbradney 2898
        <source>Distribute E&amp;venly</source>
3064 cbradney 2899
        <translation type="obsolete">Распореди рав&amp;номерно</translation>
444 fschmid 2900
    </message>
2901
    <message>
769 cbradney 2902
        <source>&amp;OK</source>
3064 cbradney 2903
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 2904
    </message>
2905
    <message>
769 cbradney 2906
        <source>&amp;Apply</source>
3064 cbradney 2907
        <translation type="obsolete">&amp;Примени</translation>
444 fschmid 2908
    </message>
2909
    <message>
769 cbradney 2910
        <source>&amp;Cancel</source>
3064 cbradney 2911
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 2912
    </message>
769 cbradney 2913
</context>
2914
<context>
3064 cbradney 2915
    <name>AlignDistributePalette</name>
2916
    <message>
2917
        <source>Align and Distribute</source>
2918
        <translation type="unfinished"></translation>
2919
    </message>
2920
    <message>
2921
        <source>Align</source>
2922
        <translation type="unfinished">Поравнај</translation>
2923
    </message>
2924
    <message>
2925
        <source>&amp;Relative to:</source>
2926
        <translation type="unfinished"></translation>
2927
    </message>
2928
    <message>
2929
        <source>First Selected</source>
2930
        <translation type="unfinished"></translation>
2931
    </message>
2932
    <message>
2933
        <source>Last Selected</source>
2934
        <translation type="unfinished"></translation>
2935
    </message>
2936
    <message>
2937
        <source>Page</source>
2938
        <translation type="unfinished">Страница</translation>
2939
    </message>
2940
    <message>
2941
        <source>Margins</source>
2942
        <translation type="unfinished"></translation>
2943
    </message>
2944
    <message>
2945
        <source>Guide</source>
2946
        <translation type="unfinished"></translation>
2947
    </message>
2948
    <message>
2949
        <source>Selection</source>
2950
        <translation type="unfinished"></translation>
2951
    </message>
2952
    <message>
2953
        <source>Align right sides of objects to left side of anchor</source>
2954
        <translation type="unfinished"></translation>
2955
    </message>
2956
    <message>
2957
        <source>Align left sides of objects to right side of anchor</source>
2958
        <translation type="unfinished"></translation>
2959
    </message>
2960
    <message>
2961
        <source>Align bottoms</source>
2962
        <translation type="unfinished"></translation>
2963
    </message>
2964
    <message>
2965
        <source>Align right sides</source>
2966
        <translation type="unfinished"></translation>
2967
    </message>
2968
    <message>
2969
        <source>Align tops of objects to bottom of anchor</source>
2970
        <translation type="unfinished"></translation>
2971
    </message>
2972
    <message>
2973
        <source>Center on vertical axis</source>
2974
        <translation type="unfinished"></translation>
2975
    </message>
2976
    <message>
2977
        <source>Align left sides</source>
2978
        <translation type="unfinished"></translation>
2979
    </message>
2980
    <message>
2981
        <source>Center on horizontal axis</source>
2982
        <translation type="unfinished"></translation>
2983
    </message>
2984
    <message>
2985
        <source>Align bottoms of objects to top of anchor</source>
2986
        <translation type="unfinished"></translation>
2987
    </message>
2988
    <message>
2989
        <source>Align tops</source>
2990
        <translation type="unfinished"></translation>
2991
    </message>
2992
    <message>
2993
        <source>&amp;Selected Guide:</source>
2994
        <translation type="unfinished"></translation>
2995
    </message>
2996
    <message>
2997
        <source>Distribute</source>
2998
        <translation type="unfinished"></translation>
2999
    </message>
3000
    <message>
3001
        <source>Make horizontal gaps between objects equal</source>
3002
        <translation type="unfinished"></translation>
3003
    </message>
3004
    <message>
3005
        <source>Make horizontal gaps between objects equal to the value specified</source>
3006
        <translation type="unfinished"></translation>
3007
    </message>
3008
    <message>
3009
        <source>Distribute right sides equidistantly</source>
3010
        <translation type="unfinished"></translation>
3011
    </message>
3012
    <message>
3013
        <source>Distribute bottoms equidistantly</source>
3014
        <translation type="unfinished"></translation>
3015
    </message>
3016
    <message>
3017
        <source>Distribute centers equidistantly horizontally</source>
3018
        <translation type="unfinished"></translation>
3019
    </message>
3020
    <message>
3021
        <source>Make vertical gaps between objects equal</source>
3022
        <translation type="unfinished"></translation>
3023
    </message>
3024
    <message>
3025
        <source>Make vertical gaps between objects equal to the value specified</source>
3026
        <translation type="unfinished"></translation>
3027
    </message>
3028
    <message>
3029
        <source>Distribute left sides equidistantly</source>
3030
        <translation type="unfinished"></translation>
3031
    </message>
3032
    <message>
3033
        <source>Distribute centers equidistantly vertically</source>
3034
        <translation type="unfinished"></translation>
3035
    </message>
3036
    <message>
3037
        <source>Distribute tops equidistantly</source>
3038
        <translation type="unfinished"></translation>
3039
    </message>
3040
    <message>
3041
        <source>&amp;Distance:</source>
3042
        <translation type="unfinished"></translation>
3043
    </message>
3044
    <message>
3045
        <source>Distribute the items with the distance specified</source>
3046
        <translation type="unfinished"></translation>
3047
    </message>
3048
    <message>
3049
        <source>None Selected</source>
3050
        <translation type="unfinished"></translation>
3051
    </message>
3052
    <message>
3053
        <source>Warning</source>
3824 cbradney 3054
        <translation type="obsolete">Упозорење</translation>
3064 cbradney 3055
    </message>
3056
    <message>
3057
        <source>Some objects are locked.</source>
3058
        <translation type="unfinished"></translation>
3059
    </message>
3060
    <message>
3061
        <source>&amp;Unlock All</source>
3062
        <translation type="unfinished"></translation>
3063
    </message>
3064
    <message>
3065
        <source>Y: %1%2</source>
3066
        <translation type="unfinished"></translation>
3067
    </message>
3068
    <message>
3069
        <source>X: %1%2</source>
3070
        <translation type="unfinished"></translation>
3071
    </message>
3072
</context>
3073
<context>
444 fschmid 3074
    <name>AlignSelect</name>
3075
    <message>
769 cbradney 3076
        <source>Align Text Left</source>
3077
        <translation>Поравнај текст лево</translation>
444 fschmid 3078
    </message>
3079
    <message>
769 cbradney 3080
        <source>Align Text Right</source>
3081
        <translation>Поравнај текст десно</translation>
444 fschmid 3082
    </message>
3083
    <message>
769 cbradney 3084
        <source>Align Text Center</source>
3085
        <translation>Поравнај текст по средини</translation>
444 fschmid 3086
    </message>
3087
    <message>
769 cbradney 3088
        <source>Align Text Justified</source>
3089
        <translation>Поравнај текст развучено</translation>
444 fschmid 3090
    </message>
3091
    <message>
769 cbradney 3092
        <source>Align Text Forced Justified</source>
3093
        <translation>Поравнај текст насилно развучено</translation>
444 fschmid 3094
    </message>
769 cbradney 3095
</context>
3096
<context>
444 fschmid 3097
    <name>Annot</name>
3098
    <message>
769 cbradney 3099
        <source>Field Properties</source>
3100
        <translation>Својства поља</translation>
444 fschmid 3101
    </message>
3102
    <message>
769 cbradney 3103
        <source>Type:</source>
3104
        <translation>Врста:</translation>
444 fschmid 3105
    </message>
3106
    <message>
769 cbradney 3107
        <source>Button</source>
3108
        <translation>Дугме</translation>
444 fschmid 3109
    </message>
3110
    <message>
769 cbradney 3111
        <source>Text Field</source>
3112
        <translation>Поље за текст</translation>
444 fschmid 3113
    </message>
3114
    <message>
769 cbradney 3115
        <source>Check Box</source>
3116
        <translation>Кућица</translation>
444 fschmid 3117
    </message>
3118
    <message>
769 cbradney 3119
        <source>Combo Box</source>
3120
        <translation>Комбо кутија</translation>
444 fschmid 3121
    </message>
3122
    <message>
769 cbradney 3123
        <source>List Box</source>
3124
        <translation>Кутија листе</translation>
444 fschmid 3125
    </message>
3126
    <message>
769 cbradney 3127
        <source>Properties</source>
3128
        <translation>Својства</translation>
444 fschmid 3129
    </message>
3130
    <message>
769 cbradney 3131
        <source>Name:</source>
3132
        <translation>Име:</translation>
444 fschmid 3133
    </message>
3134
    <message>
769 cbradney 3135
        <source>Tool-Tip:</source>
3136
        <translation>Алат-Савет:</translation>
444 fschmid 3137
    </message>
3138
    <message>
769 cbradney 3139
        <source>Text</source>
3140
        <translation>Текст</translation>
444 fschmid 3141
    </message>
3142
    <message>
769 cbradney 3143
        <source>Font for use with PDF 1.3:</source>
3144
        <translation>Фонт за коришћење са PDF 1.3:</translation>
444 fschmid 3145
    </message>
3146
    <message>
769 cbradney 3147
        <source>Border</source>
3148
        <translation>Оквир</translation>
444 fschmid 3149
    </message>
3150
    <message>
769 cbradney 3151
        <source>Color:</source>
3152
        <translation>Боја:</translation>
444 fschmid 3153
    </message>
3154
    <message>
769 cbradney 3155
        <source>None</source>
3156
        <translation>Ниједан</translation>
444 fschmid 3157
    </message>
3158
    <message>
769 cbradney 3159
        <source>Width:</source>
3160
        <translation>Ширина:</translation>
444 fschmid 3161
    </message>
3162
    <message>
769 cbradney 3163
        <source>Thin</source>
3164
        <translation>Танак</translation>
444 fschmid 3165
    </message>
3166
    <message>
769 cbradney 3167
        <source>Normal</source>
3168
        <translation>Нормално</translation>
444 fschmid 3169
    </message>
3170
    <message>
769 cbradney 3171
        <source>Wide</source>
3172
        <translation>Широк</translation>
444 fschmid 3173
    </message>
3174
    <message>
769 cbradney 3175
        <source>Style:</source>
3176
        <translation>Стил:</translation>
444 fschmid 3177
    </message>
3178
    <message>
769 cbradney 3179
        <source>Solid</source>
3180
        <translation>Пуно</translation>
444 fschmid 3181
    </message>
3182
    <message>
769 cbradney 3183
        <source>Dashed</source>
3184
        <translation>Испрекидано</translation>
444 fschmid 3185
    </message>
3186
    <message>
769 cbradney 3187
        <source>Underline</source>
3188
        <translation>Подвучено</translation>
444 fschmid 3189
    </message>
3190
    <message>
769 cbradney 3191
        <source>Beveled</source>
3192
        <translation>Искошено</translation>
444 fschmid 3193
    </message>
3194
    <message>
769 cbradney 3195
        <source>Inset</source>
3196
        <translation>Уметак</translation>
444 fschmid 3197
    </message>
3198
    <message>
769 cbradney 3199
        <source>Other</source>
3200
        <translation>Остало</translation>
444 fschmid 3201
    </message>
3202
    <message>
769 cbradney 3203
        <source>Read Only</source>
3204
        <translation>Само за читање</translation>
444 fschmid 3205
    </message>
3206
    <message>
769 cbradney 3207
        <source>Required</source>
3208
        <translation>Захтевано</translation>
444 fschmid 3209
    </message>
3210
    <message>
769 cbradney 3211
        <source>Don&apos;t Export Value</source>
3212
        <translation>Немој да извозиш вредност</translation>
444 fschmid 3213
    </message>
3214
    <message>
769 cbradney 3215
        <source>Visibility:</source>
3216
        <translation>Видљивост:</translation>
444 fschmid 3217
    </message>
3218
    <message>
769 cbradney 3219
        <source>Visible</source>
3220
        <translation>Видљиво</translation>
444 fschmid 3221
    </message>
3222
    <message>
769 cbradney 3223
        <source>Hidden</source>
3224
        <translation>Скривен</translation>
444 fschmid 3225
    </message>
3226
    <message>
769 cbradney 3227
        <source>No Print</source>
3228
        <translation>Не штампај</translation>
444 fschmid 3229
    </message>
3230
    <message>
769 cbradney 3231
        <source>No View</source>
3232
        <translation>Без приказа</translation>
444 fschmid 3233
    </message>
3234
    <message>
769 cbradney 3235
        <source>Appearance</source>
3236
        <translation>Изглед</translation>
444 fschmid 3237
    </message>
3238
    <message>
769 cbradney 3239
        <source>Text for Button Down</source>
3240
        <translation>Текст за Дугме Доле</translation>
444 fschmid 3241
    </message>
3242
    <message>
769 cbradney 3243
        <source>Text for Roll Over</source>
3244
        <translation>Текст за превртање</translation>
444 fschmid 3245
    </message>
3246
    <message>
769 cbradney 3247
        <source>Icons</source>
3248
        <translation>Иконе</translation>
444 fschmid 3249
    </message>
3250
    <message>
769 cbradney 3251
        <source>Use Icons</source>
3252
        <translation>Користи иконе</translation>
444 fschmid 3253
    </message>
3254
    <message>
769 cbradney 3255
        <source>Remove</source>
3256
        <translation>Уклони</translation>
444 fschmid 3257
    </message>
3258
    <message>
769 cbradney 3259
        <source>Pressed</source>
3260
        <translation>Притиснуто</translation>
444 fschmid 3261
    </message>
3262
    <message>
769 cbradney 3263
        <source>Roll Over</source>
3264
        <translation>Превртање</translation>
444 fschmid 3265
    </message>
3266
    <message>
769 cbradney 3267
        <source>Icon Placement...</source>
3268
        <translation>Постављање икона...</translation>
444 fschmid 3269
    </message>
3270
    <message>
769 cbradney 3271
        <source>Highlight</source>
3272
        <translation>Истицање</translation>
444 fschmid 3273
    </message>
3274
    <message>
769 cbradney 3275
        <source>Invert</source>
3276
        <translation>Инвертуј</translation>
444 fschmid 3277
    </message>
3278
    <message>
769 cbradney 3279
        <source>Outlined</source>
3280
        <translation>Уоквирено</translation>
444 fschmid 3281
    </message>
3282
    <message>
769 cbradney 3283
        <source>Push</source>
3284
        <translation>Гурни</translation>
444 fschmid 3285
    </message>
3286
    <message>
769 cbradney 3287
        <source>Multi-Line</source>
3288
        <translation>Мулти-линија</translation>
444 fschmid 3289
    </message>
3290
    <message>
769 cbradney 3291
        <source>Password</source>
3292
        <translation>Лозинка</translation>
444 fschmid 3293
    </message>
3294
    <message>
769 cbradney 3295
        <source>Limit of</source>
3296
        <translation>Лимит од</translation>
444 fschmid 3297
    </message>
3298
    <message>
769 cbradney 3299
        <source>Characters</source>
3300
        <translation>Знакови</translation>
444 fschmid 3301
    </message>
3302
    <message>
769 cbradney 3303
        <source>Do Not Scroll</source>
3304
        <translation>Немој да скролујеш</translation>
444 fschmid 3305
    </message>
3306
    <message>
769 cbradney 3307
        <source>Do Not Spell Check</source>
3308
        <translation>Немој да провераваш правопис</translation>
444 fschmid 3309
    </message>
3310
    <message>
769 cbradney 3311
        <source>Check Style:</source>
3312
        <translation>Провери стил:</translation>
444 fschmid 3313
    </message>
3314
    <message>
769 cbradney 3315
        <source>Check</source>
3316
        <translation>Провери</translation>
444 fschmid 3317
    </message>
3318
    <message>
769 cbradney 3319
        <source>Cross</source>
3320
        <translation>Крст</translation>
444 fschmid 3321
    </message>
3322
    <message>
769 cbradney 3323
        <source>Diamond</source>
3324
        <translation>Дијамант</translation>
444 fschmid 3325
    </message>
3326
    <message>
769 cbradney 3327
        <source>Circle</source>
3328
        <translation>Круг</translation>
444 fschmid 3329
    </message>
3330
    <message>
769 cbradney 3331
        <source>Star</source>
3332
        <translation>Звезда</translation>
444 fschmid 3333
    </message>
3334
    <message>
769 cbradney 3335
        <source>Square</source>
3336
        <translation>Квадрат</translation>
444 fschmid 3337
    </message>
3338
    <message>
769 cbradney 3339
        <source>Default is Checked</source>
3340
        <translation>Подразумевано је обележено</translation>
444 fschmid 3341
    </message>
3342
    <message>
769 cbradney 3343
        <source>Editable</source>
3344
        <translation>Може се уређивати</translation>
444 fschmid 3345
    </message>
3346
    <message>
769 cbradney 3347
        <source>Options</source>
3348
        <translation>Опције</translation>
444 fschmid 3349
    </message>
3350
    <message>
769 cbradney 3351
        <source>Java Script</source>
3278 cbradney 3352
        <translation type="obsolete">Java Script</translation>
444 fschmid 3353
    </message>
3354
    <message>
769 cbradney 3355
        <source>Go To</source>
3356
        <translation>Иди на</translation>
444 fschmid 3357
    </message>
3358
    <message>
769 cbradney 3359
        <source>Submit Form</source>
3360
        <translation>Пошаљи формулар</translation>
444 fschmid 3361
    </message>
3362
    <message>
769 cbradney 3363
        <source>Reset Form</source>
3364
        <translation>Ресетуј формулар</translation>
444 fschmid 3365
    </message>
3366
    <message>
769 cbradney 3367
        <source>Import Data</source>
3368
        <translation>Увези податке</translation>
444 fschmid 3369
    </message>
3370
    <message>
769 cbradney 3371
        <source>Event:</source>
3372
        <translation>Догађај:</translation>
444 fschmid 3373
    </message>
3374
    <message>
769 cbradney 3375
        <source>Mouse Up</source>
3376
        <translation>Миш горе</translation>
444 fschmid 3377
    </message>
3378
    <message>
769 cbradney 3379
        <source>Mouse Down</source>
3380
        <translation>Миш доле</translation>
444 fschmid 3381
    </message>
3382
    <message>
769 cbradney 3383
        <source>Mouse Enter</source>
3384
        <translation>Миш унеси</translation>
444 fschmid 3385
    </message>
3386
    <message>
769 cbradney 3387
        <source>Mouse Exit</source>
3388
        <translation>Миш изађи</translation>
444 fschmid 3389
    </message>
3390
    <message>
769 cbradney 3391
        <source>On Focus</source>
3392
        <translation>На фокус</translation>
444 fschmid 3393
    </message>
3394
    <message>
769 cbradney 3395
        <source>On Blur</source>
3396
        <translation>На замућење</translation>
444 fschmid 3397
    </message>
3398
    <message>
769 cbradney 3399
        <source>Script:</source>
3400
        <translation>Скрипта:</translation>
444 fschmid 3401
    </message>
3402
    <message>
769 cbradney 3403
        <source>Edit...</source>
3404
        <translation>Уреди...</translation>
444 fschmid 3405
    </message>
3406
    <message>
769 cbradney 3407
        <source>Submit to URL:</source>
3408
        <translation>Пошаљи до URL-а:</translation>
444 fschmid 3409
    </message>
3410
    <message>
769 cbradney 3411
        <source>Submit Data as HTML</source>
3412
        <translation>Пошаљи податке као HTML</translation>
444 fschmid 3413
    </message>
3414
    <message>
769 cbradney 3415
        <source>Import Data from:</source>
3416
        <translation>Увези податке од:</translation>
444 fschmid 3417
    </message>
3418
    <message>
769 cbradney 3419
        <source>Destination</source>
3420
        <translation>Одредиште</translation>
444 fschmid 3421
    </message>
3422
    <message>
769 cbradney 3423
        <source>To File:</source>
3424
        <translation>У фајл:</translation>
444 fschmid 3425
    </message>
3426
    <message>
769 cbradney 3427
        <source>Change...</source>
3428
        <translation>Измени...</translation>
444 fschmid 3429
    </message>
3430
    <message>
769 cbradney 3431
        <source>Page:</source>
3432
        <translation>Страна:</translation>
444 fschmid 3433
    </message>
3434
    <message>
769 cbradney 3435
        <source>X-Pos:</source>
3436
        <translation>X Поз:</translation>
444 fschmid 3437
    </message>
3438
    <message>
769 cbradney 3439
        <source> pt</source>
3440
        <translation> тач.</translation>
444 fschmid 3441
    </message>
3442
    <message>
769 cbradney 3443
        <source>Y-Pos:</source>
3444
        <translation>Y Поз:</translation>
444 fschmid 3445
    </message>
3446
    <message>
769 cbradney 3447
        <source>Action</source>
3448
        <translation>Акција</translation>
444 fschmid 3449
    </message>
3450
    <message>
769 cbradney 3451
        <source>Field is formatted as:</source>
3452
        <translation>Поље је форматирано као:</translation>
444 fschmid 3453
    </message>
3454
    <message>
769 cbradney 3455
        <source>Plain</source>
3456
        <translation>Обичан</translation>
444 fschmid 3457
    </message>
3458
    <message>
769 cbradney 3459
        <source>Number</source>
3460
        <translation>Број</translation>
444 fschmid 3461
    </message>
3462
    <message>
769 cbradney 3463
        <source>Percentage</source>
3464
        <translation>Проценат</translation>
444 fschmid 3465
    </message>
3466
    <message>
769 cbradney 3467
        <source>Date</source>
3468
        <translation>Датум</translation>
444 fschmid 3469
    </message>
3470
    <message>
769 cbradney 3471
        <source>Time</source>
3472
        <translation>Време</translation>
444 fschmid 3473
    </message>
3474
    <message>
769 cbradney 3475
        <source>Custom</source>
3476
        <translation>Произвољно</translation>
444 fschmid 3477
    </message>
3478
    <message>
769 cbradney 3479
        <source>Number Format</source>
3480
        <translation>Формат бројева</translation>
444 fschmid 3481
    </message>
3482
    <message>
769 cbradney 3483
        <source>Decimals:</source>
3484
        <translation>Децимале:</translation>
444 fschmid 3485
    </message>
3486
    <message>
769 cbradney 3487
        <source>Use Currency Symbol</source>
3488
        <translation>Користи симбол валуте</translation>
444 fschmid 3489
    </message>
3490
    <message>
769 cbradney 3491
        <source>Prepend Currency Symbol</source>
3492
        <translation>Валута Симбол</translation>
444 fschmid 3493
    </message>
3494
    <message>
769 cbradney 3495
        <source>Formatting</source>
3496
        <translation>Форматирање</translation>
444 fschmid 3497
    </message>
3498
    <message>
769 cbradney 3499
        <source>Percent Format</source>
3500
        <translation>Процентни формат</translation>
444 fschmid 3501
    </message>
3502
    <message>
769 cbradney 3503
        <source>Date Format</source>
3504
        <translation>Формат датума</translation>
444 fschmid 3505
    </message>
3506
    <message>
769 cbradney 3507
        <source>Time Format</source>
3508
        <translation>Формат времена</translation>
444 fschmid 3509
    </message>
3510
    <message>
769 cbradney 3511
        <source>Custom Scripts</source>
3512
        <translation>Произвољне скрипте</translation>
444 fschmid 3513
    </message>
3514
    <message>
769 cbradney 3515
        <source>Format:</source>
3516
        <translation>Формат:</translation>
444 fschmid 3517
    </message>
3518
    <message>
769 cbradney 3519
        <source>Keystroke:</source>
3520
        <translation>Притисак дугмета:</translation>
444 fschmid 3521
    </message>
3522
    <message>
769 cbradney 3523
        <source>Format</source>
3524
        <translation>Формат</translation>
444 fschmid 3525
    </message>
3526
    <message>
769 cbradney 3527
        <source>Value is not validated</source>
3528
        <translation>Вредност није оверена</translation>
444 fschmid 3529
    </message>
3530
    <message>
769 cbradney 3531
        <source>Value must be greater than or equal to:</source>
3532
        <translation>Вредност мора бити већа или једнака са:</translation>
444 fschmid 3533
    </message>
3534
    <message>
769 cbradney 3535
        <source>and less or equal to:</source>
3536
        <translation>и мања или једнака са:</translation>
444 fschmid 3537
    </message>
3538
    <message>
769 cbradney 3539
        <source>Custom validate script:</source>
3540
        <translation>Произвољне скрипте за оверавање:</translation>
444 fschmid 3541
    </message>
3542
    <message>
769 cbradney 3543
        <source>Validate</source>
3544
        <translation>Овери</translation>
444 fschmid 3545
    </message>
3546
    <message>
769 cbradney 3547
        <source>Value is not calculated</source>
3548
        <translation>Вредност није израчуната</translation>
444 fschmid 3549
    </message>
3550
    <message>
769 cbradney 3551
        <source>Value is the</source>
3552
        <translation>Вредност је</translation>
444 fschmid 3553
    </message>
3554
    <message>
769 cbradney 3555
        <source>sum</source>
3556
        <translation>сума</translation>
444 fschmid 3557
    </message>
3558
    <message>
769 cbradney 3559
        <source>product</source>
3560
        <translation>производ</translation>
444 fschmid 3561
    </message>
3562
    <message>
769 cbradney 3563
        <source>average</source>
3564
        <translation>средња вредност</translation>
444 fschmid 3565
    </message>
3566
    <message>
769 cbradney 3567
        <source>minimum</source>
3568
        <translation>минимум</translation>
444 fschmid 3569
    </message>
3570
    <message>
769 cbradney 3571
        <source>maximum</source>
3572
        <translation>максимум</translation>
444 fschmid 3573
    </message>
3574
    <message>
769 cbradney 3575
        <source>of the following fields:</source>
3576
        <translation>од следећих поља:</translation>
444 fschmid 3577
    </message>
3578
    <message>
769 cbradney 3579
        <source>Pick...</source>
3580
        <translation>Изабери...</translation>
444 fschmid 3581
    </message>
3582
    <message>
769 cbradney 3583
        <source>Custom calculation script:</source>
3584
        <translation>Произвољна скрипта за израчунавање:</translation>
444 fschmid 3585
    </message>
3586
    <message>
769 cbradney 3587
        <source>Calculate</source>
3588
        <translation>Израчунај</translation>
444 fschmid 3589
    </message>
3590
    <message>
769 cbradney 3591
        <source>OK</source>
3592
        <translation>У реду</translation>
444 fschmid 3593
    </message>
3594
    <message>
769 cbradney 3595
        <source>Cancel</source>
3596
        <translation>Поништи</translation>
444 fschmid 3597
    </message>
3598
    <message>
769 cbradney 3599
        <source>Flag is ignored for PDF 1.3</source>
3600
        <translation>Застава се игнорише за PDF 1.3</translation>
444 fschmid 3601
    </message>
3602
    <message>
769 cbradney 3603
        <source>Enter a comma separated list of fields here</source>
3604
        <translation>Овде унесите листу поља одвојених зарезима</translation>
444 fschmid 3605
    </message>
3606
    <message>
769 cbradney 3607
        <source>You need at least the Icon for Normal to use Icons for Buttons</source>
3608
        <translation>Потребна Вам је барем икона за Нормално да бисте користили икону за дугмад</translation>
444 fschmid 3609
    </message>
3610
    <message>
769 cbradney 3611
        <source>Open</source>
3612
        <translation>Отвори</translation>
444 fschmid 3613
    </message>
3614
    <message>
769 cbradney 3615
        <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
3278 cbradney 3616
        <translation type="obsolete">Слике (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Сви фајлови (*)</translation>
444 fschmid 3617
    </message>
3618
    <message>
769 cbradney 3619
        <source>Example:</source>
3620
        <translation>Пример:</translation>
444 fschmid 3621
    </message>
3622
    <message>
769 cbradney 3623
        <source>Selection Change</source>
3624
        <translation>Промена избора</translation>
444 fschmid 3625
    </message>
3626
    <message>
769 cbradney 3627
        <source>PDF Files (*.pdf);;All Files (*)</source>
3628
        <translation>PDF фајлови (*.pdf);;Сви фајлови (*)</translation>
444 fschmid 3629
    </message>
3278 cbradney 3630
    <message>
3631
        <source>JavaScript</source>
3632
        <translation type="unfinished"></translation>
3633
    </message>
3634
    <message>
3635
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;All Files (*)</source>
3636
        <translation type="unfinished"></translation>
3637
    </message>
769 cbradney 3638
</context>
3639
<context>
444 fschmid 3640
    <name>Annota</name>
3641
    <message>
769 cbradney 3642
        <source>Annotation Properties</source>
3643
        <translation>Својства анотације</translation>
444 fschmid 3644
    </message>
3645
    <message>
769 cbradney 3646
        <source>Text</source>
3647
        <translation>Текст</translation>
444 fschmid 3648
    </message>
3649
    <message>
769 cbradney 3650
        <source>Link</source>
3651
        <translation>Веза</translation>
444 fschmid 3652
    </message>
3653
    <message>
769 cbradney 3654
        <source>External Link</source>
3655
        <translation>Спољашња веза</translation>
444 fschmid 3656
    </message>
3657
    <message>
769 cbradney 3658
        <source>External Web-Link</source>
3659
        <translation>Спољашња веб-веза</translation>
444 fschmid 3660
    </message>
3661
    <message>
769 cbradney 3662
        <source>Destination</source>
3663
        <translation>Одредиште</translation>
444 fschmid 3664
    </message>
3665
    <message>
769 cbradney 3666
        <source> pt</source>
3667
        <translation> тач.</translation>
444 fschmid 3668
    </message>
3669
    <message>
769 cbradney 3670
        <source>Open</source>
3671
        <translation>Отвори</translation>
444 fschmid 3672
    </message>
3673
    <message>
769 cbradney 3674
        <source>PDF-Documents (*.pdf);;All Files (*)</source>
3675
        <translation>PDF-Документи (*.pdf);;Сви фајлови (*)</translation>
444 fschmid 3676
    </message>
3677
    <message>
769 cbradney 3678
        <source>&amp;Type:</source>
3679
        <translation>&amp;Врста:</translation>
444 fschmid 3680
    </message>
3681
    <message>
769 cbradney 3682
        <source>C&amp;hange...</source>
3683
        <translation>И&amp;змени...</translation>
444 fschmid 3684
    </message>
3685
    <message>
769 cbradney 3686
        <source>&amp;Page:</source>
3687
        <translation>&amp;Страница:</translation>
444 fschmid 3688
    </message>
3689
    <message>
769 cbradney 3690
        <source>&amp;X-Pos</source>
3691
        <translation>&amp;X-Поз</translation>
444 fschmid 3692
    </message>
3693
    <message>
769 cbradney 3694
        <source>&amp;Y-Pos:</source>
3695
        <translation>&amp;Y Поз:</translation>
444 fschmid 3696
    </message>
532 cbradney 3697
    <message>
769 cbradney 3698
        <source>&amp;OK</source>
3064 cbradney 3699
        <translation type="obsolete">&amp;У реду</translation>
532 cbradney 3700
    </message>
3701
    <message>
769 cbradney 3702
        <source>&amp;Cancel</source>
3064 cbradney 3703
        <translation type="obsolete">&amp;Откажи</translation>
532 cbradney 3704
    </message>
769 cbradney 3705
</context>
3706
<context>
3064 cbradney 3707
    <name>ApplyMasterPageDialog</name>
3708
    <message>
3709
        <source>Normal</source>
3710
        <translation type="unfinished">Нормално</translation>
3711
    </message>
3712
    <message>
3713
        <source>Apply Master Page</source>
3714
        <translation type="unfinished"></translation>
3715
    </message>
3716
    <message>
3717
        <source>&amp;Master Page:</source>
3718
        <translation type="unfinished"></translation>
3719
    </message>
3720
    <message>
3721
        <source>Apply To</source>
3722
        <translation type="unfinished"></translation>
3723
    </message>
3724
    <message>
3725
        <source>Current &amp;page</source>
3726
        <translation type="unfinished"></translation>
3727
    </message>
3728
    <message>
3729
        <source>Alt+P</source>
3730
        <translation type="unfinished"></translation>
3731
    </message>
3732
    <message>
3733
        <source>&amp;Even pages</source>
3734
        <translation type="unfinished"></translation>
3735
    </message>
3736
    <message>
3737
        <source>Alt+E</source>
3738
        <translation type="unfinished"></translation>
3739
    </message>
3740
    <message>
3741
        <source>O&amp;dd pages</source>
3742
        <translation type="unfinished"></translation>
3743
    </message>
3744
    <message>
3745
        <source>Alt+D</source>
3746
        <translation type="unfinished"></translation>
3747
    </message>
3748
    <message>
3749
        <source>&amp;All pages</source>
3750
        <translation type="unfinished">&amp;Све странице</translation>
3751
    </message>
3752
    <message>
3753
        <source>Alt+A</source>
3754
        <translation type="unfinished"></translation>
3755
    </message>
3756
    <message>
3757
        <source>&amp;Within range</source>
3758
        <translation type="unfinished"></translation>
3759
    </message>
3760
    <message>
3761
        <source>Alt+W</source>
3762
        <translation type="unfinished"></translation>
3763
    </message>
3764
    <message>
3765
        <source>to</source>
3766
        <translation type="unfinished">до</translation>
3767
    </message>
3768
    <message>
3769
        <source>Alt+O</source>
3770
        <translation type="unfinished">Alt+O</translation>
3771
    </message>
3772
    <message>
3773
        <source>Alt+C</source>
3774
        <translation type="unfinished">Alt+C</translation>
3775
    </message>
4141 cbradney 3776
    <message>
3777
        <source>Apply the selected template to even, odd or all pages within the following range</source>
3778
        <translation type="unfinished"></translation>
3779
    </message>
3064 cbradney 3780
</context>
3781
<context>
444 fschmid 3782
    <name>ApplyT</name>
3783
    <message>
769 cbradney 3784
        <source>Apply Template</source>
3064 cbradney 3785
        <translation type="obsolete">Примени шаблон</translation>
444 fschmid 3786
    </message>
3787
    <message>
769 cbradney 3788
        <source>&amp;Template:</source>
3064 cbradney 3789
        <translation type="obsolete">Ша&amp;блон:</translation>
444 fschmid 3790
    </message>
3791
    <message>
769 cbradney 3792
        <source>Normal</source>
3064 cbradney 3793
        <translation type="obsolete">Нормално</translation>
444 fschmid 3794
    </message>
3795
    <message>
769 cbradney 3796
        <source>Apply to &amp;Current Page</source>
3064 cbradney 3797
        <translation type="obsolete">Примени на &amp;текућу страницу</translation>
444 fschmid 3798
    </message>
3799
    <message>
769 cbradney 3800
        <source>Apply to all &amp;even Pages</source>
3064 cbradney 3801
        <translation type="obsolete">Примени на све &amp;парне странице</translation>
444 fschmid 3802
    </message>
3803
    <message>
769 cbradney 3804
        <source>Apply to all &amp;odd Pages</source>
3064 cbradney 3805
        <translation type="obsolete">Примени на све &amp;непарне стране</translation>
444 fschmid 3806
    </message>
3807
    <message>
769 cbradney 3808
        <source>Apply from &amp;Page:</source>
3064 cbradney 3809
        <translation type="obsolete">Примени од &amp;стране:</translation>
444 fschmid 3810
    </message>
3811
    <message>
769 cbradney 3812
        <source>To:</source>
3064 cbradney 3813
        <translation type="obsolete">За:</translation>
444 fschmid 3814
    </message>
3815
    <message>
769 cbradney 3816
        <source>&amp;OK</source>
3064 cbradney 3817
        <translation type="obsolete">&amp;У реду</translation>
444 fschmid 3818
    </message>
3819
    <message>
769 cbradney 3820
        <source>&amp;Cancel</source>
3064 cbradney 3821
        <translation type="obsolete">&amp;Откажи</translation>
444 fschmid 3822
    </message>
769 cbradney 3823
</context>
3824
<context>
1525 cbradney 3825
    <name>ArrowChooser</name>
3826
    <message>
3827
        <source>None</source>
3828
        <translation type="unfinished">Ниједан</translation>
3829
    </message>
3830
</context>
3831
<context>
444 fschmid 3832
    <name>Biblio</name>
3833
    <message>
769 cbradney 3834
        <source>Scrapbook</source>
3835
        <translation>Албум</translation>
444 fschmid 3836
    </message>
3837
    <message>
769 cbradney 3838
        <source>&amp;New</source>
3839
        <translation>&amp;Нови</translation>
444 fschmid 3840
    </message>
3841
    <message>
769 cbradney 3842
        <source>&amp;Load...</source>
3843
        <translation>&amp;Учитај...</translation>
444 fschmid 3844
    </message>
3845
    <message>
769 cbradney 3846
        <source>&amp;Save</source>
3847
        <translation>&amp;Сними</translation>
444 fschmid 3848
    </message>
3849
    <message>
769 cbradney 3850
        <source>Save &amp;As...</source>
3851
        <translation>Сними &amp;као...</translation>
444 fschmid 3852
    </message>
3853
    <message>
769 cbradney 3854
        <source>&amp;Close</source>
3855
        <translation>&amp;Затвори</translation>
444 fschmid 3856
    </message>
3857
    <message>
769 cbradney 3858
        <source>&amp;Small</source>
3859
        <translation>&amp;Мала</translation>
444 fschmid 3860
    </message>
3861
    <message>
769 cbradney 3862
        <source>&amp;Medium</source>
3863
        <translation>&amp;Средње</translation>
444 fschmid 3864
    </message>
3865
    <message>
769 cbradney 3866
        <source>&amp;Large</source>
3867
        <translation>&amp;Велики</translation>
444 fschmid 3868
    </message>
3869
    <message>
769 cbradney 3870
        <source>&amp;File</source>
3871
        <translation>&amp;Фајл</translation>
444 fschmid 3872
    </message>
3873
    <message>
769 cbradney 3874
        <source>&amp;Preview</source>
3875
        <translation>&amp;Преглед</translation>
444 fschmid 3876
    </message>
3877
    <message>
769 cbradney 3878
        <source>Scrapbooks (*.scs);;All Files (*)</source>
3879
        <translation>Албуми (*.scs);;Сви фајлови (*)</translation>
444 fschmid 3880
    </message>
3881
    <message>
769 cbradney 3882
        <source>Rename</source>
3883
        <translation>Преименуј</translation>
444 fschmid 3884
    </message>
3885
    <message>
769 cbradney 3886
        <source>Delete</source>
3887
        <translation>Обриши</translation>
444 fschmid 3888
    </message>
3889
    <message>
769 cbradney 3890
        <source>Warning</source>
3824 cbradney 3891
        <translation type="obsolete">Упозорење</translation>
444 fschmid 3892
    </message>
3893
    <message>
769 cbradney 3894
        <source>Name &quot;%1&quot; isn&apos;t unique.
444 fschmid 3895
Please choose another.</source>
3824 cbradney 3896
        <translation type="obsolete">Име „%1“ није јединствено.
444 fschmid 3897
Молим Вас изаберите друго.</translation>