Subversion Repositories Scribus

Rev

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