Subversion Repositories Scribus

Rev

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