Subversion Repositories Scribus

Rev

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