Subversion Repositories Scribus

Rev

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