Subversion Repositories Scribus

Rev

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

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