Subversion Repositories Scribus

Rev

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