Subversion Repositories Scribus

Rev

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