Subversion Repositories Scribus

Rev

Rev 3363 | Rev 4141 | 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>
1135 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>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])
73
 
74
Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
75
the same as for setFillColor() and setFillShade(). See the constants for
76
available types (FILL_&lt;type&gt;).
77
</source>
78
        <translation type="unfinished"></translation>
79
    </message>
80
    <message>
81
        <source>messagebarText(&quot;string&quot;)
82
 
83
Writes the &quot;string&quot; into the Scribus message bar (status line). The text
84
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
85
</source>
86
        <translation type="unfinished"></translation>
87
    </message>
88
    <message>
3064 cbradney 89
        <source>newPage(where [,&quot;masterpage&quot;])
90
 
91
Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
92
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
93
counted from 1 upwards, no matter what the displayed first page number of your
94
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
95
master page for the new page.
96
 
97
May raise IndexError if the page number is out of range
98
</source>
99
        <translation type="unfinished"></translation>
100
    </message>
101
    <message>
102
        <source>importSVG(&quot;string&quot;)
103
 
104
The &quot;string&quot; must be a valid filename for a SVG image. The text
105
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
106
</source>
107
        <translation type="unfinished"></translation>
108
    </message>
3824 cbradney 109
    <message>
110
        <source>newDocument(size, margins, orientation, firstPageNumber,
111
                        unit, pagesType, firstPageOrder) -&gt; bool
112
 
113
Creates a new document and returns true if successful. The parameters have the
114
following meaning:
115
 
116
size = A tuple (width, height) describing the size of the document. You can
117
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
118
 
119
margins = A tuple (left, right, top, bottom) describing the document
120
margins
121
 
122
orientation = the page orientation - constants PORTRAIT, LANDSCAPE
123
 
124
firstPageNumer = is the number of the first page in the document used for
125
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
126
numbers if you&apos;re creating a document in several parts.
127
 
128
unit: this value sets the measurement units used by the document. Use a
129
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
130
UNIT_PICAS, UNIT_POINTS.
131
 
132
pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
133
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
134
PAGE_4 is 4-fold.
135
 
136
firstPageOrder = What is position of first page in the document.
137
Indexed from 0 (0 = first).
138
 
139
The values for width, height and the margins are expressed in the given unit
140
for the document. PAPER_* constants are expressed in points. If your document
141
is not in points, make sure to account for this.
142
 
143
example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
144
PAGE_4, 3)
145
 
146
May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
147
</source>
148
        <translation type="unfinished"></translation>
149
    </message>
1135 cbradney 150
</context>
151
<context>
152
    <name>@default</name>
153
    <message>
154
        <source>getFont([&quot;name&quot;]) -&gt; string
155
 
156
Returns the font name for the text frame &quot;name&quot;. If this text frame
157
has some text selected the value assigned to the first character
158
of the selection is returned. If &quot;name&quot; is not given the currently
159
selected item is used.
160
</source>
161
        <translation type="unfinished"></translation>
162
    </message>
163
    <message>
164
        <source>getTextLength([&quot;name&quot;]) -&gt; integer
165
 
166
Returns the length of the text in the text frame &quot;name&quot;.
167
If &quot;name&quot; is not given the currently selected item is used.
168
</source>
169
        <translation type="unfinished"></translation>
170
    </message>
171
    <message>
172
        <source>getText([&quot;name&quot;]) -&gt; string
173
 
174
Returns the text of the text frame &quot;name&quot;. If this text frame has some text
175
selected, the selected text is returned. All text in the frame, not just
176
currently visible text, is returned. If &quot;name&quot; is not given the currently
177
selected item is used.
178
</source>
179
        <translation type="unfinished"></translation>
180
    </message>
181
    <message>
182
        <source>getAllText([&quot;name&quot;]) -&gt; string
183
 
184
Returns the text of the text frame &quot;name&quot; and of all text frames which are
185
linked with this frame. If this textframe has some text selected, the selected
186
text is returned. If &quot;name&quot; is not given the currently selected item is
187
used.
188
</source>
189
        <translation type="unfinished"></translation>
190
    </message>
191
    <message>
192
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float
193
 
194
Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
195
points. If &quot;name&quot; is not given the currently selected item is used.
196
</source>
197
        <translation type="unfinished"></translation>
198
    </message>
199
    <message>
200
        <source>getColumnGap([&quot;name&quot;]) -&gt; float
201
 
202
Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
203
&quot;name&quot; is not given the currently selected item is used.
204
</source>
205
        <translation type="unfinished"></translation>
206
    </message>
207
    <message>
208
        <source>getColumns([&quot;name&quot;]) -&gt; integer
209
 
210
Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
211
given the currently selected item is used.
212
</source>
213
        <translation type="unfinished"></translation>
214
    </message>
215
    <message>
216
        <source>setText(&quot;text&quot;, [&quot;name&quot;])
217
 
218
Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
219
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
220
for more details. If &quot;name&quot; is not given the currently selected item is
221
used.
222
</source>
223
        <translation type="unfinished"></translation>
224
    </message>
225
    <message>
226
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])
227
 
228
Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
229
selected only the selected text is changed.  If &quot;name&quot; is not given the
230
currently selected item is used.
231
 
232
May throw ValueError if the font cannot be found.
233
</source>
234
        <translation type="unfinished"></translation>
235
    </message>
236
    <message>
237
        <source>setFontSize(size, [&quot;name&quot;])
238
 
239
Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
240
as a value in points. If there is some text selected only the selected text is
241
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
242
currently selected item is used.
243
 
244
May throw ValueError for a font size that&apos;s out of bounds.
245
</source>
246
        <translation type="unfinished"></translation>
247
    </message>
248
    <message>
249
        <source>setLineSpacing(size, [&quot;name&quot;])
250
 
251
Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
252
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
253
item is used.
254
 
255
May throw ValueError if the line spacing is out of bounds.
256
</source>
257
        <translation type="unfinished"></translation>
258
    </message>
259
    <message>
260
        <source>setColumnGap(size, [&quot;name&quot;])
261
 
262
Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
263
&quot;name&quot; is not given the currently selected item is used.
264
 
265
May throw ValueError if the column gap is out of bounds (must be positive).
266
</source>
267
        <translation type="unfinished"></translation>
268
    </message>
269
    <message>
270
        <source>setColumns(nr, [&quot;name&quot;])
271
 
272
Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
273
If &quot;name&quot; is not given the currently selected item is used.
274
 
275
May throw ValueError if number of columns is not at least one.
276
</source>
277
        <translation type="unfinished"></translation>
278
    </message>
279
    <message>
280
        <source>setTextAlignment(align, [&quot;name&quot;])
281
 
282
Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
283
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
284
be one of the ALIGN_ constants defined in this module - see dir(scribus).
285
 
286
May throw ValueError for an invalid alignment constant.
287
</source>
288
        <translation type="unfinished"></translation>
289
    </message>
290
    <message>
291
        <source>deleteText([&quot;name&quot;])
292
 
293
Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
294
only the selected text will be deleted. If &quot;name&quot; is not given the currently
295
selected item is used.
296
</source>
297
        <translation type="unfinished"></translation>
298
    </message>
299
    <message>
300
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])
301
 
302
Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
303
is some text selected only the selected text is changed. If &quot;name&quot; is not
304
given the currently selected item is used.
305
</source>
306
        <translation type="unfinished"></translation>
307
    </message>
308
    <message>
309
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])
310
 
311
Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
312
selected item is used.
313
</source>
314
        <translation type="unfinished"></translation>
315
    </message>
316
    <message>
317
        <source>setTextShade(shade, [&quot;name&quot;])
318
 
319
Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
320
there is some text selected only the selected text is changed. &quot;shade&quot; must
321
be an integer value in the range from 0 (lightest) to 100 (full color
322
intensity). If &quot;name&quot; is not given the currently selected item is
323
used.
324
</source>
325
        <translation type="unfinished"></translation>
326
    </message>
327
    <message>
328
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)
329
 
330
Link two text frames. The frame named &quot;fromname&quot; is linked to the
331
frame named &quot;toname&quot;. The target frame must be an empty text frame
332
and must not link to or be linked from any other frames already.
333
 
334
May throw ScribusException if linking rules are violated.
335
</source>
336
        <translation type="unfinished"></translation>
337
    </message>
338
    <message>
339
        <source>unlinkTextFrames(&quot;name&quot;)
340
 
341
Remove the specified (named) object from the text frame flow/linkage. If the
342
frame was in the middle of a chain, the previous and next frames will be
343
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;
344
 
345
May throw ScribusException if linking rules are violated.
346
</source>
347
        <translation type="unfinished"></translation>
348
    </message>
349
    <message>
350
        <source>traceText([&quot;name&quot;])
351
 
352
Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
353
currently selected item is used.</source>
354
        <translation type="unfinished"></translation>
355
    </message>
356
    <message>
357
        <source>getColor(&quot;name&quot;) -&gt; tuple
358
 
359
Returns a tuple (C, M, Y, K) containing the four color components of the
360
color &quot;name&quot; from the current document. If no document is open, returns
361
the value of the named color from the default document colors.
362
 
363
May raise NotFoundError if the named color wasn&apos;t found.
364
May raise ValueError if an invalid color name is specified.
365
</source>
366
        <translation type="unfinished"></translation>
367
    </message>
368
    <message>
369
        <source>changeColor(&quot;name&quot;, c, m, y, k)
370
 
371
Changes the color &quot;name&quot; to the specified CMYK value. The color value is
372
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
373
Color components should be in the range from 0 to 255.
374
 
375
May raise NotFoundError if the named color wasn&apos;t found.
376
May raise ValueError if an invalid color name is specified.
377
</source>
378
        <translation type="unfinished"></translation>
379
    </message>
380
    <message>
381
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)
382
 
383
Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
384
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
385
&quot;None&quot; - transparent.
386
 
387
deleteColor works on the default document colors if there is no document open.
388
In that case, &quot;replace&quot;, if specified, has no effect.
389
 
390
May raise NotFoundError if a named color wasn&apos;t found.
391
May raise ValueError if an invalid color name is specified.
392
</source>
393
        <translation type="unfinished"></translation>
394
    </message>
395
    <message>
396
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)
397
 
398
Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.
399
 
400
May raise NotFoundError if a named color wasn&apos;t found.
401
May raise ValueError if an invalid color name is specified.
402
</source>
403
        <translation type="unfinished"></translation>
404
    </message>
405
    <message>
406
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
407
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
408
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer
409
 
410
Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
411
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
412
button, OK, is displayed. Only the caption and message arguments are required,
413
though setting an icon and appropriate button(s) is strongly
414
recommended. The message text may contain simple HTML-like markup.
415
 
416
Returns the number of the button the user pressed. Button numbers start
417
at 1.
418
 
419
For the icon and the button parameters there are predefined constants available
420
with the same names as in the Qt Documentation. These are the BUTTON_* and
421
ICON_* constants defined in the module. There are also two extra constants that
422
can be binary-ORed with button constants:
423
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
424
    BUTTONOPT_ESCAPE    Pressing escape presses this button.
425
 
426
Usage examples:
427
result = messageBox(&apos;Script failed&apos;,
428
                    &apos;This script only works when you have a text frame selected.&apos;,
429
                    ICON_ERROR)
430
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
431
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
432
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)
433
 
434
Defined button and icon constants:
435
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
436
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
437
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
438
</source>
439
        <translation type="unfinished"></translation>
440
    </message>
441
    <message>
442
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string
443
 
444
Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
445
Parameters: window title, text in the window and optional &apos;default&apos; value.
446
 
447
Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
448
</source>
449
        <translation type="unfinished"></translation>
450
    </message>
451
    <message>
452
        <source>closeDoc()
453
 
454
Closes the current document without prompting to save.
455
 
456
May throw NoDocOpenError if there is no document to close
457
</source>
458
        <translation type="unfinished"></translation>
459
    </message>
460
    <message>
461
        <source>haveDoc() -&gt; bool
462
 
463
Returns true if there is a document open.
464
</source>
465
        <translation type="unfinished"></translation>
466
    </message>
467
    <message>
468
        <source>openDoc(&quot;name&quot;)
469
 
470
Opens the document &quot;name&quot;.
471
 
472
May raise ScribusError if the document could not be opened.
473
</source>
474
        <translation type="unfinished"></translation>
475
    </message>
476
    <message>
477
        <source>saveDoc()
478
 
479
Saves the current document with its current name, returns true if successful.
480
If the document has not already been saved, this may bring up an interactive
481
save file dialog.
482
 
483
If the save fails, there is currently no way to tell.
484
</source>
485
        <translation type="unfinished"></translation>
486
    </message>
487
    <message>
488
        <source>saveDocAs(&quot;name&quot;)
489
 
490
Saves the current document under the new name &quot;name&quot; (which may be a full or
491
relative path).
492
 
493
May raise ScribusError if the save fails.
494
</source>
495
        <translation type="unfinished"></translation>
496
    </message>
497
    <message>
498
        <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool
499
 
500
Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
501
strings.
502
</source>
503
        <translation type="unfinished"></translation>
504
    </message>
505
    <message>
506
        <source>setMargins(lr, rr, tr, br)
507
 
508
Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
509
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
510
constants.
511
</source>
512
        <translation type="unfinished"></translation>
513
    </message>
514
    <message>
515
        <source>setUnit(type)
516
 
517
Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
518
defined as constants UNIT_&lt;type&gt;.
519
 
520
May raise ValueError if an invalid unit is passed.
521
</source>
522
        <translation type="unfinished"></translation>
523
    </message>
524
    <message>
525
        <source>getUnit() -&gt; integer (Scribus unit constant)
526
 
527
Returns the measurement units of the document. The returned value will be one
528
of the UNIT_* constants:
529
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
530
</source>
531
        <translation type="unfinished"></translation>
532
    </message>
533
    <message>
534
        <source>loadStylesFromFile(&quot;filename&quot;)
535
 
536
Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
537
current document.
538
</source>
539
        <translation type="unfinished"></translation>
540
    </message>
541
    <message>
542
        <source>setDocType(facingPages, firstPageLeft)
543
 
544
Sets the document type. To get facing pages set the first parameter to
545
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
546
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
547
a right page use FIRSTPAGERIGHT.
548
</source>
549
        <translation type="unfinished"></translation>
550
    </message>
551
    <message>
552
        <source>getLineColor([&quot;name&quot;]) -&gt; string
553
 
554
Returns the name of the line color of the object &quot;name&quot;.
555
If &quot;name&quot; is not given the currently selected item is used.
556
</source>
557
        <translation type="unfinished"></translation>
558
    </message>
559
    <message>
560
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer
561
 
562
Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
563
is not given the currently selected Item is used.
564
</source>
565
        <translation type="unfinished"></translation>
566
    </message>
567
    <message>
568
        <source>getLineShade([&quot;name&quot;]) -&gt; integer
569
 
570
Returns the shading value of the line color of the object &quot;name&quot;.
571
If &quot;name&quot; is not given the currently selected item is used.
572
</source>
573
        <translation type="unfinished"></translation>
574
    </message>
575
    <message>
576
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)
577
 
578
Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
579
the currently selected item is used.  The join types are:
580
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
581
</source>
582
        <translation type="unfinished"></translation>
583
    </message>
584
    <message>
585
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)
586
 
587
Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
588
currently selected item is used. The cap types are:
589
CAP_FLAT, CAP_ROUND, CAP_SQUARE
590
</source>
591
        <translation type="unfinished"></translation>
592
    </message>
593
    <message>
594
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)
595
 
596
Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
597
currently selected item is used. Line style constants are:
598
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
599
</source>
600
        <translation type="unfinished"></translation>
601
    </message>
602
    <message>
603
        <source>getFillShade([&quot;name&quot;]) -&gt; integer
604
 
605
Returns the shading value of the fill color of the object &quot;name&quot;.
606
If &quot;name&quot; is not given the currently selected item is used.
607
</source>
608
        <translation type="unfinished"></translation>
609
    </message>
610
    <message>
611
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)
612
 
613
Returns a (x, y) tuple containing the scaling values of the image frame
614
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
615
</source>
616
        <translation type="unfinished"></translation>
617
    </message>
618
    <message>
619
        <source>getImageName([&quot;name&quot;]) -&gt; string
620
 
621
Returns the filename for the image in the image frame. If &quot;name&quot; is not
622
given the currently selected item is used.
623
</source>
624
        <translation type="unfinished"></translation>
625
    </message>
626
    <message>
627
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)
628
 
629
Returns a (width, height) tuple with the size of the object &quot;name&quot;.
630
If &quot;name&quot; is not given the currently selected item is used. The size is
631
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
632
for reference.
633
</source>
634
        <translation type="unfinished"></translation>
635
    </message>
636
    <message>
637
        <source>getRotation([&quot;name&quot;]) -&gt; integer
638
 
639
Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
640
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
641
is used.
642
</source>
643
        <translation type="unfinished"></translation>
644
    </message>
645
    <message>
646
        <source>getAllObjects() -&gt; list
647
 
648
Returns a list containing the names of all objects on the current page.
649
</source>
650
        <translation type="unfinished"></translation>
651
    </message>
652
    <message>
653
        <source>moveObjectAbs(x, y [, &quot;name&quot;])
654
 
655
Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
656
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
657
is not given the currently selected item is used.  If the object &quot;name&quot;
658
belongs to a group, the whole group is moved.
659
</source>
660
        <translation type="unfinished"></translation>
661
    </message>
662
    <message>
663
        <source>rotateObject(rot [, &quot;name&quot;])
664
 
665
Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
666
rotated by the vertex that is currently selected as the rotation point - by
667
default, the top left vertext at zero rotation. Positive values mean counter
668
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
669
given the currently selected item is used.
670
</source>
671
        <translation type="unfinished"></translation>
672
    </message>
673
    <message>
674
        <source>sizeObject(width, height [, &quot;name&quot;])
675
 
676
Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
677
is not given the currently selected item is used.
678
</source>
679
        <translation type="unfinished"></translation>
680
    </message>
681
    <message>
682
        <source>getSelectedObject([nr]) -&gt; string
683
 
684
Returns the name of the selected object. &quot;nr&quot; if given indicates the number
685
of the selected object, e.g. 0 means the first selected object, 1 means the
686
second selected Object and so on.
687
</source>
688
        <translation type="unfinished"></translation>
689
    </message>
690
    <message>
691
        <source>selectionCount() -&gt; integer
692
 
693
Returns the number of selected objects.
694
</source>
695
        <translation type="unfinished"></translation>
696
    </message>
697
    <message>
698
        <source>selectObject(&quot;name&quot;)
699
 
700
Selects the object with the given &quot;name&quot;.
701
</source>
702
        <translation type="unfinished"></translation>
703
    </message>
704
    <message>
705
        <source>deselectAll()
706
 
707
Deselects all objects in the whole document.
708
</source>
709
        <translation type="unfinished"></translation>
710
    </message>
711
    <message>
712
        <source>groupObjects(list)
713
 
714
Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
715
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
716
items are used.
717
</source>
718
        <translation type="unfinished"></translation>
719
    </message>
720
    <message>
721
        <source>unGroupObjects(&quot;name&quot;)
722
 
723
Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
724
        <translation type="unfinished"></translation>
725
    </message>
726
    <message>
727
        <source>scaleGroup(factor [,&quot;name&quot;])
728
 
729
Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
730
the group, values smaller than 1 make the group smaller e.g a value of 0.5
731
scales the group to 50 % of its original size, a value of 1.5 scales the group
732
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
733
0. If &quot;name&quot; is not given the currently selected item is used.
734
 
735
May raise ValueError if an invalid scale factor is passed.
736
</source>
737
        <translation type="unfinished"></translation>
738
    </message>
739
    <message>
740
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])
741
 
742
Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
743
not given the currently selected item is used.
744
 
745
May raise WrongFrameTypeError if the target frame is not an image frame
746
</source>
747
        <translation type="unfinished"></translation>
748
    </message>
749
    <message>
750
        <source>scaleImage(x, y [, &quot;name&quot;])
751
 
752
Sets the scaling factors of the picture in the image frame &quot;name&quot;.
753
If &quot;name&quot; is not given the currently selected item is used. A number of 1
754
means 100 %.
755
 
756
May raise WrongFrameTypeError if the target frame is not an image frame
757
</source>
758
        <translation type="unfinished"></translation>
759
    </message>
760
    <message>
761
        <source>lockObject([&quot;name&quot;]) -&gt; bool
762
 
763
Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
764
If &quot;name&quot; is not given the currently selected item is used. Returns true
765
if locked.
766
</source>
767
        <translation type="unfinished"></translation>
768
    </message>
769
    <message>
770
        <source>isLocked([&quot;name&quot;]) -&gt; bool
771
 
772
Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
773
currently selected item is used.
774
</source>
775
        <translation type="unfinished"></translation>
776
    </message>
777
    <message>
778
        <source>getFontNames() -&gt; list
779
 
780
Returns a list with the names of all available fonts.
781
</source>
782
        <translation type="unfinished"></translation>
783
    </message>
784
    <message>
785
        <source>getXFontNames() -&gt; list of tuples
786
 
787
Returns a larger font info. It&apos;s a list of the tuples with:
788
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
789
</source>
790
        <translation type="unfinished"></translation>
791
    </message>
792
    <message>
793
        <source>getLayers() -&gt; list
794
 
795
Returns a list with the names of all defined layers.
796
</source>
797
        <translation type="unfinished"></translation>
798
    </message>
799
    <message>
800
        <source>setActiveLayer(&quot;name&quot;)
801
 
802
Sets the active layer to the layer named &quot;name&quot;.
803
 
804
May raise NotFoundError if the layer can&apos;t be found.
805
May raise ValueError if the layer name isn&apos;t acceptable.
806
</source>
807
        <translation type="unfinished"></translation>
808
    </message>
809
    <message>
810
        <source>getActiveLayer() -&gt; string
811
 
812
Returns the name of the current active layer.
813
</source>
814
        <translation type="unfinished"></translation>
815
    </message>
816
    <message>
817
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])
818
 
819
Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
820
If &quot;name&quot; is not given the currently selected item is used.
821
 
822
May raise NotFoundError if the layer can&apos;t be found.
823
May raise ValueError if the layer name isn&apos;t acceptable.
824
</source>
825
        <translation type="unfinished"></translation>
826
    </message>
827
    <message>
828
        <source>setLayerVisible(&quot;layer&quot;, visible)
829
 
830
Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
831
the layer is invisible.
832
 
833
May raise NotFoundError if the layer can&apos;t be found.
834
May raise ValueError if the layer name isn&apos;t acceptable.
835
</source>
836
        <translation type="unfinished"></translation>
837
    </message>
838
    <message>
839
        <source>setLayerPrintable(&quot;layer&quot;, printable)
840
 
841
Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
842
false the layer won&apos;t be printed.
843
 
844
May raise NotFoundError if the layer can&apos;t be found.
845
May raise ValueError if the layer name isn&apos;t acceptable.
846
</source>
847
        <translation type="unfinished"></translation>
848
    </message>
849
    <message>
850
        <source>deleteLayer(&quot;layer&quot;)
851
 
852
Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
853
exists or if it&apos;s the only layer in the document.
854
 
855
May raise NotFoundError if the layer can&apos;t be found.
856
May raise ValueError if the layer name isn&apos;t acceptable.
857
</source>
858
        <translation type="unfinished"></translation>
859
    </message>
860
    <message>
861
        <source>createLayer(layer)
862
 
863
Creates a new layer with the name &quot;name&quot;.
864
 
865
May raise ValueError if the layer name isn&apos;t acceptable.
866
</source>
867
        <translation type="unfinished"></translation>
868
    </message>
869
    <message>
870
        <source>getGuiLanguage() -&gt; string
871
 
872
Returns a string with the -lang value.
873
</source>
874
        <translation type="unfinished"></translation>
875
    </message>
876
    <message>
877
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string
878
 
879
Creates a new ellipse on the current page and returns its name.
880
The coordinates are given in the current measurement units of the document
881
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
882
because you need this name for further referencing of that object. If &quot;name&quot;
883
is not given Scribus will create one for you.
884
 
885
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
886
</source>
887
        <translation type="unfinished"></translation>
888
    </message>
889
    <message>
890
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string
891
 
892
Creates a new picture frame on the current page and returns its name. The
893
coordinates are given in the current measurement units of the document.
894
&quot;name&quot; should be a unique identifier for the object because you need this
895
name for further access to that object. If &quot;name&quot; is not given Scribus will
896
create one for you.
897
 
898
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
899
</source>
900
        <translation type="unfinished"></translation>
901
    </message>
902
    <message>
903
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string
904
 
905
Creates a new text frame on the actual page and returns its name.
906
The coordinates are given in the actual measurement unit of the document (see
907
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
908
you need this name for further referencing of that object. If &quot;name&quot; is not
909
given Scribus will create one for you.
910
 
911
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
912
</source>
913
        <translation type="unfinished"></translation>
914
    </message>
915
    <message>
916
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string
917
 
918
Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
919
its name. The coordinates are given in the current measurement unit of the
920
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
921
object because you need this name for further access to that object. If
922
&quot;name&quot; is not given Scribus will create one for you.
923
 
924
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
925
</source>
926
        <translation type="unfinished"></translation>
927
    </message>
928
    <message>
929
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string
930
 
931
Creates a new polyline and returns its name. The points for the polyline are
932
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
933
The coordinates are given in the current measurement units of the document (see
934
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
935
you need this name for further access to that object. If &quot;name&quot; is not given
936
Scribus will create one for you.
937
 
938
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
939
May raise ValueError if an insufficient number of points is passed or if
940
the number of values passed don&apos;t group into points without leftovers.
941
</source>
942
        <translation type="unfinished"></translation>
943
    </message>
944
    <message>
945
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string
946
 
947
Creates a new polygon and returns its name. The points for the polygon are
948
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
949
At least three points are required. There is no need to repeat the first point
950
to close the polygon. The polygon is automatically closed by connecting the
951
first and the last point.  The coordinates are given in the current measurement
952
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
953
identifier for the object because you need this name for further access to that
954
object. If &quot;name&quot; is not given Scribus will create one for you.
955
 
956
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
957
May raise ValueError if an insufficient number of points is passed or if
958
the number of values passed don&apos;t group into points without leftovers.
959
</source>
960
        <translation type="unfinished"></translation>
961
    </message>
962
    <message>
963
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string
964
 
965
Creates a new bezier curve and returns its name. The points for the bezier
966
curve are stored in the list &quot;list&quot; in the following order:
967
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
968
In the points list, x and y mean the x and y coordinates of the point and kx
969
and ky meaning the control point for the curve.  The coordinates are given in
970
the current measurement units of the document (see UNIT constants). &quot;name&quot;
971
should be a unique identifier for the object because you need this name for
972
further access to that object. If &quot;name&quot; is not given Scribus will create one
973
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>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string
983
 
984
Creates a new pathText by merging the two objects &quot;textbox&quot; and
985
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
986
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
987
unique identifier for the object because you need this name for further access
988
to that object. If &quot;name&quot; is not given Scribus will create one for you.
989
 
990
May raise NameExistsError if you explicitly pass a name that&apos;s already used.
991
May raise NotFoundError if one or both of the named base object don&apos;t exist.
992
</source>
993
        <translation type="unfinished"></translation>
994
    </message>
995
    <message>
996
        <source>deleteObject([&quot;name&quot;])
997
 
998
Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
999
selected item is deleted.
1000
</source>
1001
        <translation type="unfinished"></translation>
1002
    </message>
1003
    <message>
1004
        <source>textFlowsAroundFrame(&quot;name&quot; [, state])
1005
 
1006
Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
1007
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
1008
is not passed, text flow is toggled.
1009
</source>
1010
        <translation type="unfinished"></translation>
1011
    </message>
1012
    <message>
1013
        <source>objectExists([&quot;name&quot;]) -&gt; bool
1014
 
1015
Test if an object with specified name really exists in the document.
1016
The optional parameter is the object name. When no object name is given,
1017
returns True if there is something selected.
1018
</source>
1019
        <translation type="unfinished"></translation>
1020
    </message>
1021
    <message>
1022
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])
1023
 
1024
Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
1025
given, it&apos;s applied on the selected object.
1026
</source>
1027
        <translation type="unfinished"></translation>
1028
    </message>
1029
    <message>
1030
        <source>getAllStyles() -&gt; list
1031
 
1032
Return a list of the names of all paragraph styles in the current document.
1033
</source>
1034
        <translation type="unfinished"></translation>
1035
    </message>
1036
    <message>
1037
        <source>currentPage() -&gt; integer
1038
 
1039
Returns the number of the current working page. Page numbers are counted from 1
1040
upwards, no matter what the displayed first page number of your document is.
1041
</source>
1042
        <translation type="unfinished"></translation>
1043
    </message>
1044
    <message>
1045
        <source>redrawAll()
1046
 
1047
Redraws all pages.
1048
</source>
1049
        <translation type="unfinished"></translation>
1050
    </message>
1051
    <message>
1052
        <source>savePageAsEPS(&quot;name&quot;)
1053
 
1054
Saves the current page as an EPS to the file &quot;name&quot;.
1055
 
1056
May raise ScribusError if the save failed.
1057
</source>
1058
        <translation type="unfinished"></translation>
1059
    </message>
1060
    <message>
1061
        <source>deletePage(nr)
1062
 
1063
Deletes the given page. Does nothing if the document contains only one page.
1064
Page numbers are counted from 1 upwards, no matter what the displayed first
1065
page number is.
1066
 
1067
May raise IndexError if the page number is out of range
1068
</source>
1069
        <translation type="unfinished"></translation>
1070
    </message>
1071
    <message>
1072
        <source>gotoPage(nr)
1073
 
1074
Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
1075
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
1076
just sets the page that script commands will operates on.
1077
 
1078
May raise IndexError if the page number is out of range.
1079
</source>
1080
        <translation type="unfinished"></translation>
1081
    </message>
1082
    <message>
1083
        <source>pageCount() -&gt; integer
1084
 
1085
Returns the number of pages in the document.
1086
</source>
1087
        <translation type="unfinished"></translation>
1088
    </message>
1089
    <message>
1090
        <source>getHGuides() -&gt; list
1091
 
1092
Returns a list containing positions of the horizontal guides. Values are in the
1093
document&apos;s current units - see UNIT_&lt;type&gt; constants.
1094
</source>
1095
        <translation type="unfinished"></translation>
1096
    </message>
1097
    <message>
1098
        <source>setHGuides(list)
1099
 
1100
Sets horizontal guides. Input parameter must be a list of guide positions
1101
measured in the current document units - see UNIT_&lt;type&gt; constants.
1102
 
1103
Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
1104
         setHGuides([90,250]) # replace current guides entirely
1105
</source>
1106
        <translation type="unfinished"></translation>
1107
    </message>
1108
    <message>
1109
        <source>getVGuides()
1110
 
1111
See getHGuides.
1112
</source>
1113
        <translation type="unfinished"></translation>
1114
    </message>
1115
    <message>
1116
        <source>setVGuides()
1117
 
1118
See setHGuides.
1119
</source>
1120
        <translation type="unfinished"></translation>
1121
    </message>
1122
    <message>
1123
        <source>getPageSize() -&gt; tuple
1124
 
1125
Returns a tuple with page dimensions measured in the document&apos;s current units.
1126
See UNIT_&lt;type&gt; constants and getPageMargins()
1127
</source>
1128
        <translation type="unfinished"></translation>
1129
    </message>
1130
    <message>
1131
        <source>getPageItems() -&gt; list
1132
 
1133
Returns a list of tuples with items on the current page. The tuple is:
1134
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
1135
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
1136
the page...
1137
</source>
1138
        <translation type="unfinished"></translation>
1139
    </message>
1140
    <message>
1141
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])
1142
 
1143
Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
1144
is the name of one of the defined colors. If &quot;name&quot; is not given the
1145
currently selected item is used.
1146
</source>
1147
        <translation type="unfinished"></translation>
1148
    </message>
1149
    <message>
1150
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])
1151
 
1152
Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
1153
is not given the currently selected item is used.
1154
</source>
1155
        <translation type="unfinished"></translation>
1156
    </message>
1157
    <message>
1158
        <source>setLineWidth(width, [&quot;name&quot;])
1159
 
1160
Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
1161
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
1162
given the currently selected item is used.
1163
 
1164
May raise ValueError if the line width is out of bounds.
1165
</source>
1166
        <translation type="unfinished"></translation>
1167
    </message>
1168
    <message>
1169
        <source>setLineShade(shade, [&quot;name&quot;])
1170
 
1171
Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
1172
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1173
(full color intensity). If &quot;name&quot; is not given the currently selected item
1174
is used.
1175
 
1176
May raise ValueError if the line shade is out of bounds.
1177
</source>
1178
        <translation type="unfinished"></translation>
1179
    </message>
1180
    <message>
1181
        <source>setLineJoin(join, [&quot;name&quot;])
1182
 
1183
Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
1184
If &quot;name&quot; is not given the currently selected item is used. There are
1185
predefined constants for join - JOIN_&lt;type&gt;.
1186
</source>
1187
        <translation type="unfinished"></translation>
1188
    </message>
1189
    <message>
1190
        <source>setLineEnd(endtype, [&quot;name&quot;])
1191
 
1192
Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
1193
If &quot;name&quot; is not given the currently selected item is used. There are
1194
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
1195
</source>
1196
        <translation type="unfinished"></translation>
1197
    </message>
1198
    <message>
1199
        <source>setLineStyle(style, [&quot;name&quot;])
1200
 
1201
Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
1202
is not given the currently selected item is used. There are predefined
1203
constants for &quot;style&quot; - LINE_&lt;style&gt;.
1204
</source>
1205
        <translation type="unfinished"></translation>
1206
    </message>
1207
    <message>
1208
        <source>setFillShade(shade, [&quot;name&quot;])
1209
 
1210
Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
1211
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
1212
(full Color intensity). If &quot;name&quot; is not given the currently selected
1213
Item is used.
1214
 
1215
May raise ValueError if the fill shade is out of bounds.
1216
</source>
1217
        <translation type="unfinished"></translation>
1218
    </message>
1219
    <message>
1220
        <source>setCornerRadius(radius, [&quot;name&quot;])
1221
 
1222
Sets the corner radius of the object &quot;name&quot;. The radius is expressed
1223
in points. If &quot;name&quot; is not given the currently selected item is used.
1224
 
1225
May raise ValueError if the corner radius is negative.
1226
</source>
1227
        <translation type="unfinished"></translation>
1228
    </message>
1229
    <message>
1230
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])
1231
 
1232
Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
1233
If &quot;name&quot; is not given the currently selected item is used.
1234
 
1235
May raise NotFoundError if the line style doesn&apos;t exist.
1236
</source>
1237
        <translation type="unfinished"></translation>
1238
    </message>
1239
    <message>
1240
        <source>progressReset()
1241
 
1242
Cleans up the Scribus progress bar previous settings. It is called before the
1243
new progress bar use. See progressSet.
1244
</source>
1245
        <translation type="unfinished"></translation>
1246
    </message>
1247
    <message>
1248
        <source>progressTotal(max)
1249
 
1250
Sets the progress bar&apos;s maximum steps value to the specified number.
1251
See progressSet.
1252
</source>
1253
        <translation type="unfinished"></translation>
1254
    </message>
1255
    <message>
1256
        <source>progressSet(nr)
1257
 
1258
Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
1259
progressTotal. The progress bar uses the concept of steps; you give it the
1260
total number of steps and the number of steps completed so far and it will
1261
display the percentage of steps that have been completed. You can specify the
1262
total number of steps with progressTotal(). The current number of steps is set
1263
with progressSet(). The progress bar can be rewound to the beginning with
1264
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
1265
</source>
1266
        <translation type="unfinished"></translation>
1267
    </message>
1268
    <message>
1269
        <source>setCursor()
1270
 
1271
[UNSUPPORTED!] This might break things, so steer clear for now.
1272
</source>
1273
        <translation type="unfinished"></translation>
1274
    </message>
1275
    <message>
1276
        <source>docChanged(bool)
1277
 
1278
Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
1279
useful to call this procedure when you&apos;re changing the document, because Scribus
1280
won&apos;t automatically notice when you change the document using a script.
1281
</source>
1282
        <translation type="unfinished"></translation>
1283
    </message>
1284
    <message>
1525 cbradney 1285
        <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)
1286
 
1287
Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
1288
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
1289
Both `scaletoframe&apos; and `proportional&apos; are boolean.
1290
 
1291
May raise WrongFrameTypeError.
1292
</source>
1293
        <translation type="unfinished"></translation>
1294
    </message>
1295
    <message>
1296
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1297
 
1298
Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
1299
that the layer &quot;layer&quot; is visible, a value of False means that the layer
1300
&quot;layer&quot; is invisible.
1301
 
1302
May raise NotFoundError if the layer can&apos;t be found.
1303
May raise ValueError if the layer name isn&apos;t acceptable.
1304
</source>
1305
        <translation type="unfinished"></translation>
1306
    </message>
1307
    <message>
1308
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool
1309
 
1310
Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
1311
that the layer &quot;layer&quot; can be printed, a value of False means that printing
1312
the layer &quot;layer&quot; is disabled.
1313
 
1314
May raise NotFoundError if the layer can&apos;t be found.
1315
May raise ValueError if the layer name isn&apos;t acceptable.
1316
</source>
1317
        <translation type="unfinished"></translation>
1318
    </message>
1319
    <message>
1320
        <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple
1321
 
1322
Returns a tuple (R,G,B) containing the three color components of the
1323
color &quot;name&quot; from the current document, converted to the RGB color
1324
space. If no document is open, returns the value of the named color
1325
from the default document colors.
1326
 
1327
May raise NotFoundError if the named color wasn&apos;t found.
1328
May raise ValueError if an invalid color name is specified.
1329
</source>
1330
        <translation type="unfinished"></translation>
1331
    </message>
1332
    <message>
1135 cbradney 1333
        <source>defineColor(&quot;name&quot;, c, m, y, k)
1334
 
1335
Defines a new color &quot;name&quot;. The color Value is defined via four components:
1525 cbradney 1336
c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in
1135 cbradney 1337
the range from 0 to 255.
1338
 
1339
May raise ValueError if an invalid color name is specified.
1340
</source>
1341
        <translation type="unfinished"></translation>
1342
    </message>
1343
    <message>
1344
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer
1345
 
1525 cbradney 1346
Returns the corner radius of the object &quot;name&quot;. The radius isexpressed in points. If &quot;name&quot; is not given the currentlyselected item is used.
1135 cbradney 1347
</source>
1348
        <translation type="unfinished"></translation>
1349
    </message>
1350
    <message>
1351
        <source>getPosition([&quot;name&quot;]) -&gt; (x,y)
1352
 
1353
Returns a (x, y) tuple with the position of the object &quot;name&quot;.
1525 cbradney 1354
If &quot;name&quot; is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document
1135 cbradney 1355
- see UNIT_&lt;type&gt; for reference.
1356
</source>
1357
        <translation type="unfinished"></translation>
1358
    </message>
1359
    <message>
1525 cbradney 1360
        <source>getPropertyCType(object, property, includesuper=True)
1361
 
1362
Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
1363
for details of arguments.
1364
 
1365
If `includesuper&apos; is true, search inherited properties too.
1366
</source>
1367
        <translation type="unfinished"></translation>
1368
    </message>
1369
    <message>
1370
        <source>getPropertyNames(object, includesuper=True)
1371
 
1372
Return a list of property names supported by `object&apos;.
1373
If `includesuper&apos; is true, return properties supported
1374
by parent classes as well.
1375
</source>
1376
        <translation type="unfinished"></translation>
1377
    </message>
1378
    <message>
1379
        <source>getProperty(object, property)
1380
 
1381
Return the value of the property `property&apos; of the passed `object&apos;.
1382
 
1383
The `object&apos; argument may be a string, in which case the named PageItem
1384
is searched for. It may also be a PyCObject, which may point to any
1385
C++ QObject instance.
1386
 
1387
The `property&apos; argument must be a string, and is the name of the property
1388
to look up on `object&apos;.
1389
 
1390
The return value varies depending on the type of the property.
1391
</source>
1392
        <translation type="unfinished"></translation>
1393
    </message>
1394
    <message>
1395
        <source>setProperty(object, property, value)
1396
 
1397
Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
1398
compatible with the type of `property&apos;, an exception is raised. An exception may
1399
also be raised if the underlying setter fails.
1400
 
1401
See getProperty() for more information.
1402
</source>
1403
        <translation type="unfinished"></translation>
1404
    </message>
1405
    <message>
1406
        <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)
1407
 
1408
Return a list of children of `object&apos;, possibly restricted to children
1409
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
1410
search recursively through children, grandchildren, etc.
1411
 
1412
See QObject::children() in the Qt docs for more information.
1413
</source>
1414
        <translation type="unfinished"></translation>
1415
    </message>
1416
    <message>
1417
        <source>getChild(object, childname, ofclass=None, recursive=True)
1418
 
1419
Return the first child of `object&apos; named `childname&apos;, possibly restricting
1420
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
1421
search recursively through children, grandchildren, etc.
1422
</source>
1423
        <translation type="unfinished"></translation>
1424
    </message>
1425
    <message>
1135 cbradney 1426
        <source>rotateObjectAbs(rot [, &quot;name&quot;])
1427
 
1525 cbradney 1428
Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
1135 cbradney 1429
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
1430
selected item is used.
1431
</source>
1432
        <translation type="unfinished"></translation>
1433
    </message>
1525 cbradney 1434
    <message>
1435
        <source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool
1436
 
1437
Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
1438
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
1439
image data is returned as a string. The optional &quot;format&quot; argument
1440
specifies the image format to generate, and supports any format allowed
1441
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.
1442
 
1443
May raise NotFoundError if the specified font can&apos;t be found.
1444
May raise ValueError if an empty sample or filename is passed.
1445
</source>
1446
        <translation type="unfinished"></translation>
1447
    </message>
1448
    <message>
1449
        <source>selectText(start, count, [&quot;name&quot;])
1450
 
1451
Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
1452
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
1453
text selection will be cleared.  If &quot;name&quot; is not given the currently
1454
selected item is used.
1455
 
1456
May throw IndexError if the selection is outside the bounds of the text.
1457
</source>
1458
        <translation type="unfinished"></translation>
1459
    </message>
1460
    <message>
3064 cbradney 1461
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename
1525 cbradney 1462
 
3064 cbradney 1463
Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
1464
with the filter string &quot;filter&quot;. A default filename or file path can also
1465
supplied, leave this string empty when you don&apos;t want to use it.  A value of
1466
True for haspreview enables a small preview widget in the FileSelect box.  When
1467
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
1468
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
1469
the dialog shows and returns only directories. The default for all of the
1470
opional parameters is False.
1525 cbradney 1471
 
3064 cbradney 1472
The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
1473
For example &apos;Images (*.png *.xpm *.jpg)&apos;.
1474
 
1475
Refer to the Qt-Documentation for QFileDialog for details on filters.
1476
 
1477
Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
1478
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
1479
</source>
1480
        <translation type="unfinished"></translation>
1481
    </message>
1482
    <message>
1483
        <source>newStyleDialog() -&gt; string
1484
 
1485
Shows &apos;Create new paragraph style&apos; dialog. Function returns real
1486
style name or None when user cancels the dialog.
1487
</source>
1488
        <translation type="unfinished"></translation>
1489
    </message>
1490
    <message>
1491
        <source>getPageMargins()
1492
 
1493
Returns the page margins as a (top, left, right, bottom) tuple in the current
1494
units. See UNIT_&lt;type&gt; constants and getPageSize().
1495
</source>
1496
        <translation type="unfinished"></translation>
1497
    </message>
1498
    <message>
1499
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])
1500
 
1501
Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
1502
Text must be UTF encoded (see setText() as reference) The first character has an
1503
index of 0. Inserting at position -1 appends text to the frame. If &quot;name&quot; is
1504
not given the currently selected Item is used.
1505
 
1506
May throw IndexError for an insertion out of bounds.
1507
</source>
1508
        <translation type="unfinished"></translation>
1509
    </message>
1510
    <message>
1511
        <source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer
1512
 
1513
Returns the actual number of overflowing characters in text frame &quot;name&quot;.
1514
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
1515
use text frame linking. Without this parameter it search all linking chain.
1516
 
1525 cbradney 1517
May raise WrongFrameTypeError if the target frame is not an text frame
1518
</source>
1519
        <translation type="unfinished"></translation>
1520
    </message>
418 Franz 1521
    <message>
3064 cbradney 1522
        <source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])
1523
 
1524
Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
1525
If &quot;name&quot; is not given the currently selected item is used.
1526
 
1527
May raise WrongFrameTypeError if the target frame is not a text frame
1528
</source>
418 Franz 1529
        <translation type="unfinished"></translation>
1530
    </message>
1531
    <message>
3064 cbradney 1532
        <source>isPDFBookmark([&quot;name&quot;]) -&gt; bool
1533
 
1534
Returns true if the text frame &quot;name&quot; is a PDF bookmark.
1535
If &quot;name&quot; is not given the currently selected item is used.
1536
 
1537
May raise WrongFrameTypeError if the target frame is not a text frame
1538
</source>
418 Franz 1539
        <translation type="unfinished"></translation>
1540
    </message>
3824 cbradney 1541
    <message>
1542
        <source>newDoc(size, margins, orientation, firstPageNumber,
1543
                   unit, facingPages, firstSideLeft) -&gt; bool
1544
 
1545
WARNING: Obsolete procedure! Use newDocument instead.
1546
 
1547
Creates a new document and returns true if successful. The parameters have the
1548
following meaning:
1549
 
1550
    size = A tuple (width, height) describing the size of the document. You can
1551
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.
1552
 
1553
    margins = A tuple (left, right, top, bottom) describing the document
1554
    margins
1555
 
1556
    orientation = the page orientation - constants PORTRAIT, LANDSCAPE
1557
 
1558
    firstPageNumer = is the number of the first page in the document used for
1559
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
1560
    numbers if you&apos;re creating a document in several parts.
1561
 
1562
    unit: this value sets the measurement units used by the document. Use a
1563
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
1564
    UNIT_PICAS, UNIT_POINTS.
1565
 
1566
    facingPages = FACINGPAGES, NOFACINGPAGES
1567
 
1568
    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
1569
 
1570
The values for width, height and the margins are expressed in the given unit
1571
for the document. PAPER_* constants are expressed in points. If your document
1572
is not in points, make sure to account for this.
1573
 
1574
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
1575
                FACINGPAGES, FIRSTPAGERIGHT)
1576
</source>
1577
        <translation type="unfinished"></translation>
1578
    </message>
3064 cbradney 1579
</context>
1580
<context>
1581
    <name>About</name>
418 Franz 1582
    <message>
1583
        <source>&amp;About</source>
1584
        <translation type="unfinished"></translation>
1585
    </message>
1586
    <message>
1587
        <source>Contributions from:</source>
1588
        <translation type="unfinished">Yardımda bulunan:</translation>
1589
    </message>
1590
    <message>
1591
        <source>A&amp;uthors</source>
1592
        <translation type="unfinished"></translation>
1593
    </message>
1594
    <message>
1595
        <source>German:</source>
3064 cbradney 1596
        <translation type="obsolete">Almanca:</translation>
418 Franz 1597
    </message>
1598
    <message>
1599
        <source>French:</source>
3064 cbradney 1600
        <translation type="obsolete">Fransızca:</translation>
418 Franz 1601
    </message>
1602
    <message>
3064 cbradney 1603
        <source>Ukrainian:</source>
1604
        <translation type="obsolete">Ukrayna:</translation>
1605
    </message>
1606
    <message>
1607
        <source>Lithuanian:</source>
1608
        <translation type="obsolete">Litvanya dili</translation>
1609
    </message>
1610
    <message>
1611
        <source>Slovak:</source>
1612
        <translation type="obsolete">Slovak:</translation>
1613
    </message>
1614
    <message>
1615
        <source>&amp;Translations</source>
418 Franz 1616
        <translation type="unfinished"></translation>
1617
    </message>
1618
    <message>
3064 cbradney 1619
        <source>&amp;Online</source>
418 Franz 1620
        <translation type="unfinished"></translation>
1621
    </message>
1622
    <message>
3064 cbradney 1623
        <source>&amp;Close</source>
1624
        <translation type="unfinished"></translation>
418 Franz 1625
    </message>
1626
    <message>
3064 cbradney 1627
        <source>Development Team:</source>
418 Franz 1628
        <translation type="unfinished"></translation>
1629
    </message>
1630
    <message>
3064 cbradney 1631
        <source>Official Documentation:</source>
418 Franz 1632
        <translation type="unfinished"></translation>
1633
    </message>
1634
    <message>
3064 cbradney 1635
        <source>Other Documentation:</source>
418 Franz 1636
        <translation type="unfinished"></translation>
1637
    </message>
1638
    <message>
3064 cbradney 1639
        <source>Homepage</source>
1640
        <translation type="unfinished"></translation>
418 Franz 1641
    </message>
1642
    <message>
3064 cbradney 1643
        <source>Online Reference</source>
418 Franz 1644
        <translation type="unfinished"></translation>
1645
    </message>
1646
    <message>
3064 cbradney 1647
        <source>Bugs and Feature Requests</source>
418 Franz 1648
        <translation type="unfinished"></translation>
1649
    </message>
1650
    <message>
3064 cbradney 1651
        <source>Mailing List</source>
1652
        <translation type="unfinished"></translation>
418 Franz 1653
    </message>
1654
    <message>
3064 cbradney 1655
        <source>Official Translations and Translators:</source>
418 Franz 1656
        <translation type="unfinished"></translation>
1657
    </message>
1658
    <message>
3064 cbradney 1659
        <source>Previous Translation Contributors:</source>
418 Franz 1660
        <translation type="unfinished"></translation>
1661
    </message>
1662
    <message>
3064 cbradney 1663
        <source>About Scribus %1</source>
418 Franz 1664
        <translation type="unfinished"></translation>
1665
    </message>
1666
    <message>
3824 cbradney 1667
        <source>Mac OSX Aqua Port:</source>
418 Franz 1668
        <translation type="unfinished"></translation>
1669
    </message>
1670
    <message>
3824 cbradney 1671
        <source>Windows Port:</source>
418 Franz 1672
        <translation type="unfinished"></translation>
1673
    </message>
1674
    <message>
3824 cbradney 1675
        <source>Wiki</source>
418 Franz 1676
        <translation type="unfinished"></translation>
1677
    </message>
1678
    <message>
3824 cbradney 1679
        <source>November</source>
418 Franz 1680
        <translation type="unfinished"></translation>
1681
    </message>
1682
    <message>
3824 cbradney 1683
        <source>%1 %2 %3</source>
418 Franz 1684
        <translation type="unfinished"></translation>
1685
    </message>
1686
    <message>
3824 cbradney 1687
        <source>%3-%2-%1 %4 %5</source>
418 Franz 1688
        <translation type="unfinished"></translation>
1689
    </message>
1690
    <message>
3824 cbradney 1691
        <source>Using Ghostscript version %1</source>
418 Franz 1692
        <translation type="unfinished"></translation>
1693
    </message>
1694
    <message>
3824 cbradney 1695
        <source>No Ghostscript version available</source>
418 Franz 1696
        <translation type="unfinished"></translation>
1697
    </message>
3824 cbradney 1698
    <message>
1699
        <source>&lt;b&gt;Scribus Version %1&lt;/b&gt;&lt;p&gt;%2&lt;br/&gt;%3 %4&lt;br/&gt;%5&lt;/p&gt;</source>
1700
        <translation type="unfinished"></translation>
1701
    </message>
1702
    <message>
1703
        <source>Build ID:</source>
1704
        <translation type="unfinished"></translation>
1705
    </message>
1706
    <message>
1707
        <source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
1708
        <translation type="unfinished"></translation>
1709
    </message>
3064 cbradney 1710
</context>
1711
<context>
3278 cbradney 1712
    <name>AboutPlugins</name>
1713
    <message>
1714
        <source>Yes</source>
1715
        <translation type="unfinished">Evet</translation>
1716
    </message>
1717
    <message>
1718
        <source>No</source>
3824 cbradney 1719
        <translation type="unfinished">Hayır</translation>
3278 cbradney 1720
    </message>
1721
</context>
1722
<context>
1723
    <name>AboutPluginsBase</name>
1724
    <message>
1725
        <source>Scribus: About Plug-ins</source>
1726
        <translation type="unfinished"></translation>
1727
    </message>
1728
    <message>
1729
        <source>File Name:</source>
1730
        <translation type="unfinished"></translation>
1731
    </message>
1732
    <message>
1733
        <source>Version:</source>
1734
        <translation type="unfinished"></translation>
1735
    </message>
1736
    <message>
1737
        <source>Enabled:</source>
1738
        <translation type="unfinished"></translation>
1739
    </message>
1740
    <message>
1741
        <source>Release Date:</source>
1742
        <translation type="unfinished"></translation>
1743
    </message>
1744
    <message>
1745
        <source>Copyright:</source>
1746
        <translation type="unfinished"></translation>
1747
    </message>
1748
    <message>
1749
        <source>Author(s):</source>
1750
        <translation type="unfinished"></translation>
1751
    </message>
1752
    <message>
1753
        <source>Description:</source>
1754
        <translation type="unfinished"></translation>
1755
    </message>
1756
    <message>
1757
        <source>License:</source>
1758
        <translation type="unfinished"></translation>
1759
    </message>
1760
    <message>
1761
        <source>&amp;Close</source>
1762
        <translation type="unfinished"></translation>
1763
    </message>
1764
    <message>
1765
        <source>Alt+C</source>
1766
        <translation type="unfinished"></translation>
1767
    </message>
1768
</context>
1769
<context>
3064 cbradney 1770
    <name>ActionManager</name>
418 Franz 1771
    <message>
3064 cbradney 1772
        <source>&amp;New</source>
1773
        <translation type="unfinished"></translation>
1774
    </message>
1775
    <message>
1776
        <source>&amp;Open...</source>
1777
        <translation type="unfinished"></translation>
1778
    </message>
1779
    <message>
418 Franz 1780
        <source>&amp;Close</source>
1781
        <translation type="unfinished"></translation>
1782
    </message>
1783
    <message>
3064 cbradney 1784
        <source>&amp;Save</source>
418 Franz 1785
        <translation type="unfinished"></translation>
1786
    </message>
1787
    <message>
3064 cbradney 1788
        <source>Save &amp;As...</source>
418 Franz 1789
        <translation type="unfinished"></translation>
1790
    </message>
1791
    <message>
3064 cbradney 1792
        <source>Re&amp;vert to Saved</source>
418 Franz 1793
        <translation type="unfinished"></translation>
1794
    </message>
1795
    <message>
3064 cbradney 1796
        <source>Collect for O&amp;utput...</source>
418 Franz 1797
        <translation type="unfinished"></translation>
1798
    </message>
1799
    <message>
3064 cbradney 1800
        <source>Get Text...</source>
1801
        <translation type="unfinished">Metin yükle...</translation>
1802
    </message>
1803
    <message>
1804
        <source>Append &amp;Text...</source>
418 Franz 1805
        <translation type="unfinished"></translation>
1806
    </message>
1807
    <message>
3064 cbradney 1808
        <source>Get Image...</source>
418 Franz 1809
        <translation type="unfinished"></translation>
1810
    </message>
1811
    <message>
3064 cbradney 1812
        <source>Save &amp;Text...</source>
418 Franz 1813
        <translation type="unfinished"></translation>
1814
    </message>
1815
    <message>
3064 cbradney 1816
        <source>Save Page as &amp;EPS...</source>
418 Franz 1817
        <translation type="unfinished"></translation>
1818
    </message>
454 fschmid 1819
    <message>
3064 cbradney 1820
        <source>Save as P&amp;DF...</source>
454 fschmid 1821
        <translation type="unfinished"></translation>
1822
    </message>
1823
    <message>
3064 cbradney 1824
        <source>Document &amp;Setup...</source>
454 fschmid 1825
        <translation type="unfinished"></translation>
1826
    </message>
1827
    <message>
3064 cbradney 1828
        <source>&amp;Print...</source>
454 fschmid 1829
        <translation type="unfinished"></translation>
1830
    </message>
1831
    <message>
3064 cbradney 1832
        <source>&amp;Quit</source>
454 fschmid 1833
        <translation type="unfinished"></translation>
1834
    </message>
1835
    <message>
3064 cbradney 1836
        <source>&amp;Undo</source>
454 fschmid 1837
        <translation type="unfinished"></translation>
1838
    </message>
1839
    <message>
3064 cbradney 1840
        <source>&amp;Redo</source>
454 fschmid 1841
        <translation type="unfinished"></translation>
1842
    </message>
1843
    <message>
3064 cbradney 1844
        <source>&amp;Item Action Mode</source>
454 fschmid 1845
        <translation type="unfinished"></translation>
1846
    </message>
769 cbradney 1847
    <message>
3064 cbradney 1848
        <source>Cu&amp;t</source>
769 cbradney 1849
        <translation type="unfinished"></translation>
1850
    </message>
776 fschmid 1851
    <message>
3064 cbradney 1852
        <source>&amp;Copy</source>
1525 cbradney 1853
        <translation type="unfinished"></translation>
1854
    </message>
1855
    <message>
3064 cbradney 1856
        <source>&amp;Paste</source>
1525 cbradney 1857
        <translation type="unfinished"></translation>
1858
    </message>
1859
    <message>
3064 cbradney 1860
        <source>C&amp;lear Contents</source>
1525 cbradney 1861
        <translation type="unfinished"></translation>
1862
    </message>
1863
    <message>
3064 cbradney 1864
        <source>Select &amp;All</source>
776 fschmid 1865
        <translation type="unfinished"></translation>
1866
    </message>
3064 cbradney 1867
    <message>
1868
        <source>&amp;Deselect All</source>
1869
        <translation type="unfinished"></translation>
1870
    </message>
1871
    <message>
1872
        <source>&amp;Search/Replace...</source>
1873
        <translation type="unfinished"></translation>
1874
    </message>
1875
    <message>
1876
        <source>Edit Image...</source>
1877
        <translation type="unfinished"></translation>
1878
    </message>
1879
    <message>
1880
        <source>C&amp;olors...</source>
1881
        <translation type="unfinished"></translation>
1882
    </message>
1883
    <message>
1884
        <source>&amp;Paragraph Styles...</source>
1885
        <translation type="unfinished"></translation>
1886
    </message>
1887
    <message>
1888
        <source>&amp;Line Styles...</source>
1889
        <translation type="unfinished"></translation>
1890
    </message>
1891
    <message>
1892
        <source>&amp;Master Pages...</source>
1893
        <translation type="unfinished"></translation>
1894
    </message>
1895
    <message>
1896
        <source>P&amp;references...</source>
1897
        <translation type="unfinished"></translation>
1898
    </message>
1899
    <message>
1900
        <source>%1 pt</source>
1901
        <translation type="unfinished"></translation>
1902
    </message>
1903
    <message>
1904
        <source>&amp;Other...</source>
1905
        <translation type="unfinished"></translation>
1906
    </message>
1907
    <message>
1908
        <source>&amp;Left</source>
1909
        <translation type="unfinished"></translation>
1910
    </message>
1911
    <message>
1912
        <source>&amp;Center</source>
1913
        <translation type="unfinished"></translation>
1914
    </message>
1915
    <message>
1916
        <source>&amp;Right</source>
1917
        <translation type="unfinished"></translation>
1918
    </message>
1919
    <message>
1920
        <source>&amp;Block</source>
1921
        <translation type="unfinished"></translation>
1922
    </message>
1923
    <message>
1924
        <source>&amp;Forced</source>
1925
        <translation type="unfinished"></translation>
1926
    </message>
1927
    <message>
1928
        <source>&amp;%1 %</source>
1929
        <translation type="unfinished"></translation>
1930
    </message>
1931
    <message>
1932
        <source>&amp;Normal</source>
1933
        <translation type="unfinished"></translation>
1934
    </message>
1935
    <message>
1936
        <source>&amp;Underline</source>
1937
        <translation type="unfinished"></translation>
1938
    </message>
1939
    <message>
1940
        <source>Underline &amp;Words</source>
1941
        <translation type="unfinished"></translation>
1942
    </message>
1943
    <message>
1944
        <source>&amp;Strike Through</source>
1945
        <translation type="unfinished"></translation>
1946
    </message>
1947
    <message>
1948
        <source>&amp;All Caps</source>
1949
        <translation type="unfinished"></translation>
1950
    </message>
1951
    <message>
1952
        <source>Small &amp;Caps</source>
1953
        <translation type="unfinished"></translation>
1954
    </message>
1955
    <message>
1956
        <source>Su&amp;perscript</source>
1957
        <translation type="unfinished"></translation>
1958
    </message>
1959
    <message>
1960
        <source>Su&amp;bscript</source>
1961
        <translation type="unfinished"></translation>
1962
    </message>
1963
    <message>
1964
        <source>&amp;Outline</source>
1965
        <translation type="unfinished"></translation>
1966
    </message>
1967
    <message>
1968
        <source>S&amp;hadow</source>
1969
        <translation type="unfinished"></translation>
1970
    </message>
1971
    <message>
1972
        <source>&amp;Image Effects</source>
1973
        <translation type="unfinished"></translation>
1974
    </message>
1975
    <message>
1976
        <source>&amp;Tabulators...</source>
1977
        <translation type="unfinished"></translation>
1978
    </message>
1979
    <message>
1980
        <source>D&amp;uplicate</source>
1981
        <translation type="unfinished"></translation>
1982
    </message>
1983
    <message>
1984
        <source>&amp;Multiple Duplicate</source>
1985
        <translation type="unfinished"></translation>
1986
    </message>
1987
    <message>
1988
        <source>&amp;Delete</source>
1989
        <translation type="unfinished"></translation>
1990
    </message>
1991
    <message>
1992
        <source>&amp;Group</source>
1993
        <translation type="unfinished"></translation>
1994
    </message>
1995
    <message>
1996
        <source>&amp;Ungroup</source>
1997
        <translation type="unfinished"></translation>
1998
    </message>
1999
    <message>
2000
        <source>Is &amp;Locked</source>
2001
        <translation type="unfinished"></translation>
2002
    </message>
2003
    <message>
2004
        <source>Si&amp;ze is Locked</source>
2005
        <translation type="unfinished"></translation>
2006
    </message>
2007
    <message>
2008
        <source>Lower to &amp;Bottom</source>
2009
        <translation type="unfinished"></translation>
2010
    </message>
2011
    <message>
2012
        <source>Raise to &amp;Top</source>
2013
        <translation type="unfinished"></translation>
2014
    </message>
2015
    <message>
2016
        <source>&amp;Lower</source>
2017
        <translation type="unfinished"></translation>
2018
    </message>
2019
    <message>
2020
        <source>&amp;Raise</source>
2021
        <translation type="unfinished"></translation>
2022
    </message>
2023
    <message>
2024
        <source>Send to S&amp;crapbook</source>
2025
        <translation type="unfinished"></translation>
2026
    </message>
2027
    <message>
2028
        <source>&amp;Attributes...</source>
2029
        <translation type="unfinished"></translation>
2030
    </message>
2031
    <message>
2032
        <source>I&amp;mage Visible</source>
2033
        <translation type="unfinished"></translation>
2034
    </message>
2035
    <message>
2036
        <source>&amp;Update Image</source>
2037
        <translation type="unfinished"></translation>
2038
    </message>
2039
    <message>
2040
        <source>Adjust Frame to Image</source>
2041
        <translation type="unfinished"></translation>
2042
    </message>
2043
    <message>
2044
        <source>Extended Image Properties</source>
2045
        <translation type="unfinished"></translation>
2046
    </message>
2047
    <message>
2048
        <source>&amp;Low Resolution</source>
2049
        <translation type="unfinished"></translation>
2050
    </message>
2051
    <message>
2052
        <source>&amp;Normal Resolution</source>
2053
        <translation type="unfinished"></translation>
2054
    </message>
2055
    <message>
2056
        <source>&amp;Full Resolution</source>
2057
        <translation type="unfinished"></translation>
2058
    </message>
2059
    <message>
2060
        <source>Is PDF &amp;Bookmark</source>
2061
        <translation type="unfinished"></translation>
2062
    </message>
2063
    <message>
2064
        <source>Is PDF A&amp;nnotation</source>
2065
        <translation type="unfinished"></translation>
2066
    </message>
2067
    <message>
2068
        <source>Annotation P&amp;roperties</source>
2069
        <translation type="unfinished"></translation>
2070
    </message>
2071
    <message>
2072
        <source>Field P&amp;roperties</source>
2073
        <translation type="unfinished"></translation>
2074
    </message>
2075
    <message>
2076
        <source>&amp;Edit Shape...</source>
2077
        <translation type="unfinished"></translation>
2078
    </message>
2079
    <message>
2080
        <source>&amp;Attach Text to Path</source>
2081
        <translation type="unfinished"></translation>
2082
    </message>
2083
    <message>
2084
        <source>&amp;Detach Text from Path</source>
2085
        <translation type="unfinished"></translation>
2086
    </message>
2087
    <message>
2088
        <source>&amp;Combine Polygons</source>
2089
        <translation type="unfinished"></translation>
2090
    </message>
2091
    <message>
2092
        <source>Split &amp;Polygons</source>
2093
        <translation type="unfinished"></translation>
2094
    </message>
2095
    <message>
2096
        <source>&amp;Bezier Curve</source>
2097
        <translation type="unfinished"></translation>
2098
    </message>
2099
    <message>
2100
        <source>&amp;Image Frame</source>
2101
        <translation type="unfinished"></translation>
2102
    </message>
2103
    <message>
2104
        <source>&amp;Outlines</source>
2105
        <translation type="unfinished"></translation>
2106
    </message>
2107
    <message>
2108
        <source>&amp;Polygon</source>
2109
        <translation type="unfinished"></translation>
2110
    </message>
2111
    <message>
2112
        <source>&amp;Text Frame</source>
2113
        <translation type="unfinished"></translation>
2114
    </message>
2115
    <message>
2116
        <source>&amp;Glyph...</source>
2117
        <translation type="unfinished"></translation>
2118
    </message>
2119
    <message>
2120
        <source>Sample Text</source>
2121
        <translation type="unfinished"></translation>
2122
    </message>
2123
    <message>
2124
        <source>&amp;Insert...</source>
2125
        <translation type="unfinished"></translation>
2126
    </message>
2127
    <message>
2128
        <source>Im&amp;port...</source>
2129
        <translation type="unfinished"></translation>
2130
    </message>
2131
    <message>
2132
        <source>&amp;Delete...</source>
2133
        <translation type="unfinished"></translation>
2134
    </message>
2135
    <message>
2136
        <source>&amp;Copy...</source>
2137
        <translation type="unfinished"></translation>
2138
    </message>
2139
    <message>
2140
        <source>&amp;Move...</source>
2141
        <translation type="unfinished"></translation>
2142
    </message>
2143
    <message>
2144
        <source>&amp;Apply Master Page...</source>
2145
        <translation type="unfinished"></translation>
2146
    </message>
2147
    <message>
2148
        <source>Manage &amp;Guides...</source>
2149
        <translation type="unfinished"></translation>
2150
    </message>
2151
    <message>
2152
        <source>Manage Page Properties...</source>
2153
        <translation type="unfinished"></translation>
2154
    </message>
2155
    <message>
2156
        <source>&amp;Fit in window</source>
2157
        <translation type="unfinished"></translation>
2158
    </message>
2159
    <message>
2160
        <source>&amp;50%</source>
2161
        <translation type="unfinished"></translation>
2162
    </message>
2163
    <message>
2164
        <source>&amp;75%</source>
2165
        <translation type="unfinished"></translation>
2166
    </message>
2167
    <message>
2168
        <source>&amp;100%</source>
2169
        <translation type="unfinished"></translation>
2170
    </message>
2171
    <message>
2172
        <source>&amp;200%</source>
2173
        <translation type="unfinished"></translation>
2174
    </message>
2175
    <message>
2176
        <source>&amp;Thumbnails</source>
2177
        <translation type="unfinished"></translation>
2178
    </message>
2179
    <message>
2180
        <source>Show &amp;Margins</source>
2181
        <translation type="unfinished"></translation>
2182
    </message>
2183
    <message>
2184
        <source>Show &amp;Frames</source>
2185
        <translation type="unfinished"></translation>
2186
    </message>
2187
    <message>
2188
        <source>Show &amp;Images</source>
2189
        <translation type="unfinished"></translation>
2190
    </message>
2191
    <message>
2192
        <source>Show &amp;Grid</source>
2193
        <translation type="unfinished"></translation>
2194
    </message>
2195
    <message>
2196
        <source>Show G&amp;uides</source>
2197
        <translation type="unfinished"></translation>
2198
    </message>
2199
    <message>
2200
        <source>Show &amp;Baseline Grid</source>
2201
        <translation type="unfinished"></translation>
2202
    </message>
2203
    <message>
2204
        <source>Show &amp;Text Chain</source>
2205
        <translation type="unfinished"></translation>
2206
    </message>
2207
    <message>
2208
        <source>Show Control Characters</source>
2209
        <translation type="unfinished"></translation>
2210
    </message>
2211
    <message>
2212
        <source>Rulers relative to Page</source>
2213
        <translation type="unfinished"></translation>
2214
    </message>
2215
    <message>
2216
        <source>Sn&amp;ap to Grid</source>
2217
        <translation type="unfinished"></translation>
2218
    </message>
2219
    <message>
2220
        <source>Sna&amp;p to Guides</source>
2221
        <translation type="unfinished"></translation>
2222
    </message>
2223
    <message>
2224
        <source>&amp;Properties</source>
2225
        <translation type="unfinished"></translation>
2226
    </message>
2227
    <message>
2228
        <source>&amp;Scrapbook</source>
2229
        <translation type="unfinished"></translation>
2230
    </message>
2231
    <message>
2232
        <source>&amp;Layers</source>
2233
        <translation type="unfinished"></translation>
2234
    </message>
2235
    <message>
2236
        <source>&amp;Arrange Pages</source>
2237
        <translation type="unfinished"></translation>
2238
    </message>
2239
    <message>
2240
        <source>&amp;Bookmarks</source>
2241
        <translation type="unfinished"></translation>
2242
    </message>
2243
    <message>
2244
        <source>&amp;Measurements</source>
2245
        <translation type="unfinished"></translation>
2246
    </message>
2247
    <message>
2248
        <source>Action &amp;History</source>
2249
        <translation type="unfinished"></translation>
2250
    </message>
2251
    <message>
2252
        <source>Preflight &amp;Verifier</source>
2253
        <translation type="unfinished"></translation>
2254
    </message>
2255
    <message>
2256
        <source>&amp;Align and Distribute</source>
2257
        <translation type="unfinished"></translation>
2258
    </message>
2259
    <message>
2260
        <source>&amp;Tools</source>
2261
        <translation type="unfinished"></translation>
2262
    </message>
2263
    <message>
2264
        <source>P&amp;DF Tools</source>
2265
        <translation type="unfinished"></translation>
2266
    </message>
2267
    <message>
2268
        <source>Select Item</source>
2269
        <translation type="unfinished"></translation>
2270
    </message>
2271
    <message>
2272
        <source>T&amp;able</source>
2273
        <translation type="unfinished"></translation>
2274
    </message>
2275
    <message>
2276
        <source>&amp;Shape</source>
2277
        <translation type="unfinished"></translation>
2278
    </message>
2279
    <message>
2280
        <source>&amp;Line</source>
2281
        <translation type="unfinished"></translation>
2282
    </message>
2283
    <message>
2284
        <source>&amp;Freehand Line</source>
2285
        <translation type="unfinished"></translation>
2286
    </message>
2287
    <message>
2288
        <source>Rotate Item</source>
2289
        <translation type="unfinished">Öğeyi döndür</translation>
2290
    </message>
2291
    <message>
2292
        <source>Zoom in or out</source>
2293
        <translation type="unfinished"></translation>
2294
    </message>
2295
    <message>
2296
        <source>Zoom in</source>
2297
        <translation type="unfinished"></translation>
2298
    </message>
2299
    <message>
2300
        <source>Zoom out</source>
2301
        <translation type="unfinished"></translation>
2302
    </message>
2303
    <message>
2304
        <source>Edit Contents of Frame</source>
2305
        <translation type="unfinished">Çerçeve içeriği düzenle</translation>
2306
    </message>
2307
    <message>
2308
        <source>Edit Text...</source>
2309
        <translation type="unfinished"></translation>
2310
    </message>
2311
    <message>
2312
        <source>Link Text Frames</source>
2313
        <translation type="unfinished"></translation>
2314
    </message>
2315
    <message>
2316
        <source>Unlink Text Frames</source>
2317
        <translation type="unfinished"></translation>
2318
    </message>
2319
    <message>
2320
        <source>&amp;Eye Dropper</source>
2321
        <translation type="unfinished"></translation>
2322
    </message>
2323
    <message>
2324
        <source>Copy Item Properties</source>
2325
        <translation type="unfinished"></translation>
2326
    </message>
2327
    <message>
2328
        <source>Edit the text with the Story Editor</source>
2329
        <translation type="unfinished"></translation>
2330
    </message>
2331
    <message>
2332
        <source>Insert Text Frame</source>
2333
        <translation type="unfinished"></translation>
2334
    </message>
2335
    <message>
2336
        <source>Insert Image Frame</source>
2337
        <translation type="unfinished"></translation>
2338
    </message>
2339
    <message>
2340
        <source>Insert Table</source>
2341
        <translation type="unfinished"></translation>
2342
    </message>
2343
    <message>
2344
        <source>Insert Shape</source>
2345
        <translation type="unfinished"></translation>
2346
    </message>
2347
    <message>
2348
        <source>Insert Polygon</source>
2349
        <translation type="unfinished"></translation>
2350
    </message>
2351
    <message>
2352
        <source>Insert Line</source>
2353
        <translation type="unfinished"></translation>
2354
    </message>
2355
    <message>
2356
        <source>Insert Bezier Curve</source>
2357
        <translation type="unfinished"></translation>
2358
    </message>
2359
    <message>
2360
        <source>Insert Freehand Line</source>
2361
        <translation type="unfinished"></translation>
2362
    </message>
2363
    <message>
2364
        <source>&amp;Manage Pictures</source>
2365
        <translation type="unfinished"></translation>
2366
    </message>
2367
    <message>
2368
        <source>&amp;Hyphenate Text</source>
2369
        <translation type="unfinished"></translation>
2370
    </message>
2371
    <message>
2372
        <source>Dehyphenate Text</source>
2373
        <translation type="unfinished"></translation>
2374
    </message>
2375
    <message>
2376
        <source>&amp;Generate Table Of Contents</source>
2377
        <translation type="unfinished"></translation>
2378
    </message>
2379
    <message>
2380
        <source>&amp;About Scribus</source>
2381
        <translation type="unfinished"></translation>
2382
    </message>
2383
    <message>
2384
        <source>About &amp;Qt</source>
2385
        <translation type="unfinished"></translation>
2386
    </message>
2387
    <message>
2388
        <source>Toolti&amp;ps</source>
2389
        <translation type="unfinished"></translation>
2390
    </message>
2391
    <message>
2392
        <source>Scribus &amp;Manual...</source>
2393
        <translation type="unfinished"></translation>
2394
    </message>
2395
    <message>
2396
        <source>Smart &amp;Hyphen</source>
2397
        <translation type="unfinished"></translation>
2398
    </message>
2399
    <message>
2400
        <source>Non Breaking Dash</source>
2401
        <translation type="unfinished"></translation>
2402
    </message>
2403
    <message>
2404
        <source>Non Breaking &amp;Space</source>
2405
        <translation type="unfinished"></translation>
2406
    </message>
2407
    <message>
2408
        <source>Page &amp;Number</source>
2409
        <translation type="unfinished"></translation>
2410
    </message>
2411
    <message>
2412
        <source>New Line</source>
2413
        <translation type="unfinished"></translation>
2414
    </message>
2415
    <message>
2416
        <source>Frame Break</source>
2417
        <translation type="unfinished"></translation>
2418
    </message>
2419
    <message>
2420
        <source>Column Break</source>
2421
        <translation type="unfinished"></translation>
2422
    </message>
2423
    <message>
2424
        <source>Copyright</source>
2425
        <translation type="unfinished"></translation>
2426
    </message>
2427
    <message>
2428
        <source>Registered Trademark</source>
2429
        <translation type="unfinished"></translation>
2430
    </message>
2431
    <message>
2432
        <source>Trademark</source>
2433
        <translation type="unfinished"></translation>
2434
    </message>
2435
    <message>
2436
        <source>Bullet</source>
2437
        <translation type="unfinished"></translation>
2438
    </message>
2439
    <message>
2440
        <source>Em Dash</source>
2441
        <translation type="unfinished"></translation>
2442
    </message>
2443
    <message>
2444
        <source>En Dash</source>
2445
        <translation type="unfinished"></translation>
2446
    </message>
2447
    <message>
2448
        <source>Figure Dash</source>
2449
        <translation type="unfinished"></translation>
2450
    </message>
2451
    <message>
2452
        <source>Quotation Dash</source>
2453
        <translation type="unfinished"></translation>
2454
    </message>
2455
    <message>
2456
        <source>Apostrophe</source>
2457
        <translation type="unfinished"></translation>
2458
    </message>
2459
    <message>
2460
        <source>Straight Double</source>
2461
        <translation type="unfinished"></translation>
2462
    </message>
2463
    <message>
2464
        <source>Single Left</source>
2465
        <translation type="unfinished"></translation>
2466
    </message>
2467
    <message>
2468
        <source>Single Right</source>
2469
        <translation type="unfinished"></translation>
2470
    </message>
2471
    <message>
2472
        <source>Double Left</source>
2473
        <translation type="unfinished"></translation>
2474
    </message>
2475
    <message>
2476
        <source>Double Right</source>
2477
        <translation type="unfinished"></translation>
2478
    </message>
2479
    <message>
2480
        <source>Single Reversed</source>
2481
        <translation type="unfinished"></translation>
2482
    </message>
2483
    <message>
2484
        <source>Double Reversed</source>
2485
        <translation type="unfinished"></translation>
2486
    </message>
2487
    <message>
2488
        <source>Single Left Guillemet</source>
2489
        <translation type="unfinished"></translation>
2490
    </message>
2491
    <message>
2492
        <source>Single Right Guillemet</source>
2493
        <translation type="unfinished"></translation>
2494
    </message>
2495
    <message>
2496
        <source>Double Left Guillemet</source>
2497
        <translation type="unfinished"></translation>
2498
    </message>
2499
    <message>
2500
        <source>Double Right Guillemet</source>
2501
        <translation type="unfinished"></translation>
2502
    </message>
2503
    <message>
2504
        <source>Low Single Comma</source>
2505
        <translation type="unfinished"></translation>
2506
    </message>
2507
    <message>
2508
        <source>Low Double Comma</source>
2509
        <translation type="unfinished"></translation>
2510
    </message>
2511
    <message>
2512
        <source>CJK Single Left</source>
2513
        <translation type="unfinished"></translation>
2514
    </message>
2515
    <message>
2516
        <source>CJK Single Right</source>
2517
        <translation type="unfinished"></translation>
2518
    </message>
2519
    <message>
2520
        <source>CJK Double Left</source>
2521
        <translation type="unfinished"></translation>
2522
    </message>
2523
    <message>
2524
        <source>CJK Double Right</source>
2525
        <translation type="unfinished"></translation>
2526
    </message>
2527
    <message>
2528
        <source>Toggle Palettes</source>
2529
        <translation type="unfinished"></translation>
2530
    </message>
2531
    <message>
2532
        <source>Toggle Guides</source>
2533
        <translation type="unfinished"></translation>
2534
    </message>
418 Franz 2535
    <message>
3278 cbradney 2536
        <source>Print Previe&amp;w</source>
418 Franz 2537
        <translation type="unfinished"></translation>
2538
    </message>
2539
    <message>
3278 cbradney 2540
        <source>&amp;JavaScripts...</source>
418 Franz 2541
        <translation type="unfinished"></translation>
2542
    </message>
2543
    <message>
3278 cbradney 2544
        <source>Convert to Master Page...</source>
418 Franz 2545
        <translation type="unfinished"></translation>
2546
    </message>
2547
    <message>
3278 cbradney 2548
        <source>&amp;Cascade</source>
418 Franz 2549
        <translation type="unfinished"></translation>
2550
    </message>
2551
    <message>
3278 cbradney 2552
        <source>&amp;Tile</source>
418 Franz 2553
        <translation type="unfinished"></translation>
2554
    </message>
2555
    <message>
3278 cbradney 2556
        <source>&amp;About Plug-ins</source>
418 Franz 2557
        <translation type="unfinished"></translation>
2558
    </message>
3824 cbradney 2559
    <message>
2560
        <source>More Info...</source>
2561
        <translation type="unfinished"></translation>
2562
    </message>
418 Franz 2563
</context>
2564
<context>
2565
    <name>Align</name>
2566
    <message>
2567
        <source>Distribute/Align</source>
3064 cbradney 2568
        <translation type="obsolete">Mesafe/Sıralama</translation>
418 Franz 2569
    </message>
2570
    <message>
2571
        <source>Align</source>
3064 cbradney 2572
        <translation type="obsolete">Sırala</translation>
418 Franz 2573
    </message>
2574
    <message>
2575
        <source>Horizontal</source>
3064 cbradney 2576
        <translation type="obsolete">Dikey</translation>
418 Franz 2577
    </message>
2578
    <message>
2579
        <source>Left Sides</source>
3064 cbradney 2580
        <translation type="obsolete">Sol kenarda</translation>
418 Franz 2581
    </message>
2582
    <message>
2583
        <source>Middles</source>
3064 cbradney 2584
        <translation type="obsolete">Ortada</translation>
418 Franz 2585
    </message>
2586
    <message>
2587
        <source>Right Sides</source>
3064 cbradney 2588
        <translation type="obsolete">Sağ kenarda</translation>
418 Franz 2589
    </message>
2590
    <message>
3064 cbradney 2591
        <source>Vertical</source>
2592
        <translation type="obsolete">Yatay</translation>
2593
    </message>
2594
    <message>
2595
        <source>Top Sides</source>
2596
        <translation type="obsolete">Üst kenarda</translation>
2597
    </message>
2598
    <message>
2599
        <source>Bottom Sides</source>
2600
        <translation type="obsolete">Alt kenarda</translation>
2601
    </message>
2602
</context>
2603
<context>
2604
    <name>AlignDistributePalette</name>
2605
    <message>
2606
        <source>Align and Distribute</source>
418 Franz 2607
        <translation type="unfinished"></translation>
2608
    </message>
2609
    <message>
3064 cbradney 2610
        <source>Align</source>
2611
        <translation type="unfinished">Sırala</translation>
2612
    </message>
2613
    <message>
2614
        <source>&amp;Relative to:</source>
418 Franz 2615
        <translation type="unfinished"></translation>
2616
    </message>
2617
    <message>
3064 cbradney 2618
        <source>First Selected</source>
418 Franz 2619
        <translation type="unfinished"></translation>
2620
    </message>
2621
    <message>
3064 cbradney 2622
        <source>Last Selected</source>
418 Franz 2623
        <translation type="unfinished"></translation>
2624
    </message>
2625
    <message>
3064 cbradney 2626
        <source>Page</source>
2627
        <translation type="unfinished">Sayfa</translation>
2628
    </message>
2629
    <message>
2630
        <source>Margins</source>
418 Franz 2631
        <translation type="unfinished"></translation>
2632
    </message>
2633
    <message>
3064 cbradney 2634
        <source>Guide</source>
2635
        <translation type="unfinished"></translation>
418 Franz 2636
    </message>
2637
    <message>
3064 cbradney 2638
        <source>Selection</source>
2639
        <translation type="unfinished"></translation>
418 Franz 2640
    </message>
2641
    <message>
3064 cbradney 2642
        <source>Align right sides of objects to left side of anchor</source>
2643
        <translation type="unfinished"></translation>
418 Franz 2644
    </message>
2645
    <message>
3064 cbradney 2646
        <source>Align left sides of objects to right side of anchor</source>
418 Franz 2647
        <translation type="unfinished"></translation>
2648
    </message>
2649
    <message>
3064 cbradney 2650
        <source>Align bottoms</source>
418 Franz 2651
        <translation type="unfinished"></translation>
2652
    </message>
2653
    <message>
3064 cbradney 2654
        <source>Align right sides</source>
418 Franz 2655
        <translation type="unfinished"></translation>
2656
    </message>
2657
    <message>
3064 cbradney 2658
        <source>Align tops of objects to bottom of anchor</source>
418 Franz 2659
        <translation type="unfinished"></translation>
2660
    </message>
2661
    <message>
3064 cbradney 2662
        <source>Center on vertical axis</source>
418 Franz 2663
        <translation type="unfinished"></translation>
2664
    </message>
2665
    <message>
3064 cbradney 2666
        <source>Align left sides</source>
418 Franz 2667
        <translation type="unfinished"></translation>
2668
    </message>
2669
    <message>
3064 cbradney 2670
        <source>Center on horizontal axis</source>
418 Franz 2671
        <translation type="unfinished"></translation>
2672
    </message>
2673
    <message>
3064 cbradney 2674
        <source>Align bottoms of objects to top of anchor</source>
418 Franz 2675
        <translation type="unfinished"></translation>
2676
    </message>
3064 cbradney 2677
    <message>
2678
        <source>Align tops</source>
2679
        <translation type="unfinished"></translation>
2680
    </message>
2681
    <message>
2682
        <source>&amp;Selected Guide:</source>
2683
        <translation type="unfinished"></translation>
2684
    </message>
2685
    <message>
2686
        <source>Distribute</source>
2687
        <translation type="unfinished"></translation>
2688
    </message>
2689
    <message>
2690
        <source>Make horizontal gaps between objects equal</source>
2691
        <translation type="unfinished"></translation>
2692
    </message>
2693
    <message>
2694
        <source>Make horizontal gaps between objects equal to the value specified</source>
2695
        <translation type="unfinished"></translation>
2696
    </message>
2697
    <message>
2698
        <source>Distribute right sides equidistantly</source>
2699
        <translation type="unfinished"></translation>
2700
    </message>
2701
    <message>
2702
        <source>Distribute bottoms equidistantly</source>
2703
        <translation type="unfinished"></translation>
2704
    </message>
2705
    <message>
2706
        <source>Distribute centers equidistantly horizontally</source>
2707
        <translation type="unfinished"></translation>
2708
    </message>
2709
    <message>
2710
        <source>Make vertical gaps between objects equal</source>
2711
        <translation type="unfinished"></translation>
2712
    </message>
2713
    <message>
2714
        <source>Make vertical gaps between objects equal to the value specified</source>
2715
        <translation type="unfinished"></translation>
2716
    </message>
2717
    <message>
2718
        <source>Distribute left sides equidistantly</source>
2719
        <translation type="unfinished"></translation>
2720
    </message>
2721
    <message>
2722
        <source>Distribute centers equidistantly vertically</source>
2723
        <translation type="unfinished"></translation>
2724
    </message>
2725
    <message>
2726
        <source>Distribute tops equidistantly</source>
2727
        <translation type="unfinished"></translation>
2728
    </message>
2729
    <message>
2730
        <source>&amp;Distance:</source>
2731
        <translation type="unfinished"></translation>
2732
    </message>
2733
    <message>
2734
        <source>Distribute the items with the distance specified</source>
2735
        <translation type="unfinished"></translation>
2736
    </message>
2737
    <message>
2738
        <source>None Selected</source>
2739
        <translation type="unfinished"></translation>
2740
    </message>
2741
    <message>
2742
        <source>Warning</source>
3824 cbradney 2743
        <translation type="obsolete">Uyarı</translation>
3064 cbradney 2744
    </message>
2745
    <message>
2746
        <source>Some objects are locked.</source>
2747
        <translation type="unfinished"></translation>
2748
    </message>
2749
    <message>
2750
        <source>&amp;Unlock All</source>
2751
        <translation type="unfinished"></translation>
2752
    </message>
2753
    <message>
2754
        <source>Y: %1%2</source>
2755
        <translation type="unfinished"></translation>
2756
    </message>
2757
    <message>
2758
        <source>X: %1%2</source>
2759
        <translation type="unfinished"></translation>
2760
    </message>
418 Franz 2761
</context>
2762
<context>
2763
    <name>AlignSelect</name>
2764
    <message>
2765
        <source>Align Text Left</source>
2766
        <translation type="unfinished">Metni soldan sırala</translation>
2767
    </message>
2768
    <message>
2769
        <source>Align Text Right</source>
2770
        <translation type="unfinished">Metni sağdan sırala</translation>
2771
    </message>
2772
    <message>
2773
        <source>Align Text Center</source>
2774
        <translation type="unfinished">Metni ortala</translation>
2775
    </message>
2776
    <message>
2777
        <source>Align Text Justified</source>
2778
        <translation type="unfinished"></translation>
2779
    </message>
2780
    <message>
2781
        <source>Align Text Forced Justified</source>
2782
        <translation type="unfinished"></translation>
2783
    </message>
2784
</context>
2785
<context>
2786
    <name>Annot</name>
2787
    <message>
2788
        <source>Field Properties</source>
2789
        <translation type="unfinished">Alan özellikleri</translation>
2790
    </message>
2791
    <message>
2792
        <source>Type:</source>
2793
        <translation type="unfinished">Tür:</translation>
2794
    </message>
2795
    <message>
2796
        <source>Button</source>
2797
        <translation type="unfinished">Tuş</translation>
2798
    </message>
2799
    <message>
2800
        <source>Text Field</source>
2801
        <translation type="unfinished">Metin alanı</translation>
2802
    </message>
2803
    <message>
2804
        <source>Check Box</source>
2805
        <translation type="unfinished">Kontrol kutusu</translation>
2806
    </message>
2807
    <message>
2808
        <source>Combo Box</source>
2809
        <translation type="unfinished">Birleşik kutu</translation>
2810
    </message>
2811
    <message>
2812
        <source>List Box</source>
2813
        <translation type="unfinished">Liste kutusu</translation>
2814
    </message>
2815
    <message>
2816
        <source>Properties</source>
2817
        <translation type="unfinished">Özellikler</translation>
2818
    </message>
2819
    <message>
2820
        <source>Name:</source>
2821
        <translation type="unfinished">İsim:</translation>
2822
    </message>
2823
    <message>
2824
        <source>Tool-Tip:</source>
2825
        <translation type="unfinished">İpucu</translation>
2826
    </message>
2827
    <message>
2828
        <source>Text</source>
2829
        <translation type="unfinished">Metin</translation>
2830
    </message>
2831
    <message>
2832
        <source>Font for use with PDF 1.3:</source>
2833
        <translation type="unfinished"></translation>
2834
    </message>
2835
    <message>
2836
        <source>Border</source>
2837
        <translation type="unfinished">Sınır</translation>
2838
    </message>
2839
    <message>
2840
        <source>Color:</source>
2841
        <translation type="unfinished">Renk:</translation>
2842
    </message>
2843
    <message>
2844
        <source>None</source>
2845
        <translation type="unfinished">yok</translation>
2846
    </message>
2847
    <message>
2848
        <source>Width:</source>
2849
        <translation type="unfinished">Genişlik:</translation>
2850
    </message>
2851
    <message>
2852
        <source>Thin</source>
2853
        <translation type="unfinished">İnce</translation>
2854
    </message>
2855
    <message>
2856
        <source>Normal</source>
2857
        <translation type="unfinished">Normal</translation>
2858
    </message>
2859
    <message>
2860
        <source>Wide</source>
2861
        <translation type="unfinished">Geniş</translation>
2862
    </message>
2863
    <message>
2864
        <source>Style:</source>
2865
        <translation type="unfinished"></translation>
2866
    </message>
2867
    <message>
2868
        <source>Solid</source>
2869
        <translation type="unfinished">Katı</translation>
2870
    </message>
2871
    <message>
2872
        <source>Dashed</source>
2873
        <translation type="unfinished">Çizgili</translation>
2874
    </message>
2875
    <message>
2876
        <source>Underline</source>
2877
        <translation type="unfinished">Altı çizgili</translation>
2878
    </message>
2879
    <message>
2880
        <source>Beveled</source>
2881
        <translation type="unfinished">Vurgulu</translation>
2882
    </message>
2883
    <message>
2884
        <source>Inset</source>
2885
        <translation type="unfinished">Derin</translation>
2886
    </message>
2887
    <message>
2888
        <source>Other</source>
2889
        <translation type="unfinished">Diğer</translation>
2890
    </message>
2891
    <message>
2892
        <source>Read Only</source>
2893
        <translation type="unfinished">Salt okunur</translation>
2894
    </message>
2895
    <message>
2896
        <source>Required</source>
2897
        <translation type="unfinished">Gerekli</translation>
2898
    </message>
2899
    <message>
2900
        <source>Don&apos;t Export Value</source>
2901
        <translation type="unfinished">Değeri dışa gönderme</translation>
2902
    </message>
2903
    <message>
2904
        <source>Visibility:</source>
2905
        <translation type="unfinished">Görünebilirlik:</translation>
2906
    </message>
2907
    <message>
2908
        <source>Visible</source>
2909
        <translation type="unfinished">Görünür</translation>
2910
    </message>
2911
    <message>
2912
        <source>Hidden</source>
2913
        <translation type="unfinished">Saklı</translation>
2914
    </message>
2915
    <message>
2916
        <source>No Print</source>
2917
        <translation type="unfinished">Yazdırma</translation>
2918
    </message>
2919
    <message>
2920
        <source>No View</source>
2921
        <translation type="unfinished">Görünmez</translation>
2922
    </message>
2923
    <message>
2924
        <source>Appearance</source>
2925
        <translation type="unfinished">Görünüş</translation>
2926
    </message>
2927
    <message>
2928
        <source>Text for Button Down</source>
2929
        <translation type="unfinished">Aşağıya tuşu için Metin</translation>
2930
    </message>
2931
    <message>
2932
        <source>Text for Roll Over</source>
2933
        <translation type="unfinished">Yuvarlama için Metin</translation>
2934
    </message>
2935
    <message>
2936
        <source>Icons</source>
2937
        <translation type="unfinished"></translation>
2938
    </message>
2939
    <message>
2940
        <source>Use Icons</source>
2941
        <translation type="unfinished">İkonları kullan</translation>
2942
    </message>
2943
    <message>
2944
        <source>Remove</source>
2945
        <translation type="unfinished">Sil</translation>
2946
    </message>
2947
    <message>
2948
        <source>Pressed</source>
2949
        <translation type="unfinished">Basılı</translation>
2950
    </message>
2951
    <message>
2952
        <source>Roll Over</source>
2953
        <translation type="unfinished">Roll Over</translation>
2954
    </message>
2955
    <message>
2956
        <source>Icon Placement...</source>
2957
        <translation type="unfinished">İkon yerleştir...</translation>
2958
    </message>
2959
    <message>
2960
        <source>Highlight</source>
2961
        <translation type="unfinished">Önemli</translation>
2962
    </message>
2963
    <message>
2964
        <source>Invert</source>
2965
        <translation type="unfinished">Tersi</translation>
2966
    </message>
2967
    <message>
2968
        <source>Outlined</source>
2969
        <translation type="unfinished">Taslağı çizilmiş</translation>
2970
    </message>
2971
    <message>
2972
        <source>Push</source>
2973
        <translation type="unfinished">Bas</translation>
2974
    </message>
2975
    <message>
2976
        <source>Multi-Line</source>
2977
        <translation type="unfinished">Çok çizgili</translation>
2978
    </message>
2979
    <message>
2980
        <source>Password</source>
2981
        <translation type="unfinished">Åžifre</translation>
2982
    </message>
2983
    <message>
2984
        <source>Limit of</source>
2985
        <translation type="unfinished">Azami</translation>
2986
    </message>
2987
    <message>
2988
        <source>Characters</source>
2989
        <translation type="unfinished">Karakterler</translation>
2990
    </message>
2991
    <message>
2992
        <source>Do Not Scroll</source>
2993
        <translation type="unfinished">Döndürme</translation>
2994
    </message>
2995
    <message>
2996
        <source>Do Not Spell Check</source>
2997
        <translation type="unfinished">İmla kurallarını kotrol etme</translation>
2998
    </message>
2999
    <message>
3000
        <source>Check Style:</source>
3001
        <translation type="unfinished">Biçem kontrol:</translation>
3002
    </message>
3003
    <message>
3004
        <source>Check</source>
3005
        <translation type="unfinished">Kontrol</translation>
3006
    </message>
3007
    <message>
3008
        <source>Cross</source>
3009
        <translation type="unfinished">Çarpı</translation>
3010
    </message>
3011
    <message>
3012
        <source>Diamond</source>
3013
        <translation type="unfinished">Eşkenar dörtgen</translation>
3014
    </message>
3015
    <message>
3016
        <source>Circle</source>
3017
        <translation type="unfinished">Daire</translation>
3018
    </message>
3019
    <message>
3020
        <source>Star</source>
3021
        <translation type="unfinished">Yıldız</translation>
3022
    </message>
3023
    <message>
3024
        <source>Square</source>
3025
        <translation type="unfinished">Kare</translation>
3026
    </message>
3027
    <message>
3028
        <source>Default is Checked</source>
3029
        <translation type="unfinished">Öntanımlılar aktif</translation>
3030
    </message>
3031
    <message>
3032
        <source>Editable</source>
3033
        <translation type="unfinished">Düzenlenebilir</translation>
3034
    </message>
3035
    <message>
3036
        <source>Options</source>
3037
        <translation type="unfinished">Seçenekler</translation>
3038
    </message>
3039
    <message>
3040
        <source>Java Script</source>
3278 cbradney 3041
        <translation type="obsolete">Java Script</translation>
418 Franz 3042
    </message>
3043
    <message>
3044
        <source>Go To</source>
3045
        <translation type="unfinished">Git</translation>
3046
    </message>
3047
    <message>
3048
        <source>Submit Form</source>
3049
        <translation type="unfinished">Form gönder</translation>
3050
    </message>
3051
    <message>
3052
        <source>Reset Form</source>
3053
        <translation type="unfinished">Formu sıfırla</translation>
3054
    </message>
3055
    <message>
3056
        <source>Import Data</source>
3057
        <translation type="unfinished">Verileri içe aktar</translation>
3058
    </message>
3059
    <message>
3060
        <source>Event:</source>
3061
        <translation type="unfinished">Olay:</translation>
3062
    </message>
3063
    <message>
3064
        <source>Mouse Up</source>
3065
        <translation type="unfinished">Fare tuşunu bırak</translation>
3066
    </message>
3067
    <message>
3068
        <source>Mouse Down</source>
3069
        <translation type="unfinished">Fare tuşuna bas</translation>
3070
    </message>
3071
    <message>
3072
        <source>Mouse Enter</source>
3073
        <translation type="unfinished">Fare ile Enter</translation>
3074
    </message>
3075
    <message>
3076
        <source>Mouse Exit</source>
3077
        <translation type="unfinished">Fare işareti çıktığında</translation>
3078
    </message>
3079
    <message>
3080
        <source>On Focus</source>
3081
        <translation type="unfinished">Alan fokusda</translation>
3082
    </message>
3083
    <message>
3084
        <source>On Blur</source>
3085
        <translation type="unfinished">Alan fokusu verdiğinde</translation>
3086
    </message>
3087
    <message>
3088
        <source>Script:</source>
3089
        <translation type="unfinished">Script:</translation>
3090
    </message>
3091
    <message>
3092
        <source>Edit...</source>
3093
        <translation type="unfinished">Düzenle...</translation>
3094
    </message>
3095
    <message>
3096
        <source>Submit to URL:</source>
3097
        <translation type="unfinished">URL &apos;ye gönder:</translation>
3098
    </message>
3099
    <message>
3100
        <source>Submit Data as HTML</source>
3101
        <translation type="unfinished">Verileri HTML olarak gönder</translation>
3102
    </message>
3103
    <message>
3104
        <source>Import Data from:</source>
3105
        <translation type="unfinished">Verileri burdan içe aktar:</translation>
3106
    </message>
3107
    <message>
3108
        <source>Destination</source>
3109
        <translation type="unfinished">Hedef</translation>
3110
    </message>
3111
    <message>
3112
        <source>To File:</source>
3113
        <translation type="unfinished"></translation>
3114
    </message>
3115
    <message>
3116
        <source>Change...</source>
3117
        <translation type="unfinished">Değiştir...</translation>
3118
    </message>
3119
    <message>
3120
        <source>Page:</source>
3121
        <translation type="unfinished">Sayfa</translation>
3122
    </message>
3123
    <message>
3124
        <source>X-Pos:</source>
3125
        <translation type="unfinished"></translation>
3126
    </message>
3127
    <message>
3128
        <source> pt</source>
3129
        <translation type="unfinished"></translation>
3130
    </message>
3131
    <message>
3132
        <source>Y-Pos:</source>
3133
        <translation type="unfinished"></translation>
3134
    </message>
3135
    <message>
3136
        <source>Action</source>
3137
        <translation type="unfinished">Eylem</translation>
3138
    </message>
3139
    <message>
3140
        <source>Field is formatted as:</source>
3141
        <translation type="unfinished">Alan formatı:</translation>
3142
    </message>
3143
    <message>
3144
        <source>Plain</source>
3145
        <translation type="unfinished">Sade</translation>
3146
    </message>
3147
    <message>
3148
        <source>Number</source>
3149
        <translation type="unfinished">Sayı</translation>
3150
    </message>
3151
    <message>
3152
        <source>Percentage</source>
3153
        <translation type="unfinished">Oran</translation>
3154
    </message>
3155
    <message>
3156
        <source>Date</source>
3157
        <translation type="unfinished">Tarih</translation>
3158
    </message>
3159
    <message>
3160
        <source>Time</source>
3161
        <translation type="unfinished">Zaman</translation>
3162
    </message>
3163
    <message>
3164
        <source>Custom</source>
3165
        <translation type="unfinished">Kullanıcı tanımlı</translation>
3166
    </message>
3167
    <message>
3168
        <source>Number Format</source>
3169
        <translation type="unfinished">Sayı biçemi</translation>
3170
    </message>
3171
    <message>
3172
        <source>Decimals:</source>
3173
        <translation type="unfinished">Ondalık sayılar:</translation>
3174
    </message>
3175
    <message>
3176
        <source>Use Currency Symbol</source>
3177
        <translation type="unfinished">Tedavül sembollerini kullan</translation>
3178
    </message>
3179
    <message>
3180
        <source>Prepend Currency Symbol</source>
3181
        <translation type="unfinished">Tedavül sembollerini ekle</translation>
3182
    </message>
3183
    <message>
3184
        <source>Formatting</source>
3185
        <translation type="unfinished">Biçemler</translation>
3186
    </message>
3187
    <message>
3188
        <source>Percent Format</source>
3189
        <translation type="unfinished">Yüzdelik biçemi</translation>
3190
    </message>
3191
    <message>
3192
        <source>Date Format</source>
3193
        <translation type="unfinished">Tarih biçemi</translation>
3194
    </message>
3195
    <message>
3196
        <source>Time Format</source>
3197
        <translation type="unfinished">Zaman biçemi</translation>
3198
    </message>
3199
    <message>
3200
        <source>Custom Scripts</source>
3201
        <translation type="unfinished">Kullanıcı tanımlı</translation>
3202
    </message>
3203
    <message>
3204
        <source>Format:</source>
3205
        <translation type="unfinished">Biçem:</translation>
3206
    </message>
3207
    <message>
3208
        <source>Keystroke:</source>
3209
        <translation type="unfinished">Tuş vuruşu:</translation>
3210
    </message>
3211
    <message>
3212
        <source>Format</source>
3213
        <translation type="unfinished">Biçem</translation>
3214
    </message>
3215
    <message>
3216
        <source>Value is not validated</source>
3217
        <translation type="unfinished">Değer kontrol edilmedi</translation>
3218
    </message>
3219
    <message>
3220
        <source>Value must be greater than or equal to:</source>
3221
        <translation type="unfinished">Değer bundan büyük veya küçük olmalı:</translation>
3222
    </message>
3223
    <message>
3224
        <source>and less or equal to:</source>
3225
        <translation type="unfinished"> ve küçük veya eşit:</translation>
3226
    </message>
3227
    <message>
3228
        <source>Custom validate script:</source>
3229
        <translation type="unfinished">Özel kontrol scripti:</translation>
3230
    </message>
3231
    <message>
3232
        <source>Validate</source>
3233
        <translation type="unfinished">Kontrol et</translation>
3234
    </message>
3235
    <message>
3236
        <source>Value is not calculated</source>
3237
        <translation type="unfinished">Değer hesaplanmayacak</translation>
3238
    </message>
3239
    <message>
3240
        <source>Value is the</source>
3241
        <translation type="unfinished">Değer</translation>
3242
    </message>
3243
    <message>
3244
        <source>sum</source>
3245
        <translation type="unfinished">Toplam</translation>
3246
    </message>
3247
    <message>
3248
        <source>product</source>
3249
        <translation type="unfinished">ürün</translation>
3250
    </message>
3251
    <message>
3252
        <source>average</source>
3253
        <translation type="unfinished">ortalama</translation>
3254
    </message>
3255
    <message>
3256
        <source>minimum</source>
3257
        <translation type="unfinished">asgari</translation>
3258
    </message>
3259
    <message>
3260
        <source>maximum</source>
3261
        <translation type="unfinished">azami</translation>
3262
    </message>
3263
    <message>
3264
        <source>of the following fields:</source>
3265
        <translation type="unfinished">aşağıdaki alanlar:</translation>
3266
    </message>
3267
    <message>
3268
        <source>Pick...</source>
3269
        <translation type="unfinished">Seçin...</translation>
3270
    </message>
3271
    <message>
3272
        <source>Custom calculation script:</source>
3273
        <translation type="unfinished">Özel hesaplama scripti:</translation>
3274
    </message>
3275
    <message>
3276
        <source>Calculate</source>
3277
        <translation type="unfinished">Hesapla</translation>
3278
    </message>
3279
    <message>
3280
        <source>OK</source>
3281
        <translation type="unfinished">Tamam</translation>
3282
    </message>
3283
    <message>
3284
        <source>Cancel</source>
3285
        <translation type="unfinished">Vazgeç</translation>
3286
    </message>
3287
    <message>
3288
        <source>Flag is ignored for PDF 1.3</source>
3289
        <translation type="unfinished"></translation>
3290
    </message>
3291
    <message>
3292
        <source>Enter a comma separated list of fields here</source>
3293
        <translation type="unfinished"></translation>
3294
    </message>
3295
    <message>
3296
        <source>You need at least the Icon for Normal to use Icons for Buttons</source>
3297
        <translation type="unfinished">İkonları kullanabilmek için en azından normal olarak bu ikona ihtıyacınız var</translation>
3298
    </message>
3299
    <message>
3300
        <source>Open</source>
3301
        <translation type="unfinished">Aç</translation>
3302
    </message>
3303
    <message>
3304
        <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source>
3278 cbradney 3305
        <translation type="obsolete">Resim dosyaları (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Bütün dosyalar (*)</translation>
418 Franz 3306
    </message>
3307
    <message>
3308
        <source>Example:</source>
3309
        <translation type="unfinished">Örnek:</translation>
3310
    </message>
3311
    <message>
3312
        <source>Selection Change</source>
3313
        <translation type="unfinished">Seçimi değiştir</translation>
3314
    </message>
3315
    <message>
3316
        <source>PDF Files (*.pdf);;All Files (*)</source>
3317
        <translation type="unfinished"></translation>
3318
    </message>
3278 cbradney 3319
    <message>
3320
        <source>JavaScript</source>
3321
        <translation type="unfinished"></translation>
3322
    </message>
3323
    <message>
3324
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;All Files (*)</source>
3325
        <translation type="unfinished"></translation>
3326
    </message>
418 Franz 3327
</context>
3328
<context>
3329
    <name>Annota</name>
3330
    <message>
3331
        <source>Annotation Properties</source>
3332
        <translation type="unfinished">Dipnot özellikleri</translation>
3333
    </message>
3334
    <message>
3335
        <source>Text</source>
3336
        <translation type="unfinished">Metin</translation>
3337
    </message>
3338
    <message>
3339
        <source>Link</source>
3340
        <translation type="unfinished">Bağlantı</translation>
3341
    </message>
3342
    <message>
3343
        <source>External Link</source>
3344
        <translation type="unfinished"></translation>
3345
    </message>
3346
    <message>
3347
        <source>External Web-Link</source>
3348
        <translation type="unfinished"></translation>
3349
    </message>
3350
    <message>
3351
        <source>Destination</source>
3352
        <translation type="unfinished">Hedef</translation>
3353
    </message>
3354
    <message>
3355
        <source> pt</source>
3356
        <translation type="unfinished"></translation>
3357
    </message>
3358
    <message>
3359
        <source>Open</source>
3360
        <translation type="unfinished">Aç</translation>
3361
    </message>
3362
    <message>
3363
        <source>PDF-Documents (*.pdf);;All Files (*)</source>
3364
        <translation type="unfinished"></translation>
3365
    </message>
454 fschmid 3366
    <message>
3367
        <source>&amp;Type:</source>
3368
        <translation type="unfinished"></translation>
3369
    </message>
3370
    <message>
3371
        <source>C&amp;hange...</source>
3372
        <translation type="unfinished"></translation>
3373
    </message>
3374
    <message>
3375
        <source>&amp;Page:</source>
3376
        <translation type="unfinished"></translation>
3377
    </message>
3378
    <message>
3379
        <source>&amp;X-Pos</source>
3380
        <translation type="unfinished"></translation>
3381
    </message>
3382
    <message>
3383
        <source>&amp;Y-Pos:</source>
3384
        <translation type="unfinished"></translation>
3385
    </message>
3064 cbradney 3386
</context>
3387
<context>
3388
    <name>ApplyMasterPageDialog</name>
532 cbradney 3389
    <message>
3064 cbradney 3390
        <source>Normal</source>
3391
        <translation type="unfinished">Normal</translation>
3392
    </message>
3393
    <message>
3394
        <source>Apply Master Page</source>
532 cbradney 3395
        <translation type="unfinished"></translation>
3396
    </message>
3397
    <message>
3064 cbradney 3398
        <source>&amp;Master Page:</source>
532 cbradney 3399
        <translation type="unfinished"></translation>
3400
    </message>
418 Franz 3401
    <message>
3064 cbradney 3402
        <source>Apply To</source>
3403
        <translation type="unfinished"></translation>
418 Franz 3404
    </message>
3405
    <message>
3064 cbradney 3406
        <source>Current &amp;page</source>
418 Franz 3407
        <translation type="unfinished"></translation>
3408
    </message>
3409
    <message>
3064 cbradney 3410
        <source>Alt+P</source>
3411
        <translation type="unfinished"></translation>
418 Franz 3412
    </message>
3413
    <message>
3064 cbradney 3414
        <source>&amp;Even pages</source>
418 Franz 3415
        <translation type="unfinished"></translation>
3416
    </message>
3417
    <message>
3064 cbradney 3418
        <source>Alt+E</source>
418 Franz 3419
        <translation type="unfinished"></translation>
3420
    </message>
3421
    <message>
3064 cbradney 3422
        <source>O&amp;dd pages</source>
418 Franz 3423
        <translation type="unfinished"></translation>
3424
    </message>
3425
    <message>
3064 cbradney 3426
        <source>Alt+D</source>
418 Franz 3427
        <translation type="unfinished"></translation>
3428
    </message>
3429
    <message>
3064 cbradney 3430
        <source>&amp;All pages</source>
418 Franz 3431
        <translation type="unfinished"></translation>
3432
    </message>
3433
    <message>
3064 cbradney 3434
        <source>Alt+A</source>
418 Franz 3435
        <translation type="unfinished"></translation>
3436
    </message>
3437
    <message>
3064 cbradney 3438
        <source>&amp;Within range</source>
418 Franz 3439
        <translation type="unfinished"></translation>
3440
    </message>
3064 cbradney 3441
    <message>
3442
        <source>Alt+W</source>
3443
        <translation type="unfinished"></translation>
3444
    </message>
3445
    <message>
3446
        <source>&lt;qt&gt;Apply the selected template to even, odd or all pages within the following range&lt;/qt&gt;</source>
3447
        <translation type="unfinished"></translation>
3448
    </message>
3449
    <message>
3450
        <source>to</source>
3451
        <translation type="unfinished"></translation>
3452
    </message>
3453
    <message>
3454
        <source>Alt+O</source>
3455
        <translation type="unfinished"></translation>
3456
    </message>
3457
    <message>
3458
        <source>Alt+C</source>
3459
        <translation type="unfinished"></translation>
3460
    </message>
418 Franz 3461
</context>
3462
<context>
3064 cbradney 3463
    <name>ApplyT</name>
3464
    <message>
3465
        <source>Apply Template</source>
3466
        <translation type="obsolete">Geçici sayfayı uygula</translation>
3467
    </message>
3468
    <message>
3469
        <source>Normal</source>
3470
        <translation type="obsolete">Normal</translation>
3471
    </message>
3472
</context>
3473
<context>
1525 cbradney 3474
    <name>ArrowChooser</name>
3475
    <message>
3476
        <source>None</source>
3477
        <translation type="unfinished">yok</translation>
3478
    </message>
3479
</context>
3480
<context>
418 Franz 3481
    <name>Biblio</name>
3482
    <message>
3483
        <source>Scrapbook</source>
3484
        <translation type="unfinished">Kütüphane</translation>
3485
    </message>
3486
    <message>
3487
        <source>&amp;New</source>
3488
        <translation type="unfinished"></translation>
3489
    </message>
3490
    <message>
3491
        <source>&amp;Load...</source>
3492
        <translation type="unfinished"></translation>
3493
    </message>
3494
    <message>
3495
        <source>&amp;Save</source>
3496
        <translation type="unfinished"></translation>
3497
    </message>
3498
    <message>
3499
        <source>Save &amp;As...</source>
3500
        <translation type="unfinished"></translation>
3501
    </message>
3502
    <message>
3503
        <source>&amp;Close</source>
3504
        <translation type="unfinished"></translation>
3505
    </message>
3506
    <message>
3507
        <source>&amp;Small</source>
3508
        <translation type="unfinished"></translation>
3509
    </message>
3510
    <message>
3511
        <source>&amp;Medium</source>
3512
        <translation type="unfinished"></translation>
3513
    </message>
3514
    <message>
3515
        <source>&amp;Large</source>
3516
        <translation type="unfinished"></translation>
3517
    </message>
3518
    <message>
3519
        <source>&amp;File</source>
3520
        <translation type="unfinished"></translation>
3521
    </message>
3522
    <message>
3523
        <source>&amp;Preview</source>
3524
        <translation type="unfinished"></translation>
3525
    </message>
3526
    <message>
3527
        <source>Scrapbooks (*.scs);;All Files (*)</source>
3528
        <translation type="unfinished"></translation>
3529
    </message>
3530
    <message>
3531
        <source>Rename</source>
3532
        <translation type="unfinished"></translation>
3533
    </message>
3534
    <message>
3535
        <source>Delete</source>
3536
        <translation type="unfinished">Sil</translation>
3537
    </message>
3538
    <message>
3539
        <source>Warning</source>
3824 cbradney 3540
        <translation type="obsolete">Uyarı</translation>
418 Franz 3541
    </message>
3542
    <message>
3543
        <source>OK</source>
3064 cbradney 3544
        <translation type="obsolete">Tamam</translation>
418 Franz 3545
    </message>
3546
    <message>
3547
        <source>Object</source>
3548
        <translation type="unfinished">Nesne</translation>
3549
    </message>
3550
    <message>
3551
        <source>&amp;Name:</source>
3552
        <translation type="unfinished"></translation>
3553
    </message>
3554
    <message>
3555
        <source>New Entry</source>
3556
        <translation type="unfinished">Yeni giriş</translation>
3557
    </message>
3824 cbradney 3558
    <message>
3559
        <source>Name &quot;%1&quot; is not unique.
3560
Please choose another.</source>
3561
        <translation type="unfinished"></translation>
3562
    </message>
418 Franz 3563
</context>
3564
<context>
3565
    <name>BookMView</name>
3566
    <message>
3567
        <source>Bookmarks</source>
3568
        <translation type="unfinished">Yer imleri</translation>
3569
    </message>
3570
    <message>
3571
        <source>Move Bookmark</source>
3572
        <translation type="unfinished">Yer imine taşı</translation>
3573
    </message>
3574
    <message>
3575
        <source>Insert Bookmark</source>
3576
        <translation type="unfinished">Yer imine ekle</translation>
3577
    </message>
3578
    <message>
3579
        <source>Cancel</source>
3580
        <translation type="unfinished">Vazgeç</translation>
3581
    </message>
3582
</context>
3583
<context>
3584
    <name>BookPalette</name>
3585
    <message>
3586
        <source>Bookmarks</source>
3587
        <translation type="unfinished">Yer imleri</translation>
3588
    </message>
3589
</context>
3590
<context>
3591
    <name>ButtonIcon</name>
3592
    <message>
3593
        <source>Icon Placement</source>
3594
        <translation type="unfinished"></translation>
3595
    </message>
3596
    <message>
3597
        <source>Layout:</source>
3598
        <translation type="unfinished">Düzen:</translation>
3599
    </message>
3600
    <message>
3601
        <source>Caption only</source>
3602
        <translation type="unfinished">Sadece Metin</translation>
3603
    </message>
3604
    <message>
3605
        <source>Icon only</source>
3606
        <translation type="unfinished">Sadece ikon</translation>
3607
    </message>
3608
    <message>
3609
        <source>Caption below Icon</source>
3610
        <translation type="unfinished">Metin ikonun altında</translation>
3611
    </message>
3612
    <message>
3613
        <source>Caption above Icon</source>
3614
        <translation type="unfinished">Metin ikonun üstünde</translation>
3615
    </message>
3616
    <message>
3617
        <source>Caption right to Icon</source>
3618
        <translation type="unfinished">Metin ikonun sağında</translation>
3619
    </message>
3620
    <message>
3621
        <source>Caption left to Icon</source>
3622
        <translation type="unfinished">Metin ikonun solunda</translation>
3623
    </message>
3624
    <message>
3625
        <source>Caption overlays Icon</source>
3626
        <translation type="unfinished">Metin ikonun üstünde</translation>
3627
    </message>
3628
    <message>
3629
        <source>Scale:</source>
3630
        <translation type="unfinished"></translation>
3631
    </message>
3632
    <message>
3633
        <source>Always</source>
3634
        <translation type="unfinished">Daima</translation>
3635
    </message>
3636
    <message>
3637
        <source>When Icon is too small</source>
3638
        <translation type="unfinished">Eğer ikon çok küçükse</translation>
3639
    </message>
3640
    <message>
3641
        <source>When Icon is too big</source>
3642
        <translation type="unfinished">Eğer ikon çok büyükse</translation>
3643
    </message>
3644
    <message>
3645
        <source>Never</source>
3646
        <translation type="unfinished">Asla</translation>
3647
    </message>
3648
    <message>
3649
        <source>Scale How:</source>
3650
        <translation type="unfinished">Ölçekleme yöntemi:</translation>
3651
    </message>
3652
    <message>
3653
        <source>Proportional</source>
3654
        <translation type="unfinished">Orantılı</translation>
3655
    </message>
3656
    <message>
3657
        <source>Non Proportional</source>
3658
        <translation type="unfinished">Orantısız</translation>
3659
    </message>
3660
    <message>
3661
        <source>Icon</source>
3662
        <translation type="unfinished"></translation>
3663
    </message>
3664
    <message>
3665
        <source>OK</source>
3666
        <translation type="unfinished">Tamam</translation>
3667
    </message>
3668
    <message>
3669
        <source>Cancel</source>
3670
        <translation type="unfinished">Vazgeç</translation>
3671
    </message>
3672
    <message>
3673
        <source>Reset</source>
3674
        <translation type="unfinished">Sıfırla</translation>
3675
    </message>
3676
</context>
3677
<context>
3678
    <name>CMSPrefs</name>
3679
    <message>
3680
        <source>Color Management Settings</source>
1525 cbradney 3681
        <translation type="obsolete">Renk yönetimi ayarları</translation>
418 Franz 3682
    </message>
3683
    <message>
3684
        <source>&amp;Activate Color Management</source>
3685
        <translation type="unfinished"></translation>
3686
    </message>
3687
    <message>
3688
        <source>System Profiles</source>
3689
        <translation type="unfinished">Sistem profili</translation>
3690
    </message>
3691
    <message>
3692
        <source>&amp;Solid Colors:</source>
3693
        <translation type="unfinished"></translation>
3694
    </message>
3695
    <message>
3696
        <source>&amp;Monitor:</source>
3697
        <translation type="unfinished"></translation>
3698
    </message>
3699
    <message>
3700
        <source>P&amp;rinter:</source>
3701
        <translation type="unfinished"></translation>
3702
    </message>
3703
    <message>
3704
        <source>Rendering Intents</source>
3705
        <translation type="unfinished">Rendering amaçlar</translation>
3706
    </message>
3707
    <message>
3708
        <source>Perceptual</source>
3709
        <translation type="unfinished">Algılama</translation>
3710
    </message>
3711
    <message>
3712
        <source>Relative Colorimetric</source>
3713
        <translation type="unfinished">Göreceli renk ölçer</translation>
3714
    </message>
3715
    <message>
3716
        <source>Saturation</source>
3717
        <translation type="unfinished">Gölgelendirme</translation>
3718
    </message>
3719
    <message>
3720
        <source>Absolute Colorimetric</source>
3721
        <translation type="unfinished">Tam renk ölçer</translation>
3722
    </message>
3723
    <message>
3724
        <source>M&amp;onitor:</source>
3725
        <translation type="unfinished"></translation>
3726
    </message>
3727
    <message>
3728
        <source>Pr&amp;inter:</source>
3729
        <translation type="unfinished"></translation>
3730
    </message>
3731
    <message>
3732
        <source>Sim&amp;ulate Printer on the Screen</source>
3733
        <translation type="unfinished"></translation>
3734
    </message>
3735
    <message>
3736
        <source>Mark Colors out of &amp;Gamut</source>
3737
        <translation type="unfinished"></translation>
3738
    </message>
3739
    <message>
3740
        <source>Use &amp;Blackpoint Compensation</source>
3741
        <translation type="unfinished"></translation>
3742
    </message>
3743
    <message>
3744
        <source>Default color profile for solid colors on the page</source>
3745
        <translation type="unfinished"></translation>
3746
    </message>
3747
    <message>
3748
        <source>Color profile that you have generated or received from the manufacturer.
3749
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source>
3750
        <translation type="unfinished"></translation>
3751
    </message>
3752
    <message>
3753
        <source>Color profile for your printer model from the manufacturer.
3754
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source>
3755
        <translation type="unfinished"></translation>
3756
    </message>
3757
    <message>
3758
        <source>Default rendering intent for your monitor. Unless you know why to change it,
3759
Relative Colorimetric or Perceptual should be chosen.</source>
3760
        <translation type="unfinished"></translation>
3761
    </message>
3762
    <message>
3763
        <source>Default rendering intent for your printer. Unless you know why to change it,
3764
Relative Colorimetric or Perceptual should be chosen.</source>
3765
        <translation type="unfinished"></translation>
3766
    </message>
3767
    <message>
3768
        <source>Enable &apos;soft proofing&apos; of how your document colors will print,
3769
based on the chosen printer profile.</source>
3770
        <translation type="unfinished"></translation>
3771
    </message>
3772
    <message>
3773
        <source>Method of showing colors on the screen which may not print properly.
3774
This requires very accurate profiles and serves only as a warning.</source>
3775
        <translation type="unfinished"></translation>
3776
    </message>
3777
    <message>
3778
        <source>Black Point Compensation is a method of improving contrast in photos.
3779
It is recommended that you enable this if you have photos in your document.</source>
3780
        <translation type="unfinished"></translation>
3781
    </message>
3064 cbradney 3782
    <message>
3783
        <source>&amp;RGB Pictures:</source>
3784
        <translation type="unfinished"></translation>
3785
    </message>
3786
    <message>
3787
        <source>&amp;CMYK Pictures:</source>
3788
        <translation type="unfinished"></translation>
3789
    </message>
3790
    <message>
3278 cbradney 3791
        <source>Default color profile for imported CMYK images</source>
3064 cbradney 3792
        <translation type="unfinished"></translation>
3793
    </message>
3794
    <message>
3278 cbradney 3795
        <source>Default color profile for imported RGB images</source>
3064 cbradney 3796
        <translation type="unfinished"></translation>
3797
    </message>
418 Franz 3798
</context>
3799
<context>
3800
    <name>CMYKChoose</name>
3801
    <message>
3802
        <source>Edit Color</source>
3803
        <translation type="unfinished">Renk düzenle</translation>
3804
    </message>
3805
    <message>
3806
        <source>&amp;Name:</source>
3807
        <translation type="unfinished"></translation>
3808
    </message>
3809
    <message>
3810
        <source>Color &amp;Model</source>
3811
        <translation type="unfinished"></translation>
3812
    </message>
3813
    <message>
3814
        <source>CMYK</source>
3815
        <translation type="unfinished"></translation>
3816
    </message>
3817
    <message>
3818
        <source>RGB</source>
3819
        <translation type="unfinished"></translation>
3820
    </message>
3821
    <message>
3822
        <source>Web Safe RGB</source>
3823
        <translation type="unfinished"></translation>
3824
    </message>
3825
    <message>
3826
        <source>New</source>
3827
        <translation type="unfinished">Yeni</translation>
3828
    </message>
3829
    <message>
3830
        <source>Old</source>
3831
        <translation type="unfinished">Eski</translation>
3832
    </message>
3833
    <message>
3834
        <source>HSV-Colormap</source>
3835
        <translation type="unfinished"></translation>
3836
    </message>
3837
    <message>
3838
        <source>C:</source>
3839
        <translation type="unfinished"></translation>
3840
    </message>
3841
    <message>
3842
        <source> %</source>
3843
        <translation type="unfinished"></translation>
3844
    </message>
3845
    <message>
3846
        <source>M:</source>
3847
        <translation type="unfinished"></translation>
3848
    </message>
3849
    <message>
3850
        <source>Y:</source>
3851
        <translation type="unfinished"></translation>
3852
    </message>
3853
    <message>
3854
        <source>K:</source>
3855
        <translation type="unfinished"></translation>
3856
    </message>
3857
    <message>
3858
        <source>Dynamic Color Bars</source>
3859
        <translation type="unfinished">Dinamik renk çubukları</translation>
3860
    </message>
3861
    <message>
3862
        <source>Static Color Bars</source>
3863
        <translation type="unfinished">Statik renk çubukları</translation>
3864
    </message>
3865
    <message>
3866
        <source>R:</source>
3867
        <translation type="unfinished"></translation>
3868
    </message>
3869
    <message>
3870
        <source>G:</source>
3871
        <translation type="unfinished"></translation>
3872
    </message>
3873
    <message>
3874
        <source>B:</source>
3875
        <translation type="unfinished"></translation>
3876
    </message>
3877
    <message>
3878
        <source>Warning</source>
3824 cbradney 3879
        <translation type="obsolete">Uyarı</translation>
418 Franz 3880
    </message>
3881
    <message>
3882
        <source>OK</source>
3064 cbradney 3883
        <translation type="obsolete">Tamam</translation>
418 Franz 3884
    </message>
532 cbradney 3885
    <message>
3886
        <source>None</source>
3887
        <translation type="unfinished">yok</translation>
3888
    </message>
3889
    <message>
3824 cbradney 3890
        <source>Is Spot Color</source>
532 cbradney 3891
        <translation type="unfinished"></translation>
3892
    </message>
3064 cbradney 3893
    <message>
3824 cbradney 3894
        <source>Is Registration Color</source>
3064 cbradney 3895
        <translation type="unfinished"></translation>
3896
    </message>
3897
    <message>
3824 cbradney 3898
        <source>You cannot create a color named &quot;%1&quot;.
3899
It is a reserved name for transparent color</source>
3064 cbradney 3900
        <translation type="unfinished"></translation>
3901
    </message>
3824 cbradney 3902
    <message>
3903
        <source>Name of the color is not unique</source>
3904
        <translation type="unfinished"></translation>
3905
    </message>
418 Franz 3906
</context>
3907
<context>
1525 cbradney 3908
    <name>ChTable</name>
3909
    <message>
3910
        <source>You can see a thumbnail if you press
3911
and hold down the right mouse button
3912
 
3913
The Insert key inserts a Glyph into the Selection below
3914
and the Delete key removes the last inserted one</source>
3915
        <translation type="unfinished"></translation>
3916
    </message>
3917
</context>
3918
<context>
3919
    <name>CharSelect</name>
3920
    <message>
3921
        <source>Select Character:</source>
3922
        <translation type="unfinished"></translation>
3923
    </message>
3924
    <message>
3925
        <source>Font:</source>
3926
        <translation type="unfinished"></translation>
3927
    </message>
3928
    <message>
3929
        <source>Character Class:</source>
3930
        <translation type="unfinished"></translation>
3931
    </message>
3932
    <message>
3933
        <source>&amp;Insert</source>
3934
        <translation type="unfinished"></translation>
3935
    </message>
3936
    <message>
3937
        <source>C&amp;lear</source>
3938
        <translation type="unfinished"></translation>
3939
    </message>
3940
    <message>
3941
        <source>&amp;Close</source>
3942
        <translation type="unfinished"></translation>
3943
    </message>
3944
    <message>
3945
        <source>Insert the characters at the cursor in the text</source>
3946
        <translation type="unfinished"></translation>
3947
    </message>
3948
    <message>
3949
        <source>Delete the current selection(s).</source>
3950
        <translation type="unfinished"></translation>
3951
    </message>
3952
    <message>
3953
        <source>Close this dialog and return to text editing.</source>
3954
        <translation type="unfinished"></translation>
3955
    </message>
3956
    <message>
3957
        <source>Full Character Set</source>
3958
        <translation type="unfinished"></translation>
3959
    </message>
3960
    <message>
3961
        <source>Basic Latin</source>
3962
        <translation type="unfinished"></translation>
3963
    </message>
3964
    <message>
3965
        <source>Latin-1 Supplement</source>
3966
        <translation type="unfinished"></translation>
3967
    </message>
3968
    <message>
3969
        <source>Latin Extended-A</source>
3970
        <translation type="unfinished"></translation>
3971
    </message>
3972
    <message>
3973
        <source>Latin Extended-B</source>
3974
        <translation type="unfinished"></translation>
3975
    </message>
3976
    <message>
3977
        <source>General Punctuation</source>
3978
        <translation type="unfinished"></translation>
3979
    </message>
3980
    <message>
3981
        <source>Super- and Subscripts</source>
3982
        <translation type="unfinished"></translation>
3983
    </message>
3984
    <message>
3985
        <source>Currency Symbols</source>
3986
        <translation type="unfinished"></translation>
3987
    </message>
3988
    <message>
3989
        <source>Letterlike Symbols</source>
3990
        <translation type="unfinished"></translation>
3991
    </message>
3992
    <message>
3993
        <source>Number Forms</source>
3994
        <translation type="unfinished"></translation>
3995
    </message>
3996
    <message>
3997
        <source>Arrows</source>
3998
        <translation type="unfinished"></translation>
3999
    </message>
4000
    <message>
4001
        <source>Mathematical Operators</source>
4002
        <translation type="unfinished"></translation>
4003
    </message>
4004
    <message>
4005
        <source>Box Drawing</source>
4006
        <translation type="unfinished"></translation>
4007
    </message>
4008
    <message>
4009
        <source>Block Elements</source>
4010
        <translation type="unfinished"></translation>
4011
    </message>
4012
    <message>
4013
        <source>Geometric Shapes</source>
4014
        <translation type="unfinished"></translation>
4015
    </message>
4016
    <message>
4017
        <source>Miscellaneous Symbols</source>
4018
        <translation type="unfinished"></translation>
4019
    </message>
4020
    <message>
4021
        <source>Dingbats</source>
4022
        <translation type="unfinished"></translation>
4023
    </message>
4024
    <message>
4025
        <source>Small Form Variants</source>
4026
        <translation type="unfinished"></translation>
4027
    </message>
4028
    <message>
4029
        <source>Ligatures</source>
4030
        <translation type="unfinished"></translation>
4031
    </message>
4032
    <message>
4033
        <source>Specials</source>
4034
        <translation type="unfinished"></translation>
4035
    </message>
4036
    <message>
4037
        <source>Greek</source>
4038
        <translation type="unfinished"></translation>
4039
    </message>
4040
    <message>
4041
        <source>Greek Extended</source>
4042
        <translation type="unfinished"></translation>
4043
    </message>
4044
    <message>
4045
        <source>Cyrillic</source>
4046
        <translation type="unfinished"></translation>
4047
    </message>
4048
    <message>
4049
        <source>Cyrillic Supplement</source>
4050
        <translation type="unfinished"></translation>
4051
    </message>
4052
    <message>
4053
        <source>Arabic</source>
4054
        <translation type="unfinished"></translation>
4055
    </message>
4056
    <message>
4057
        <source>Arabic Extended A</source>
4058
        <translation type="unfinished"></translation>
4059
    </message>
4060
    <message>
4061
        <source>Arabic Extended B</source>
4062
        <translation type="unfinished"></translation>
4063
    </message>
4064
    <message>
4065
        <source>Hebrew</source>
4066
        <translation type="unfinished"></translation>
4067
    </message>
4068
</context>
4069
<context>
4070
    <name>CheckDocument</name>
4071
    <message>
4072
        <source>Current Profile:</source>
4073
        <translation type="unfinished"></translation>
4074
    </message>
4075
    <message>
4076
        <source>Items</source>
4077
        <translation type="unfinished"></translation>
4078
    </message>
4079
    <message>
4080
        <source>Problems</source>
4081
        <translation type="unfinished"></translation>
4082
    </message>
4083
    <message>
4084
        <source>Glyphs missing</source>
4085
        <translation type="unfinished"></translation>
4086
    </message>
4087
    <message>
4088
        <source>Text overflow</source>
4089
        <translation type="unfinished"></translation>
4090
    </message>
4091
    <message>
4092
        <source>Object is not on a Page</source>
4093
        <translation type="unfinished"></translation>
4094
    </message>
4095
    <message>
4096
        <source>Missing Image</source>
4097
        <translation type="unfinished"></translation>
4098
    </message>
4099
    <message>
4100
        <source>Image has a DPI-Value less than %1 DPI</source>
4101
        <translation type="unfinished"></translation>
4102
    </message>
4103
    <message>
4104
        <source>Object has transparency</source>
4105
        <translation type="unfinished"></translation>
4106
    </message>
4107
    <message>
4108
        <source>Object is a placed PDF</source>
4109
        <translation type="unfinished"></translation>
4110
    </message>
4111
    <message>
4112
        <source>Document</source>
4113
        <translation type="unfinished"></translation>
4114
    </message>
4115
    <message>
4116
        <source>No Problems found</source>
4117
        <translation type="unfinished"></translation>
4118
    </message>
4119
    <message>
4120
        <source>Page </source>
4121
        <translation type="unfinished"></translation>
4122
    </message>
4123
    <message>
4124
        <source>Free Objects</source>
4125
        <translation type="unfinished"></translation>
4126
    </message>
4127
    <message>
4128
        <source>Problems found</source>
4129
        <translation type="unfinished"></translation>
4130
    </message>
4131
    <message>
4132
        <source>Preflight Verifier</source>
4133
        <translation type="unfinished"></translation>
4134
    </message>
3064 cbradney 4135
    <message>
4136
        <source>Object is a PDF Annotation or Field</source>
4137
        <translation type="unfinished"></translation>
4138
    </message>
4139
    <message>
4140
        <source>&amp;Ignore Errors</source>
4141
        <translation type="unfinished"></translation>
4142
    </message>
1525 cbradney 4143
</context>
4144
<context>
3278 cbradney 4145
    <name>ChooseStyles</name>
3064 cbradney 4146
    <message>
3278 cbradney 4147
        <source>Choose Styles</source>
3064 cbradney 4148
        <translation type="unfinished"></translation>
4149
    </message>
4150
    <message>
3278 cbradney 4151
        <source>Available Styles</source>
3064 cbradney 4152
        <translation type="unfinished"></translation>
4153
    </message>
4154
    <message>
3278 cbradney 4155
        <source>OK</source>
4156
        <translation type="obsolete">Tamam</translation>
3064 cbradney 4157
    </message>
4158
    <message>
3278 cbradney 4159
        <source>Cancel</source>
4160
        <translation type="obsolete">Vazgeç</translation>
3064 cbradney 4161
    </message>
4162
</context>
4163
<context>
3278 cbradney 4164
    <name>CollectForOutput</name>
3064 cbradney 4165
    <message>
3278 cbradney 4166
        <source>Choose a Directory</source>
3064 cbradney 4167
        <translation type="unfinished"></translation>
4168
    </message>
4169
    <message>
3278 cbradney 4170
        <source>Collecting...</source>
3064 cbradney 4171
        <translation type="unfinished"></translation>
4172
    </message>
4173
    <message>
3278 cbradney 4174
        <source>Warning</source>
4175
        <translation type="unfinished">Uyarı</translation>
3064 cbradney 4176
    </message>
4177
    <message>
3278 cbradney 4178
        <source>Cannot collect all files for output for file:
4179
%1</source>
4180
        <translation type="unfinished"></translation>
3064 cbradney 4181
    </message>
3824 cbradney 4182
    <message>
4183
        <source>Cannot collect the file: 
4184
%1</source>
4185
        <translation type="unfinished"></translation>
4186
    </message>
3064 cbradney 4187
</context>
4188
<context>
4189
    <name>ColorWheel</name>
4190
    <message>
4191
        <source>Monochromatic</source>
4192
        <translation type="unfinished"></translation>
4193
    </message>
4194
    <message>
4195
        <source>Analogous</source>
4196
        <translation type="unfinished"></translation>
4197
    </message>
4198
    <message>
4199
        <source>Complementary</source>
4200
        <translation type="unfinished"></translation>
4201
    </message>
4202
    <message>
4203
        <source>Split Complementary</source>
4204
        <translation type="unfinished"></translation>
4205
    </message>
4206
    <message>
4207
        <source>Triadic</source>
4208
        <translation type="unfinished"></translation>
4209
    </message>
4210
    <message>
4211
        <source>Tetradic (Double Complementary)</source>
4212
        <translation type="unfinished"></translation>
4213
    </message>
4214
    <message>
4215
        <source>Base Color</source>
4216
        <translation type="unfinished"></translation>
4217
    </message>
4218
    <message>
4219
        <source>Monochromatic Light</source>
4220
        <translation type="unfinished"></translation>
4221
    </message>
4222
    <message>
4223
        <source>Monochromatic Dark</source>
4224
        <translation type="unfinished"></translation>