Subversion Repositories Scribus

Rev

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