Subversion Repositories Scribus

Rev

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

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