Subversion Repositories Scribus

Rev

Rev 21544 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
    <name></name>
    <message>
        <source>getColorNames() -&gt; list

Returns a list containing the names of all defined colors in the document.
If no document is open, returns a list of the default document colors.
</source>
        <translation type="obsolete">getColorNames() -&gt; list

Returns a list containing the names of all defined colours in the document.
If no document is open, returns a list of the default document colours.
</translation>
    </message>
    <message>
        <source>getColor(&quot;name&quot;) -&gt; tuple

Returns a tuple (C, M, Y, K) containing the four color components of the
color &quot;name&quot; from the current document. If no document is open, returns
the value of the named color from the default document colors.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">getColor(&quot;name&quot;) -&gt; tuple

Returns a tuple (C, M, Y, K) containing the four colour components of the
colour &quot;name&quot; from the current document. If no document is open, returns
the value of the named colour from the default document colours.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple

Returns a tuple (R,G,B) containing the three color components of the
color &quot;name&quot; from the current document, converted to the RGB color
space. If no document is open, returns the value of the named color
from the default document colors.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">getColorAsRGB(&quot;name&quot;) -&gt; tuple

Returns a tuple (R,G,B) containing the three colour components of the
colour &quot;name&quot; from the current document, converted to the RGB colour
space. If no document is open, returns the value of the named colour
from the default document colours.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>changeColor(&quot;name&quot;, c, m, y, k)

Changes the color &quot;name&quot; to the specified CMYK value. The color value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Color components should be in the range from 0 to 255.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">changeColour(&quot;name&quot;, c, m, y, k)

Changes the colour &quot;name&quot; to the specified CMYK value. The colour value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Colour components should be in the range from 0 to 255.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)

Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
&quot;None&quot; - transparent.

deleteColor works on the default document colors if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">deleteColor(&quot;name&quot;, &quot;replace&quot;)

Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
&quot;None&quot; - transparent.

deleteColor works on the default document colours if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.

May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)

Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">replaceColor(&quot;name&quot;, &quot;replace&quot;)

Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.

May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>newDocDialog() -&gt; bool

Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
Returns true if a new document was created.
</source>
        <translation type="obsolete">newDocDialog() -&gt; bool

Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
Returns true if a new document was created.
</translation>
    </message>
    <message>
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer

Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
button, OK, is displayed. Only the caption and message arguments are required,
though setting an icon and appropriate button(s) is strongly
recommended. The message text may contain simple HTML-like markup.

Returns the number of the button the user pressed. Button numbers start
at 1.

For the icon and the button parameters there are predefined constants available
with the same names as in the Qt Documentation. These are the BUTTON_* and
ICON_* constants defined in the module. There are also two extra constants that
can be binary-ORed with button constants:
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
    BUTTONOPT_ESCAPE    Pressing escape presses this button.

Usage examples:
result = messageBox(&apos;Script failed&apos;,
                    &apos;This script only works when you have a text frame selected.&apos;,
                    ICON_ERROR)
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)

Defined button and icon constants:
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
</source>
        <translation type="obsolete">messageBox(&quot;caption&quot;, &quot;message&quot;,
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer

Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
button, OK, is displayed. Only the caption and message arguments are required,
though setting an icon and appropriate button(s) is strongly
recommended. The message text may contain simple HTML-like markup.

Returns the number of the button the user pressed. Button numbers start
at 1.

For the icon and the button parameters there are predefined constants available
with the same names as in the Qt Documentation. These are the BUTTON_* and
ICON_* constants defined in the module. There are also two extra constants that
can be binary-ORed with button constants:
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
    BUTTONOPT_ESCAPE    Pressing escape presses this button.

Usage examples:
result = messageBox(&apos;Script failed&apos;,
                    &apos;This script only works when you have a text frame selected.&apos;,
                    ICON_ERROR)
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)

Defined button and icon constants:
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
</translation>
    </message>
    <message>
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string

Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.

Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</source>
        <translation type="obsolete">valueDialog(caption, message [,defaultvalue]) -&gt; string

Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.

Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</translation>
    </message>
    <message>
        <source>newStyleDialog() -&gt; string

Shows &apos;Create new paragraph style&apos; dialog. Function returns real
style name or None when user cancels the dialog.
</source>
        <translation type="obsolete">newStyleDialog() -&gt; string

Shows &apos;Create new paragraph style&apos; dialog. Function returns real
style name or None when user cancels the dialog.
</translation>
    </message>
    <message>
        <source>newDoc(size, margins, orientation, firstPageNumber,
                   unit, facingPages, firstSideLeft) -&gt; bool

WARNING: Obsolete procedure! Use newDocument instead.

Creates a new document and returns true if successful. The parameters have the
following meaning:

    size = A tuple (width, height) describing the size of the document. You can
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

    margins = A tuple (left, right, top, bottom) describing the document
    margins

    orientation = the page orientation - constants PORTRAIT, LANDSCAPE

    firstPageNumer = is the number of the first page in the document used for
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
    numbers if you&apos;re creating a document in several parts.

    unit: this value sets the measurement units used by the document. Use a
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
    UNIT_PICAS, UNIT_POINTS.

    facingPages = FACINGPAGES, NOFACINGPAGES

    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
                FACINGPAGES, FIRSTPAGERIGHT)
</source>
        <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber,
                   unit, facingPages, firstSideLeft) -&gt; bool

WARNING: Obsolete procedure! Use newDocument instead.

Creates a new document and returns true if successful. The parameters have the
following meaning:

    size = A tuple (width, height) describing the size of the document. You can
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

    margins = A tuple (left, right, top, bottom) describing the document
    margins

    orientation = the page orientation - constants PORTRAIT, LANDSCAPE

    firstPageNumer = is the number of the first page in the document used for
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
    numbers if you&apos;re creating a document in several parts.

    unit: this value sets the measurement units used by the document. Use a
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
    UNIT_PICAS, UNIT_POINTS.

    facingPages = FACINGPAGES, NOFACINGPAGES

    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
                FACINGPAGES, FIRSTPAGERIGHT)
</translation>
    </message>
    <message>
        <source>closeDoc()

Closes the current document without prompting to save.

May throw NoDocOpenError if there is no document to close
</source>
        <translation type="obsolete">closeDoc()

Closes the current document without prompting to save.

May throw NoDocOpenError if there is no document to close
</translation>
    </message>
    <message>
        <source>haveDoc() -&gt; bool

Returns true if there is a document open.
</source>
        <translation type="obsolete">haveDoc() -&gt; bool

Returns true if there is a document open.
</translation>
    </message>
    <message>
        <source>openDoc(&quot;name&quot;)

Opens the document &quot;name&quot;.

May raise ScribusError if the document could not be opened.
</source>
        <translation type="obsolete">openDoc(&quot;name&quot;)

Opens the document &quot;name&quot;.

May raise ScribusError if the document could not be opened.
</translation>
    </message>
    <message>
        <source>saveDoc()

Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
save file dialog.

If the save fails, there is currently no way to tell.
</source>
        <translation type="obsolete">saveDoc()

Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
save file dialog.

If the save fails, there is currently no way to tell.
</translation>
    </message>
    <message>
        <source>saveDocAs(&quot;name&quot;)

Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).

May raise ScribusError if the save fails.
</source>
        <translation type="obsolete">saveDocAs(&quot;name&quot;)

Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).

May raise ScribusError if the save fails.
</translation>
    </message>
    <message>
        <source>setUnit(type)

Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type&gt;.

May raise ValueError if an invalid unit is passed.
</source>
        <translation type="obsolete">setUnit(type)

Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type&gt;.

May raise ValueError if an invalid unit is passed.
</translation>
    </message>
    <message>
        <source>getUnit() -&gt; integer (Scribus unit constant)

Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
</source>
        <translation type="obsolete">getUnit() -&gt; integer (Scribus unit constant)

Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
</translation>
    </message>
    <message>
        <source>loadStylesFromFile(&quot;filename&quot;)

Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</source>
        <translation type="obsolete">loadStylesFromFile(&quot;filename&quot;)

Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</translation>
    </message>
    <message>
        <source>setDocType(facingPages, firstPageLeft)

Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</source>
        <translation type="obsolete">setDocType(facingPages, firstPageLeft)

Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</translation>
    </message>
    <message>
        <source>closeMasterPage()

Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</source>
        <translation type="obsolete">closeMasterPage()

Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</translation>
    </message>
    <message>
        <source>masterPageNames()

Returns a list of the names of all master pages in the document.
</source>
        <translation type="obsolete">masterPageNames()

Returns a list of the names of all master pages in the document.
</translation>
    </message>
    <message>
        <source>editMasterPage(pageName)

Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</source>
        <translation type="obsolete">editMasterPage(pageName)

Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</translation>
    </message>
    <message>
        <source>createMasterPage(pageName)

Creates a new master page named pageName and opens it for
editing.
</source>
        <translation type="obsolete">createMasterPage(pageName)

Creates a new master page named pageName and opens it for
editing.
</translation>
    </message>
    <message>
        <source>deleteMasterPage(pageName)

Delete the named master page.
</source>
        <translation type="obsolete">deleteMasterPage(pageName)

Delete the named master page.
</translation>
    </message>
    <message>
        <source>getFillColor([&quot;name&quot;]) -&gt; string

Returns the name of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFillColor([&quot;name&quot;]) -&gt; string

Returns the name of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getLineColor([&quot;name&quot;]) -&gt; string

Returns the name of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineColor([&quot;name&quot;]) -&gt; string

Returns the name of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer

Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</source>
        <translation type="obsolete">getLineWidth([&quot;name&quot;]) -&gt; integer

Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <source>getLineShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</source>
        <translation type="obsolete">getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</translation>
    </message>
    <message>
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
</source>
        <translation type="obsolete">getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
</translation>
    </message>
    <message>
        <source>getFillShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFillShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getImageScale([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getImageName([&quot;name&quot;]) -&gt; string

Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">getImageName([&quot;name&quot;]) -&gt; string

Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)

Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</source>
        <translation type="obsolete">getSize([&quot;name&quot;]) -&gt; (width,height)

Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</translation>
    </message>
    <message>
        <source>getRotation([&quot;name&quot;]) -&gt; integer

Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
is used.
</source>
        <translation type="obsolete">getRotation([&quot;name&quot;]) -&gt; integer

Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
is used.
</translation>
    </message>
    <message>
        <source>getAllObjects() -&gt; list

Returns a list containing the names of all objects on the current page.
</source>
        <translation type="obsolete">getAllObjects() -&gt; list

Returns a list containing the names of all objects on the current page.
</translation>
    </message>
    <message>
        <source>getPropertyCType(object, property, includesuper=True)

Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.

If `includesuper&apos; is true, search inherited properties too.
</source>
        <translation type="obsolete">getPropertyCType(object, property, includesuper=True)

Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.

If `includesuper&apos; is true, search inherited properties too.
</translation>
    </message>
    <message>
        <source>getPropertyNames(object, includesuper=True)

Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</source>
        <translation type="obsolete">getPropertyNames(object, includesuper=True)

Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</translation>
    </message>
    <message>
        <source>getProperty(object, property)

Return the value of the property `property&apos; of the passed `object&apos;.

The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.

The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.

The return value varies depending on the type of the property.
</source>
        <translation type="obsolete">getProperty(object, property)

Return the value of the property `property&apos; of the passed `object&apos;.

The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.

The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.

The return value varies depending on the type of the property.
</translation>
    </message>
    <message>
        <source>setProperty(object, property, value)

Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.

See getProperty() for more information.
</source>
        <translation type="obsolete">setProperty(object, property, value)

Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.

See getProperty() for more information.
</translation>
    </message>
    <message>
        <source>moveObject(dx, dy [, &quot;name&quot;])

Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
If the object &quot;name&quot; belongs to a group, the whole group is moved.
</source>
        <translation type="obsolete">moveObject(dx, dy [, &quot;name&quot;])

Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
If the object &quot;name&quot; belongs to a group, the whole group is moved.
</translation>
    </message>
    <message>
        <source>moveObjectAbs(x, y [, &quot;name&quot;])

Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
is not given the currently selected item is used.  If the object &quot;name&quot;
belongs to a group, the whole group is moved.
</source>
        <translation type="obsolete">moveObjectAbs(x, y [, &quot;name&quot;])

Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
is not given the currently selected item is used.  If the object &quot;name&quot;
belongs to a group, the whole group is moved.
</translation>
    </message>
    <message>
        <source>sizeObject(width, height [, &quot;name&quot;])

Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation type="obsolete">sizeObject(width, height [, &quot;name&quot;])

Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getSelectedObject([nr]) -&gt; string

Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
second selected Object and so on.
</source>
        <translation type="obsolete">getSelectedObject([nr]) -&gt; string

Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
second selected Object and so on.
</translation>
    </message>
    <message>
        <source>selectionCount() -&gt; integer

Returns the number of selected objects.
</source>
        <translation type="obsolete">selectionCount() -&gt; integer

Returns the number of selected objects.
</translation>
    </message>
    <message>
        <source>selectObject(&quot;name&quot;)

Selects the object with the given &quot;name&quot;.
</source>
        <translation type="obsolete">selectObject(&quot;name&quot;)

Selects the object with the given &quot;name&quot;.
</translation>
    </message>
    <message>
        <source>deselectAll()

Deselects all objects in the whole document.
</source>
        <translation type="obsolete">deselectAll()

Deselects all objects in the whole document.
</translation>
    </message>
    <message>
        <source>groupObjects(list)

Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
items are used.
</source>
        <translation type="obsolete">groupObjects(list)

Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
items are used.
</translation>
    </message>
    <message>
        <source>unGroupObjects(&quot;name&quot;)

Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
        <translation type="obsolete">unGroupObjects(&quot;name&quot;)

Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
    </message>
    <message>
        <source>scaleGroup(factor [,&quot;name&quot;])

Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
scales the group to 50 % of its original size, a value of 1.5 scales the group
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
0. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if an invalid scale factor is passed.
</source>
        <translation type="obsolete">scaleGroup(factor [,&quot;name&quot;])

Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
scales the group to 50 % of its original size, a value of 1.5 scales the group
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
0. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if an invalid scale factor is passed.
</translation>
    </message>
    <message>
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])

Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation type="obsolete">loadImage(&quot;filename&quot; [, &quot;name&quot;])

Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not an image frame
</translation>
    </message>
    <message>
        <source>scaleImage(x, y [, &quot;name&quot;])

Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
means 100 %.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation type="obsolete">scaleImage(x, y [, &quot;name&quot;])

Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
means 100 %.

May raise WrongFrameTypeError if the target frame is not an image frame
</translation>
    </message>
    <message>
        <source>lockObject([&quot;name&quot;]) -&gt; bool

Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</source>
        <translation type="obsolete">lockObject([&quot;name&quot;]) -&gt; bool

Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</translation>
    </message>
    <message>
        <source>isLocked([&quot;name&quot;]) -&gt; bool

Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
currently selected item is used.
</source>
        <translation type="obsolete">isLocked([&quot;name&quot;]) -&gt; bool

Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
currently selected item is used.
</translation>
    </message>
    <message>
        <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)

Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.

May raise WrongFrameTypeError.
</source>
        <translation type="obsolete">setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)

Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.

May raise WrongFrameTypeError.
</translation>
    </message>
    <message>
        <source>setRedraw(bool)

Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</source>
        <translation type="obsolete">setRedraw(bool)

Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</translation>
    </message>
    <message>
        <source>getFontNames() -&gt; list

Returns a list with the names of all available fonts.
</source>
        <translation type="obsolete">getFontNames() -&gt; list

Returns a list with the names of all available fonts.
</translation>
    </message>
    <message>
        <source>getXFontNames() -&gt; list of tuples

Returns a larger font info. It&apos;s a list of the tuples with:
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
</source>
        <translation type="obsolete">getXFontNames() -&gt; list of tuples

Returns a larger font info. It&apos;s a list of the tuples with:
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
</translation>
    </message>
    <message>
        <source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool

Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
image data is returned as a string. The optional &quot;format&quot; argument
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.

May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</source>
        <translation type="obsolete">renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool

Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
image data is returned as a string. The optional &quot;format&quot; argument
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.

May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</translation>
    </message>
    <message>
        <source>getLayers() -&gt; list

Returns a list with the names of all defined layers.
</source>
        <translation type="obsolete">getLayers() -&gt; list

Returns a list with the names of all defined layers.
</translation>
    </message>
    <message>
        <source>setActiveLayer(&quot;name&quot;)

Sets the active layer to the layer named &quot;name&quot;.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">setActiveLayer(&quot;name&quot;)

Sets the active layer to the layer named &quot;name&quot;.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>getActiveLayer() -&gt; string

Returns the name of the current active layer.
</source>
        <translation type="obsolete">getActiveLayer() -&gt; string

Returns the name of the current active layer.
</translation>
    </message>
    <message>
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])

Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">sentToLayer(&quot;layer&quot; [, &quot;name&quot;])

Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>setLayerVisible(&quot;layer&quot;, visible)

Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">setLayerVisible(&quot;layer&quot;, visible)

Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>deleteLayer(&quot;layer&quot;)

Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">deleteLayer(&quot;layer&quot;)

Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>createLayer(layer)

Creates a new layer with the name &quot;name&quot;.

May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">createLayer(layer)

Creates a new layer with the name &quot;name&quot;.

May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>getGuiLanguage() -&gt; string

Returns a string with the -lang value.
</source>
        <translation type="obsolete">getGuiLanguage() -&gt; string

Returns a string with the -lang value.
</translation>
    </message>
    <message>
        <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
&quot;name&quot; should be a unique identifier for the object because you need this
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
&quot;name&quot; should be a unique identifier for the object because you need this
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createText(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string

Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string

Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string

Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
The coordinates are given in the current measurement units of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createPolyLine(list, [&quot;name&quot;]) -&gt; string

Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
The coordinates are given in the current measurement units of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string

Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
At least three points are required. There is no need to repeat the first point
to close the polygon. The polygon is automatically closed by connecting the
first and the last point.  The coordinates are given in the current measurement
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createPolygon(list, [&quot;name&quot;]) -&gt; string

Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
At least three points are required. There is no need to repeat the first point
to close the polygon. The polygon is automatically closed by connecting the
first and the last point.  The coordinates are given in the current measurement
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string

Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
In the points list, x and y mean the x and y coordinates of the point and kx
and ky meaning the control point for the curve.  The coordinates are given in
the current measurement units of the document (see UNIT constants). &quot;name&quot;
should be a unique identifier for the object because you need this name for
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createBezierLine(list, [&quot;name&quot;]) -&gt; string

Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
In the points list, x and y mean the x and y coordinates of the point and kx
and ky meaning the control point for the curve.  The coordinates are given in
the current measurement units of the document (see UNIT constants). &quot;name&quot;
should be a unique identifier for the object because you need this name for
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string

Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</source>
        <translation type="obsolete">createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string

Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</translation>
    </message>
    <message>
        <source>deleteObject([&quot;name&quot;])

Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
</source>
        <translation type="obsolete">deleteObject([&quot;name&quot;])

Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
</translation>
    </message>
    <message>
        <source>objectExists([&quot;name&quot;]) -&gt; bool

Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
returns True if there is something selected.
</source>
        <translation type="obsolete">objectExists([&quot;name&quot;]) -&gt; bool

Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
returns True if there is something selected.
</translation>
    </message>
    <message>
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])

Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it&apos;s applied on the selected object.
</source>
        <translation type="obsolete">setStyle(&quot;style&quot; [, &quot;name&quot;])

Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it&apos;s applied on the selected object.
</translation>
    </message>
    <message>
        <source>getAllStyles() -&gt; list

Return a list of the names of all paragraph styles in the current document.
</source>
        <translation type="obsolete">getAllStyles() -&gt; list

Return a list of the names of all paragraph styles in the current document.
</translation>
    </message>
    <message>
        <source>newPage(where [,&quot;masterpage&quot;])

Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
master page for the new page.

May raise IndexError if the page number is out of range
</source>
        <translation type="obsolete">newPage(where [,&quot;masterpage&quot;])

Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
master page for the new page.

May raise IndexError if the page number is out of range
</translation>
    </message>
    <message>
        <source>currentPage() -&gt; integer

Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
</source>
        <translation type="obsolete">currentPage() -&gt; integer

Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
</translation>
    </message>
    <message>
        <source>redrawAll()

Redraws all pages.
</source>
        <translation type="obsolete">redrawAll()

Redraws all pages.
</translation>
    </message>
    <message>
        <source>savePageAsEPS(&quot;name&quot;)

Saves the current page as an EPS to the file &quot;name&quot;.

May raise ScribusError if the save failed.
</source>
        <translation type="obsolete">savePageAsEPS(&quot;name&quot;)

Saves the current page as an EPS to the file &quot;name&quot;.

May raise ScribusError if the save failed.
</translation>
    </message>
    <message>
        <source>deletePage(nr)

Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.

May raise IndexError if the page number is out of range
</source>
        <translation type="obsolete">deletePage(nr)

Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.

May raise IndexError if the page number is out of range
</translation>
    </message>
    <message>
        <source>pageCount() -&gt; integer

Returns the number of pages in the document.
</source>
        <translation type="obsolete">pageCount() -&gt; integer

Returns the number of pages in the document.
</translation>
    </message>
    <message>
        <source>getHGuides() -&gt; list

Returns a list containing positions of the horizontal guides. Values are in the
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</source>
        <translation type="obsolete">getHGuides() -&gt; list

Returns a list containing positions of the horizontal guides. Values are in the
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</translation>
    </message>
    <message>
        <source>setHGuides(list)

Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type&gt; constants.

Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
         setHGuides([90,250]) # replace current guides entirely
</source>
        <translation type="obsolete">setHGuides(list)

Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type&gt; constants.

Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
         setHGuides([90,250]) # replace current guides entirely
</translation>
    </message>
    <message>
        <source>getVGuides()

See getHGuides.
</source>
        <translation type="obsolete">getVGuides()

See getHGuides.
</translation>
    </message>
    <message>
        <source>setVGuides()

See setHGuides.
</source>
        <translation type="obsolete">setVGuides()

See setHGuides.
</translation>
    </message>
    <message>
        <source>getPageSize() -&gt; tuple

Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</source>
        <translation type="obsolete">getPageSize() -&gt; tuple

Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</translation>
    </message>
    <message>
        <source>getPageItems() -&gt; list

Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</source>
        <translation type="obsolete">getPageItems() -&gt; list

Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</translation>
    </message>
    <message>
        <source>getPageMargins()

Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type&gt; constants and getPageSize().
</source>
        <translation type="obsolete">getPageMargins()

Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type&gt; constants and getPageSize().
</translation>
    </message>
    <message>
        <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])

Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type&gt;).
</source>
        <translation type="obsolete">setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])

Sets the gradient fill of the object &quot;name&quot; to type. Colour descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type&gt;).
</translation>
    </message>
    <message>
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])

Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colors. If &quot;name&quot; is not given the
currently selected item is used.
</source>
        <translation type="obsolete">setFillColor(&quot;color&quot;, [&quot;name&quot;])

Sets the fill colour of the object &quot;name&quot; to the colour &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colours. If &quot;name&quot; is not given the
currently selected item is used.
</translation>
    </message>
    <message>
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])

Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation type="obsolete">setLineColor(&quot;color&quot;, [&quot;name&quot;])

Sets the line colour of the object &quot;name&quot; to the colour &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setLineWidth(width, [&quot;name&quot;])

Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
given the currently selected item is used.

May raise ValueError if the line width is out of bounds.
</source>
        <translation type="obsolete">setLineWidth(width, [&quot;name&quot;])

Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
given the currently selected item is used.

May raise ValueError if the line width is out of bounds.
</translation>
    </message>
    <message>
        <source>setLineShade(shade, [&quot;name&quot;])

Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full color intensity). If &quot;name&quot; is not given the currently selected item
is used.

May raise ValueError if the line shade is out of bounds.
</source>
        <translation type="obsolete">setLineShade(shade, [&quot;name&quot;])

Sets the shading of the line colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full colour intensity). If &quot;name&quot; is not given the currently selected item
is used.

May raise ValueError if the line shade is out of bounds.
</translation>
    </message>
    <message>
        <source>setLineJoin(join, [&quot;name&quot;])

Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type&gt;.
</source>
        <translation type="obsolete">setLineJoin(join, [&quot;name&quot;])

Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type&gt;.
</translation>
    </message>
    <message>
        <source>setLineEnd(endtype, [&quot;name&quot;])

Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</source>
        <translation type="obsolete">setLineEnd(endtype, [&quot;name&quot;])

Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</translation>
    </message>
    <message>
        <source>setLineStyle(style, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</source>
        <translation type="obsolete">setLineStyle(style, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</translation>
    </message>
    <message>
        <source>setFillShade(shade, [&quot;name&quot;])

Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full Color intensity). If &quot;name&quot; is not given the currently selected
Item is used.

May raise ValueError if the fill shade is out of bounds.
</source>
        <translation type="obsolete">setFillShade(shade, [&quot;name&quot;])

Sets the shading of the fill colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full Colour intensity). If &quot;name&quot; is not given the currently selected
Item is used.

May raise ValueError if the fill shade is out of bounds.
</translation>
    </message>
    <message>
        <source>setCornerRadius(radius, [&quot;name&quot;])

Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if the corner radius is negative.
</source>
        <translation type="obsolete">setCornerRadius(radius, [&quot;name&quot;])

Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if the corner radius is negative.
</translation>
    </message>
    <message>
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the line style doesn&apos;t exist.
</source>
        <translation type="obsolete">setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the line style doesn&apos;t exist.
</translation>
    </message>
    <message>
        <source>getFontSize([&quot;name&quot;]) -&gt; float

Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFontSize([&quot;name&quot;]) -&gt; float

Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getFont([&quot;name&quot;]) -&gt; string

Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">getFont([&quot;name&quot;]) -&gt; string

Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>getTextLength([&quot;name&quot;]) -&gt; integer

Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getTextLength([&quot;name&quot;]) -&gt; integer

Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
currently visible text, is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">getText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
currently visible text, is returned. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>getAllText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">getAllText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float

Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineSpacing([&quot;name&quot;]) -&gt; float

Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getColumnGap([&quot;name&quot;]) -&gt; float

Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getColumnGap([&quot;name&quot;]) -&gt; float

Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getColumns([&quot;name&quot;]) -&gt; integer

Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">getColumns([&quot;name&quot;]) -&gt; integer

Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setText(&quot;text&quot;, [&quot;name&quot;])

Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">setText(&quot;text&quot;, [&quot;name&quot;])

Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])

Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed.  If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError if the font cannot be found.
</source>
        <translation type="obsolete">setFont(&quot;font&quot;, [&quot;name&quot;])

Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed.  If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError if the font cannot be found.
</translation>
    </message>
    <message>
        <source>setFontSize(size, [&quot;name&quot;])

Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError for a font size that&apos;s out of bounds.
</source>
        <translation type="obsolete">setFontSize(size, [&quot;name&quot;])

Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError for a font size that&apos;s out of bounds.
</translation>
    </message>
    <message>
        <source>setLineSpacing(size, [&quot;name&quot;])

Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
item is used.

May throw ValueError if the line spacing is out of bounds.
</source>
        <translation type="obsolete">setLineSpacing(size, [&quot;name&quot;])

Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
item is used.

May throw ValueError if the line spacing is out of bounds.
</translation>
    </message>
    <message>
        <source>setColumnGap(size, [&quot;name&quot;])

Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.

May throw ValueError if the column gap is out of bounds (must be positive).
</source>
        <translation type="obsolete">setColumnGap(size, [&quot;name&quot;])

Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.

May throw ValueError if the column gap is out of bounds (must be positive).
</translation>
    </message>
    <message>
        <source>setColumns(nr, [&quot;name&quot;])

Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May throw ValueError if number of columns is not at least one.
</source>
        <translation type="obsolete">setColumns(nr, [&quot;name&quot;])

Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May throw ValueError if number of columns is not at least one.
</translation>
    </message>
    <message>
        <source>setTextAlignment(align, [&quot;name&quot;])

Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
be one of the ALIGN_ constants defined in this module - see dir(scribus).

May throw ValueError for an invalid alignment constant.
</source>
        <translation type="obsolete">setTextAlignment(align, [&quot;name&quot;])

Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
be one of the ALIGN_ constants defined in this module - see dir(scribus).

May throw ValueError for an invalid alignment constant.
</translation>
    </message>
    <message>
        <source>selectText(start, count, [&quot;name&quot;])

Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
text selection will be cleared.  If &quot;name&quot; is not given the currently
selected item is used.

May throw IndexError if the selection is outside the bounds of the text.
</source>
        <translation type="obsolete">selectText(start, count, [&quot;name&quot;])

Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
text selection will be cleared.  If &quot;name&quot; is not given the currently
selected item is used.

May throw IndexError if the selection is outside the bounds of the text.
</translation>
    </message>
    <message>
        <source>deleteText([&quot;name&quot;])

Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">deleteText([&quot;name&quot;])

Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])

Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">setTextColor(&quot;color&quot;, [&quot;name&quot;])

Sets the text colour of the text frame &quot;name&quot; to the colour &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])

Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">setTextStroke(&quot;color&quot;, [&quot;name&quot;])

Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>setTextShade(shade, [&quot;name&quot;])

Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">setTextShade(shade, [&quot;name&quot;])

Sets the shading of the text colour of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
be an integer value in the range from 0 (lightest) to 100 (full colour
intensity). If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)

Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
and must not link to or be linked from any other frames already.

May throw ScribusException if linking rules are violated.
</source>
        <translation type="obsolete">linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)

Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
and must not link to or be linked from any other frames already.

May throw ScribusException if linking rules are violated.
</translation>
    </message>
    <message>
        <source>unlinkTextFrames(&quot;name&quot;)

Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;

May throw ScribusException if linking rules are violated.
</source>
        <translation type="obsolete">unlinkTextFrames(&quot;name&quot;)

Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;

May throw ScribusException if linking rules are violated.
</translation>
    </message>
    <message>
        <source>traceText([&quot;name&quot;])

Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</source>
        <translation type="obsolete">traceText([&quot;name&quot;])

Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</translation>
    </message>
    <message>
        <source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer

Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.

May raise WrongFrameTypeError if the target frame is not an text frame
</source>
        <translation type="obsolete">textOverflows([&quot;name&quot;, nolinks]) -&gt; integer

Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.

May raise WrongFrameTypeError if the target frame is not an text frame
</translation>
    </message>
    <message>
        <source>isPDFBookmark([&quot;name&quot;]) -&gt; bool

Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</source>
        <translation type="obsolete">isPDFBookmark([&quot;name&quot;]) -&gt; bool

Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</translation>
    </message>
    <message>
        <source>messagebarText(&quot;string&quot;)

Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
        <translation type="obsolete">messagebarText(&quot;string&quot;)

Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</translation>
    </message>
    <message>
        <source>progressReset()

Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</source>
        <translation type="obsolete">progressReset()

Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</translation>
    </message>
    <message>
        <source>progressTotal(max)

Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</source>
        <translation type="obsolete">progressTotal(max)

Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</translation>
    </message>
    <message>
        <source>progressSet(nr)

Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
total number of steps and the number of steps completed so far and it will
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</source>
        <translation type="obsolete">progressSet(nr)

Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
total number of steps and the number of steps completed so far and it will
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</translation>
    </message>
    <message>
        <source>setCursor()

[UNSUPPORTED!] This might break things, so steer clear for now.
</source>
        <translation type="obsolete">setCursor()

[UNSUPPORTED!] This might break things, so steer clear for now.
</translation>
    </message>
    <message>
        <source>docChanged(bool)

Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</source>
        <translation type="obsolete">docChanged(bool)

Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</translation>
    </message>
    <message>
        <source>zoomDocument(double)

Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</source>
        <translation type="obsolete">zoomDocument(double)

Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</translation>
    </message>
</context>
<context>
    <name>@default</name>
    <message>
        <source>getColorNames() -&gt; list

Returns a list containing the names of all defined colors in the document.
If no document is open, returns a list of the default document colors.
</source>
        <translation type="obsolete">getColorNames() -&gt; list

Returns a list containing the names of all defined colours in the document.
If no document is open, returns a list of the default document colours.
</translation>
    </message>
    <message>
        <source>newDocDialog() -&gt; bool

Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
Returns true if a new document was created.
</source>
        <translation type="obsolete">newDocDialog() -&gt; bool

Displays the &quot;New Document&quot; dialog box. Creates a new document if the user
accepts the settings. Does not create a document if the user presses cancel.
Returns true if a new document was created.
</translation>
    </message>
    <message>
        <source>getFillColor([&quot;name&quot;]) -&gt; string

Returns the name of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFillColor([&quot;name&quot;]) -&gt; string

Returns the name of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>moveObject(dx, dy [, &quot;name&quot;])

Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
If the object &quot;name&quot; belongs to a group, the whole group is moved.
</source>
        <translation type="obsolete">moveObject(dx, dy [, &quot;name&quot;])

Moves the object &quot;name&quot; by dx and dy relative to its current position. The
distances are expressed in the current measurement unit of the document (see
UNIT constants). If &quot;name&quot; is not given the currently selected item is used.
If the object &quot;name&quot; belongs to a group, the whole group is moved.
</translation>
    </message>
    <message>
        <source>setRedraw(bool)

Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</source>
        <translation type="obsolete">setRedraw(bool)

Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</translation>
    </message>
    <message>
        <source>createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createRect(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new rectangle on the current page and returns its name. The
coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name to reference that object in future. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>newPage(where [,&quot;masterpage&quot;])

Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
master page for the new page.

May raise IndexError if the page number is out of range
</source>
        <translation type="obsolete">newPage(where [,&quot;masterpage&quot;])

Creates a new page. If &quot;where&quot; is -1 the new Page is appended to the
document, otherwise the new page is inserted before &quot;where&quot;. Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter &quot;masterpage&quot; specifies the name of the
master page for the new page.

May raise IndexError if the page number is out of range
</translation>
    </message>
    <message>
        <source>setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])

Sets the gradient fill of the object &quot;name&quot; to type. Color descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type&gt;).
</source>
        <translation type="obsolete">setGradientFill(type, &quot;color1&quot;, shade1, &quot;color2&quot;, shade2, [&quot;name&quot;])

Sets the gradient fill of the object &quot;name&quot; to type. Colour descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_&lt;type&gt;).
</translation>
    </message>
    <message>
        <source>getFontSize([&quot;name&quot;]) -&gt; float

Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFontSize([&quot;name&quot;]) -&gt; float

Returns the font size in points for the text frame &quot;name&quot;. If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>messagebarText(&quot;string&quot;)

Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
        <translation type="obsolete">messagebarText(&quot;string&quot;)

Writes the &quot;string&quot; into the Scribus message bar (status line). The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</translation>
    </message>
    <message>
        <source>importSVG(&quot;string&quot;)

The &quot;string&quot; must be a valid filename for a SVG image. The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</source>
        <translation type="obsolete">importSVG(&quot;string&quot;)

The &quot;string&quot; must be a valid filename for a SVG image. The text
must be UTF8 encoded or &apos;unicode&apos; string(recommended).
</translation>
    </message>
    <message>
        <source>newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder) -&gt; bool

Creates a new document and returns true if successful. The parameters have the
following meaning:

size = A tuple (width, height) describing the size of the document. You can
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

margins = A tuple (left, right, top, bottom) describing the document
margins

orientation = the page orientation - constants PORTRAIT, LANDSCAPE

firstPageNumer = is the number of the first page in the document used for
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
numbers if you&apos;re creating a document in several parts.

unit: this value sets the measurement units used by the document. Use a
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
UNIT_PICAS, UNIT_POINTS.

pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
PAGE_4 is 4-fold.

firstPageOrder = What is position of first page in the document.
Indexed from 0 (0 = first).

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
PAGE_4, 3)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</source>
        <translation type="obsolete">newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder) -&gt; bool

Creates a new document and returns true if successful. The parameters have the
following meaning:

size = A tuple (width, height) describing the size of the document. You can
use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

margins = A tuple (left, right, top, bottom) describing the document
margins

orientation = the page orientation - constants PORTRAIT, LANDSCAPE

firstPageNumer = is the number of the first page in the document used for
pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
numbers if you&apos;re creating a document in several parts.

unit: this value sets the measurement units used by the document. Use a
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
UNIT_PICAS, UNIT_POINTS.

pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page,
PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and
PAGE_4 is 4-fold.

firstPageOrder = What is position of first page in the document.
Indexed from 0 (0 = first).

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS,
PAGE_4, 3)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</translation>
    </message>
    <message>
        <source>getColor(&quot;name&quot;) -&gt; tuple

Returns a tuple (C, M, Y, K) containing the four color components of the
color &quot;name&quot; from the current document. If no document is open, returns
the value of the named color from the default document colors.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">getColor(&quot;name&quot;) -&gt; tuple

Returns a tuple (C, M, Y, K) containing the four colour components of the
colour &quot;name&quot; from the current document. If no document is open, returns
the value of the named colour from the default document colours.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>getColorAsRGB(&quot;name&quot;) -&gt; tuple

Returns a tuple (R,G,B) containing the three color components of the
color &quot;name&quot; from the current document, converted to the RGB color
space. If no document is open, returns the value of the named color
from the default document colors.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">getColorAsRGB(&quot;name&quot;) -&gt; tuple

Returns a tuple (R,G,B) containing the three colour components of the
colour &quot;name&quot; from the current document, converted to the RGB colour
space. If no document is open, returns the value of the named colour
from the default document colours.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>changeColor(&quot;name&quot;, c, m, y, k)

Changes the color &quot;name&quot; to the specified CMYK value. The color value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Color components should be in the range from 0 to 255.

May raise NotFoundError if the named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">changeColour(&quot;name&quot;, c, m, y, k)

Changes the colour &quot;name&quot; to the specified CMYK value. The colour value is
defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black.
Colour components should be in the range from 0 to 255.

May raise NotFoundError if the named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>defineColor(&quot;name&quot;, c, m, y, k)

Defines a new color &quot;name&quot;. The color Value is defined via four components:
c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in
the range from 0 to 255.

May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">defineColor(&quot;name&quot;, c, m, y, k)

Defines a new colour &quot;name&quot;. The colour Value is defined via four components:
c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in
the range from 0 to 255.

May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>deleteColor(&quot;name&quot;, &quot;replace&quot;)

Deletes the color &quot;name&quot;. Every occurence of that color is replaced by the
color &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the color
&quot;None&quot; - transparent.

deleteColor works on the default document colors if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">deleteColor(&quot;name&quot;, &quot;replace&quot;)

Deletes the colour &quot;name&quot;. Every occurence of that colour is replaced by the
colour &quot;replace&quot;. If not specified, &quot;replace&quot; defaults to the colour
&quot;None&quot; - transparent.

deleteColor works on the default document colours if there is no document open.
In that case, &quot;replace&quot;, if specified, has no effect.

May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>replaceColor(&quot;name&quot;, &quot;replace&quot;)

Every occurence of the color &quot;name&quot; is replaced by the color &quot;replace&quot;.

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation type="obsolete">replaceColor(&quot;name&quot;, &quot;replace&quot;)

Every occurence of the colour &quot;name&quot; is replaced by the colour &quot;replace&quot;.

May raise NotFoundError if a named colour wasn&apos;t found.
May raise ValueError if an invalid colour name is specified.
</translation>
    </message>
    <message>
        <source>fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename

Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
with the filter string &quot;filter&quot;. A default filename or file path can also
supplied, leave this string empty when you don&apos;t want to use it.  A value of
True for haspreview enables a small preview widget in the FileSelect box.  When
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
the dialog shows and returns only directories. The default for all of the
opional parameters is False.

The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
For example &apos;Images (*.png *.xpm *.jpg)&apos;.

Refer to the Qt-Documentation for QFileDialog for details on filters.

Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
</source>
        <translation type="obsolete">fileDialog(&quot;caption&quot;, [&quot;filter&quot;, &quot;defaultname&quot;, haspreview, issave, isdir]) -&gt; string with filename

Shows a File Open dialog box with the caption &quot;caption&quot;. Files are filtered
with the filter string &quot;filter&quot;. A default filename or file path can also
supplied, leave this string empty when you don&apos;t want to use it.  A value of
True for haspreview enables a small preview widget in the FileSelect box.  When
the issave parameter is set to True the dialog acts like a &quot;Save As&quot; dialog
otherwise it acts like a &quot;File Open Dialog&quot;. When the isdir parameter is True
the dialog shows and returns only directories. The default for all of the
opional parameters is False.

The filter, if specified, takes the form &apos;comment (*.type *.type2 ...)&apos;.
For example &apos;Images (*.png *.xpm *.jpg)&apos;.

Refer to the Qt-Documentation for QFileDialog for details on filters.

Example: fileDialog(&apos;Open input&apos;, &apos;CSV files (*.csv)&apos;)
Example: fileDialog(&apos;Save report&apos;, defaultname=&apos;report.txt&apos;, issave=True)
</translation>
    </message>
    <message>
        <source>messageBox(&quot;caption&quot;, &quot;message&quot;,
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer

Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
button, OK, is displayed. Only the caption and message arguments are required,
though setting an icon and appropriate button(s) is strongly
recommended. The message text may contain simple HTML-like markup.

Returns the number of the button the user pressed. Button numbers start
at 1.

For the icon and the button parameters there are predefined constants available
with the same names as in the Qt Documentation. These are the BUTTON_* and
ICON_* constants defined in the module. There are also two extra constants that
can be binary-ORed with button constants:
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
    BUTTONOPT_ESCAPE    Pressing escape presses this button.

Usage examples:
result = messageBox(&apos;Script failed&apos;,
                    &apos;This script only works when you have a text frame selected.&apos;,
                    ICON_ERROR)
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)

Defined button and icon constants:
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
</source>
        <translation type="obsolete">messageBox(&quot;caption&quot;, &quot;message&quot;,
    icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
    button2=BUTTON_NONE, button3=BUTTON_NONE) -&gt; integer

Displays a message box with the title &quot;caption&quot;, the message &quot;message&quot;, and
an icon &quot;icon&quot; and up to 3 buttons. By default no icon is used and a single
button, OK, is displayed. Only the caption and message arguments are required,
though setting an icon and appropriate button(s) is strongly
recommended. The message text may contain simple HTML-like markup.

Returns the number of the button the user pressed. Button numbers start
at 1.

For the icon and the button parameters there are predefined constants available
with the same names as in the Qt Documentation. These are the BUTTON_* and
ICON_* constants defined in the module. There are also two extra constants that
can be binary-ORed with button constants:
    BUTTONOPT_DEFAULT   Pressing enter presses this button.
    BUTTONOPT_ESCAPE    Pressing escape presses this button.

Usage examples:
result = messageBox(&apos;Script failed&apos;,
                    &apos;This script only works when you have a text frame selected.&apos;,
                    ICON_ERROR)
result = messageBox(&apos;Monkeys!&apos;, &apos;Something went ook! &lt;i&gt;Was it a monkey?&lt;/i&gt;&apos;,
                    ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT,
                    BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE)

Defined button and icon constants:
BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO,
BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL,
ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL.
</translation>
    </message>
    <message>
        <source>valueDialog(caption, message [,defaultvalue]) -&gt; string

Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.

Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</source>
        <translation type="obsolete">valueDialog(caption, message [,defaultvalue]) -&gt; string

Shows the common &apos;Ask for string&apos; dialog and returns its value as a string
Parameters: window title, text in the window and optional &apos;default&apos; value.

Example: valueDialog(&apos;title&apos;, &apos;text in the window&apos;, &apos;optional&apos;)
</translation>
    </message>
    <message>
        <source>closeDoc()

Closes the current document without prompting to save.

May throw NoDocOpenError if there is no document to close
</source>
        <translation type="obsolete">closeDoc()

Closes the current document without prompting to save.

May throw NoDocOpenError if there is no document to close
</translation>
    </message>
    <message>
        <source>haveDoc() -&gt; bool

Returns true if there is a document open.
</source>
        <translation type="obsolete">haveDoc() -&gt; bool

Returns true if there is a document open.
</translation>
    </message>
    <message>
        <source>openDoc(&quot;name&quot;)

Opens the document &quot;name&quot;.

May raise ScribusError if the document could not be opened.
</source>
        <translation type="obsolete">openDoc(&quot;name&quot;)

Opens the document &quot;name&quot;.

May raise ScribusError if the document could not be opened.
</translation>
    </message>
    <message>
        <source>saveDoc()

Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
save file dialog.

If the save fails, there is currently no way to tell.
</source>
        <translation type="obsolete">saveDoc()

Saves the current document with its current name, returns true if successful.
If the document has not already been saved, this may bring up an interactive
save file dialog.

If the save fails, there is currently no way to tell.
</translation>
    </message>
    <message>
        <source>saveDocAs(&quot;name&quot;)

Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).

May raise ScribusError if the save fails.
</source>
        <translation type="obsolete">saveDocAs(&quot;name&quot;)

Saves the current document under the new name &quot;name&quot; (which may be a full or
relative path).

May raise ScribusError if the save fails.
</translation>
    </message>
    <message>
        <source>saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool

Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
strings.
</source>
        <translation type="obsolete">saveDocAs(&quot;author&quot;, &quot;info&quot;, &quot;description&quot;) -&gt; bool

Sets the document information. &quot;Author&quot;, &quot;Info&quot;, &quot;Description&quot; are
strings.
</translation>
    </message>
    <message>
        <source>setMargins(lr, rr, tr, br)

Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</source>
        <translation type="obsolete">setMargins(lr, rr, tr, br)

Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</translation>
    </message>
    <message>
        <source>setUnit(type)

Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type&gt;.

May raise ValueError if an invalid unit is passed.
</source>
        <translation type="obsolete">setUnit(type)

Changes the measurement unit of the document. Possible values for &quot;unit&quot; are
defined as constants UNIT_&lt;type&gt;.

May raise ValueError if an invalid unit is passed.
</translation>
    </message>
    <message>
        <source>getUnit() -&gt; integer (Scribus unit constant)

Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
</source>
        <translation type="obsolete">getUnit() -&gt; integer (Scribus unit constant)

Returns the measurement units of the document. The returned value will be one
of the UNIT_* constants:
UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS.
</translation>
    </message>
    <message>
        <source>loadStylesFromFile(&quot;filename&quot;)

Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</source>
        <translation type="obsolete">loadStylesFromFile(&quot;filename&quot;)

Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</translation>
    </message>
    <message>
        <source>setDocType(facingPages, firstPageLeft)

Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</source>
        <translation type="obsolete">setDocType(facingPages, firstPageLeft)

Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead.  If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</translation>
    </message>
    <message>
        <source>getLineColor([&quot;name&quot;]) -&gt; string

Returns the name of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineColor([&quot;name&quot;]) -&gt; string

Returns the name of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getLineWidth([&quot;name&quot;]) -&gt; integer

Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</source>
        <translation type="obsolete">getLineWidth([&quot;name&quot;]) -&gt; integer

Returns the line width of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <source>getLineShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the line color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the line colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)

Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
the currently selected item is used.  The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</source>
        <translation type="obsolete">getLineJoin([&quot;name&quot;]) -&gt; integer (see contants)

Returns the line join style of the object &quot;name&quot;. If &quot;name&quot; is not given
the currently selected item is used.  The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</translation>
    </message>
    <message>
        <source>getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</source>
        <translation type="obsolete">getLineEnd([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line cap style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</translation>
    </message>
    <message>
        <source>getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
</source>
        <translation type="obsolete">getLineStyle([&quot;name&quot;]) -&gt; integer (see constants)

Returns the line style of the object &quot;name&quot;. If &quot;name&quot; is not given the
currently selected item is used. Line style constants are:
LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID
</translation>
    </message>
    <message>
        <source>getFillShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the fill color of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getFillShade([&quot;name&quot;]) -&gt; integer

Returns the shading value of the fill colour of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer

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.
</source>
        <translation type="obsolete">getCornerRadius([&quot;name&quot;]) -&gt; integer

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.
</translation>
    </message>
    <message>
        <source>getImageScale([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getImageScale([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple containing the scaling values of the image frame
&quot;name&quot;.  If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getImageName([&quot;name&quot;]) -&gt; string

Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">getImageName([&quot;name&quot;]) -&gt; string

Returns the filename for the image in the image frame. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getPosition([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple with the position of the object &quot;name&quot;.
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
- see UNIT_&lt;type&gt; for reference.
</source>
        <translation type="obsolete">getPosition([&quot;name&quot;]) -&gt; (x,y)

Returns a (x, y) tuple with the position of the object &quot;name&quot;.
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
- see UNIT_&lt;type&gt; for reference.
</translation>
    </message>
    <message>
        <source>getSize([&quot;name&quot;]) -&gt; (width,height)

Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</source>
        <translation type="obsolete">getSize([&quot;name&quot;]) -&gt; (width,height)

Returns a (width, height) tuple with the size of the object &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_&lt;type&gt;
for reference.
</translation>
    </message>
    <message>
        <source>getRotation([&quot;name&quot;]) -&gt; integer

Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
is used.
</source>
        <translation type="obsolete">getRotation([&quot;name&quot;]) -&gt; integer

Returns the rotation of the object &quot;name&quot;. The value is expressed in degrees,
and clockwise is positive. If &quot;name&quot; is not given the currently selected item
is used.
</translation>
    </message>
    <message>
        <source>getAllObjects() -&gt; list

Returns a list containing the names of all objects on the current page.
</source>
        <translation type="obsolete">getAllObjects() -&gt; list

Returns a list containing the names of all objects on the current page.
</translation>
    </message>
    <message>
        <source>getPropertyCType(object, property, includesuper=True)

Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.

If `includesuper&apos; is true, search inherited properties too.
</source>
        <translation type="obsolete">getPropertyCType(object, property, includesuper=True)

Returns the name of the C type of `property&apos; of `object&apos;. See getProperty()
for details of arguments.

If `includesuper&apos; is true, search inherited properties too.
</translation>
    </message>
    <message>
        <source>getPropertyNames(object, includesuper=True)

Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</source>
        <translation type="obsolete">getPropertyNames(object, includesuper=True)

Return a list of property names supported by `object&apos;.
If `includesuper&apos; is true, return properties supported
by parent classes as well.
</translation>
    </message>
    <message>
        <source>getProperty(object, property)

Return the value of the property `property&apos; of the passed `object&apos;.

The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.

The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.

The return value varies depending on the type of the property.
</source>
        <translation type="obsolete">getProperty(object, property)

Return the value of the property `property&apos; of the passed `object&apos;.

The `object&apos; argument may be a string, in which case the named PageItem
is searched for. It may also be a PyCObject, which may point to any
C++ QObject instance.

The `property&apos; argument must be a string, and is the name of the property
to look up on `object&apos;.

The return value varies depending on the type of the property.
</translation>
    </message>
    <message>
        <source>setProperty(object, property, value)

Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.

See getProperty() for more information.
</source>
        <translation type="obsolete">setProperty(object, property, value)

Set `property&apos; of `object&apos; to `value&apos;. If `value&apos; cannot be converted to a type
compatible with the type of `property&apos;, an exception is raised. An exception may
also be raised if the underlying setter fails.

See getProperty() for more information.
</translation>
    </message>
    <message>
        <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)

Return a list of children of `object&apos;, possibly restricted to children
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.

See QObject::children() in the Qt docs for more information.
</source>
        <translation type="obsolete">getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True)

Return a list of children of `object&apos;, possibly restricted to children
of class named `ofclass&apos; or children named `ofname&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.

See QObject::children() in the Qt docs for more information.
</translation>
    </message>
    <message>
        <source>getChild(object, childname, ofclass=None, recursive=True)

Return the first child of `object&apos; named `childname&apos;, possibly restricting
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
</source>
        <translation type="obsolete">getChild(object, childname, ofclass=None, recursive=True)

Return the first child of `object&apos; named `childname&apos;, possibly restricting
the search to children of type name `ofclass&apos;. If `recursive&apos; is true,
search recursively through children, grandchildren, etc.
</translation>
    </message>
    <message>
        <source>moveObjectAbs(x, y [, &quot;name&quot;])

Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
is not given the currently selected item is used.  If the object &quot;name&quot;
belongs to a group, the whole group is moved.
</source>
        <translation type="obsolete">moveObjectAbs(x, y [, &quot;name&quot;])

Moves the object &quot;name&quot; to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants).  If &quot;name&quot;
is not given the currently selected item is used.  If the object &quot;name&quot;
belongs to a group, the whole group is moved.
</translation>
    </message>
    <message>
        <source>rotateObject(rot [, &quot;name&quot;])

Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
rotated by the vertex that is currently selected as the rotation point - by
default, the top left vertext at zero rotation. Positive values mean counter
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">rotateObject(rot [, &quot;name&quot;])

Rotates the object &quot;name&quot; by &quot;rot&quot; degrees relatively. The object is
rotated by the vertex that is currently selected as the rotation point - by
default, the top left vertext at zero rotation. Positive values mean counter
clockwise rotation when the default rotation point is used. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>rotateObjectAbs(rot [, &quot;name&quot;])

Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">rotateObjectAbs(rot [, &quot;name&quot;])

Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positve values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>sizeObject(width, height [, &quot;name&quot;])

Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation type="obsolete">sizeObject(width, height [, &quot;name&quot;])

Resizes the object &quot;name&quot; to the given width and height. If &quot;name&quot;
is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getSelectedObject([nr]) -&gt; string

Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
second selected Object and so on.
</source>
        <translation type="obsolete">getSelectedObject([nr]) -&gt; string

Returns the name of the selected object. &quot;nr&quot; if given indicates the number
of the selected object, e.g. 0 means the first selected object, 1 means the
second selected Object and so on.
</translation>
    </message>
    <message>
        <source>selectionCount() -&gt; integer

Returns the number of selected objects.
</source>
        <translation type="obsolete">selectionCount() -&gt; integer

Returns the number of selected objects.
</translation>
    </message>
    <message>
        <source>selectObject(&quot;name&quot;)

Selects the object with the given &quot;name&quot;.
</source>
        <translation type="obsolete">selectObject(&quot;name&quot;)

Selects the object with the given &quot;name&quot;.
</translation>
    </message>
    <message>
        <source>deselectAll()

Deselects all objects in the whole document.
</source>
        <translation type="obsolete">deselectAll()

Deselects all objects in the whole document.
</translation>
    </message>
    <message>
        <source>groupObjects(list)

Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
items are used.
</source>
        <translation type="obsolete">groupObjects(list)

Groups the objects named in &quot;list&quot; together. &quot;list&quot; must contain the names
of the objects to be grouped. If &quot;list&quot; is not given the currently selected
items are used.
</translation>
    </message>
    <message>
        <source>unGroupObjects(&quot;name&quot;)

Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</source>
        <translation type="obsolete">unGroupObjects(&quot;name&quot;)

Destructs the group the object &quot;name&quot; belongs to.If &quot;name&quot; is not given the currently selected item is used.</translation>
    </message>
    <message>
        <source>scaleGroup(factor [,&quot;name&quot;])

Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
scales the group to 50 % of its original size, a value of 1.5 scales the group
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
0. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if an invalid scale factor is passed.
</source>
        <translation type="obsolete">scaleGroup(factor [,&quot;name&quot;])

Scales the group the object &quot;name&quot; belongs to. Values greater than 1 enlarge
the group, values smaller than 1 make the group smaller e.g a value of 0.5
scales the group to 50 % of its original size, a value of 1.5 scales the group
to 150 % of its original size.  The value for &quot;factor&quot; must be greater than
0. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if an invalid scale factor is passed.
</translation>
    </message>
    <message>
        <source>loadImage(&quot;filename&quot; [, &quot;name&quot;])

Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation type="obsolete">loadImage(&quot;filename&quot; [, &quot;name&quot;])

Loads the picture &quot;picture&quot; into the image frame &quot;name&quot;. If &quot;name&quot; is
not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not an image frame
</translation>
    </message>
    <message>
        <source>scaleImage(x, y [, &quot;name&quot;])

Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
means 100 %.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation type="obsolete">scaleImage(x, y [, &quot;name&quot;])

Sets the scaling factors of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used. A number of 1
means 100 %.

May raise WrongFrameTypeError if the target frame is not an image frame
</translation>
    </message>
    <message>
        <source>lockObject([&quot;name&quot;]) -&gt; bool

Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</source>
        <translation type="obsolete">lockObject([&quot;name&quot;]) -&gt; bool

Locks the object &quot;name&quot; if it&apos;s unlocked or unlock it if it&apos;s locked.
If &quot;name&quot; is not given the currently selected item is used. Returns true
if locked.
</translation>
    </message>
    <message>
        <source>isLocked([&quot;name&quot;]) -&gt; bool

Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
currently selected item is used.
</source>
        <translation type="obsolete">isLocked([&quot;name&quot;]) -&gt; bool

Returns true if is the object &quot;name&quot; locked.  If &quot;name&quot; is not given the
currently selected item is used.
</translation>
    </message>
    <message>
        <source>setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)

Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.

May raise WrongFrameTypeError.
</source>
        <translation type="obsolete">setScaleImageToFrame(scaletoframe, proportional=None, name=&lt;selection&gt;)

Sets the scale to frame on the selected or specified image frame to `scaletoframe&apos;.
If `proportional&apos; is specified, set fixed aspect ratio scaling to `proportional&apos;.
Both `scaletoframe&apos; and `proportional&apos; are boolean.

May raise WrongFrameTypeError.
</translation>
    </message>
    <message>
        <source>getFontNames() -&gt; list

Returns a list with the names of all available fonts.
</source>
        <translation type="obsolete">getFontNames() -&gt; list

Returns a list with the names of all available fonts.
</translation>
    </message>
    <message>
        <source>getXFontNames() -&gt; list of tuples

Returns a larger font info. It&apos;s a list of the tuples with:
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
</source>
        <translation type="obsolete">getXFontNames() -&gt; list of tuples

Returns a larger font info. It&apos;s a list of the tuples with:
[ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ]
</translation>
    </message>
    <message>
        <source>renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool

Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
image data is returned as a string. The optional &quot;format&quot; argument
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.

May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</source>
        <translation type="obsolete">renderFont(&quot;name&quot;, &quot;filename&quot;, &quot;sample&quot;, size, format=&quot;PPM&quot;) -&gt; bool

Creates an image preview of font &quot;name&quot; with given text &quot;sample&quot; and size.
If &quot;filename&quot; is not &quot;&quot;, image is saved into &quot;filename&quot;. Otherwise
image data is returned as a string. The optional &quot;format&quot; argument
specifies the image format to generate, and supports any format allowed
by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM.

May raise NotFoundError if the specified font can&apos;t be found.
May raise ValueError if an empty sample or filename is passed.
</translation>
    </message>
    <message>
        <source>getLayers() -&gt; list

Returns a list with the names of all defined layers.
</source>
        <translation type="obsolete">getLayers() -&gt; list

Returns a list with the names of all defined layers.
</translation>
    </message>
    <message>
        <source>setActiveLayer(&quot;name&quot;)

Sets the active layer to the layer named &quot;name&quot;.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">setActiveLayer(&quot;name&quot;)

Sets the active layer to the layer named &quot;name&quot;.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>getActiveLayer() -&gt; string

Returns the name of the current active layer.
</source>
        <translation type="obsolete">getActiveLayer() -&gt; string

Returns the name of the current active layer.
</translation>
    </message>
    <message>
        <source>sentToLayer(&quot;layer&quot; [, &quot;name&quot;])

Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">sentToLayer(&quot;layer&quot; [, &quot;name&quot;])

Sends the object &quot;name&quot; to the layer &quot;layer&quot;. The layer must exist.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>setLayerVisible(&quot;layer&quot;, visible)

Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">setLayerVisible(&quot;layer&quot;, visible)

Sets the layer &quot;layer&quot; to be visible or not. If is the visible set to false
the layer is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>setLayerPrintable(&quot;layer&quot;, printable)

Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
false the layer won&apos;t be printed.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">setLayerPrintable(&quot;layer&quot;, printable)

Sets the layer &quot;layer&quot; to be printable or not. If is the printable set to
false the layer won&apos;t be printed.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
that the layer &quot;layer&quot; is visible, a value of False means that the layer
&quot;layer&quot; is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is visible or not, a value of True means
that the layer &quot;layer&quot; is visible, a value of False means that the layer
&quot;layer&quot; is invisible.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">isLayerPrintable(&quot;layer&quot;) -&gt; bool

Returns whether the layer &quot;layer&quot; is printable or not, a value of True means
that the layer &quot;layer&quot; can be printed, a value of False means that printing
the layer &quot;layer&quot; is disabled.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>deleteLayer(&quot;layer&quot;)

Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">deleteLayer(&quot;layer&quot;)

Deletes the layer with the name &quot;layer&quot;. Nothing happens if the layer doesn&apos;t
exists or if it&apos;s the only layer in the document.

May raise NotFoundError if the layer can&apos;t be found.
May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>createLayer(layer)

Creates a new layer with the name &quot;name&quot;.

May raise ValueError if the layer name isn&apos;t acceptable.
</source>
        <translation type="obsolete">createLayer(layer)

Creates a new layer with the name &quot;name&quot;.

May raise ValueError if the layer name isn&apos;t acceptable.
</translation>
    </message>
    <message>
        <source>getGuiLanguage() -&gt; string

Returns a string with the -lang value.
</source>
        <translation type="obsolete">getGuiLanguage() -&gt; string

Returns a string with the -lang value.
</translation>
    </message>
    <message>
        <source>createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createEllipse(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new ellipse on the current page and returns its name.
The coordinates are given in the current measurement units of the document
(see UNIT constants). &quot;name&quot; should be a unique identifier for the object
because you need this name for further referencing of that object. If &quot;name&quot;
is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
&quot;name&quot; should be a unique identifier for the object because you need this
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createImage(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new picture frame on the current page and returns its name. The
coordinates are given in the current measurement units of the document.
&quot;name&quot; should be a unique identifier for the object because you need this
name for further access to that object. If &quot;name&quot; is not given Scribus will
create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createText(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createText(x, y, width, height, [&quot;name&quot;]) -&gt; string

Creates a new text frame on the actual page and returns its name.
The coordinates are given in the actual measurement unit of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further referencing of that object. If &quot;name&quot; is not
given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string

Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</source>
        <translation type="obsolete">createLine(x1, y1, x2, y2, [&quot;name&quot;]) -&gt; string

Creates a new line from the point(x1, y1) to the point(x2, y2) and returns
its name. The coordinates are given in the current measurement unit of the
document (see UNIT constants). &quot;name&quot; should be a unique identifier for the
object because you need this name for further access to that object. If
&quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
</translation>
    </message>
    <message>
        <source>createPolyLine(list, [&quot;name&quot;]) -&gt; string

Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
The coordinates are given in the current measurement units of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createPolyLine(list, [&quot;name&quot;]) -&gt; string

Creates a new polyline and returns its name. The points for the polyline are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
The coordinates are given in the current measurement units of the document (see
UNIT constants). &quot;name&quot; should be a unique identifier for the object because
you need this name for further access to that object. If &quot;name&quot; is not given
Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createPolygon(list, [&quot;name&quot;]) -&gt; string

Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
At least three points are required. There is no need to repeat the first point
to close the polygon. The polygon is automatically closed by connecting the
first and the last point.  The coordinates are given in the current measurement
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createPolygon(list, [&quot;name&quot;]) -&gt; string

Creates a new polygon and returns its name. The points for the polygon are
stored in the list &quot;list&quot; in the following order: [x1, y1, x2, y2...xn. yn].
At least three points are required. There is no need to repeat the first point
to close the polygon. The polygon is automatically closed by connecting the
first and the last point.  The coordinates are given in the current measurement
units of the document (see UNIT constants).  &quot;name&quot; should be a unique
identifier for the object because you need this name for further access to that
object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createBezierLine(list, [&quot;name&quot;]) -&gt; string

Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
In the points list, x and y mean the x and y coordinates of the point and kx
and ky meaning the control point for the curve.  The coordinates are given in
the current measurement units of the document (see UNIT constants). &quot;name&quot;
should be a unique identifier for the object because you need this name for
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</source>
        <translation type="obsolete">createBezierLine(list, [&quot;name&quot;]) -&gt; string

Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list &quot;list&quot; in the following order:
[x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn]
In the points list, x and y mean the x and y coordinates of the point and kx
and ky meaning the control point for the curve.  The coordinates are given in
the current measurement units of the document (see UNIT constants). &quot;name&quot;
should be a unique identifier for the object because you need this name for
further access to that object. If &quot;name&quot; is not given Scribus will create one
for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don&apos;t group into points without leftovers.
</translation>
    </message>
    <message>
        <source>createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string

Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</source>
        <translation type="obsolete">createPathText(x, y, &quot;textbox&quot;, &quot;beziercurve&quot;, [&quot;name&quot;]) -&gt; string

Creates a new pathText by merging the two objects &quot;textbox&quot; and
&quot;beziercurve&quot; and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). &quot;name&quot; should be a
unique identifier for the object because you need this name for further access
to that object. If &quot;name&quot; is not given Scribus will create one for you.

May raise NameExistsError if you explicitly pass a name that&apos;s already used.
May raise NotFoundError if one or both of the named base object don&apos;t exist.
</translation>
    </message>
    <message>
        <source>deleteObject([&quot;name&quot;])

Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
</source>
        <translation type="obsolete">deleteObject([&quot;name&quot;])

Deletes the item with the name &quot;name&quot;. If &quot;name&quot; is not given the currently
selected item is deleted.
</translation>
    </message>
    <message>
        <source>textFlowsAroundFrame(&quot;name&quot; [, state])

Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
is not passed, text flow is toggled.
</source>
        <translation type="obsolete">textFlowsAroundFrame(&quot;name&quot; [, state])

Enables/disables &quot;Text Flows Around Frame&quot; feature for object &quot;name&quot;.
Called with parameters string name and optional boolean &quot;state&quot;. If &quot;state&quot;
is not passed, text flow is toggled.
</translation>
    </message>
    <message>
        <source>objectExists([&quot;name&quot;]) -&gt; bool

Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
returns True if there is something selected.
</source>
        <translation type="obsolete">objectExists([&quot;name&quot;]) -&gt; bool

Test if an object with specified name really exists in the document.
The optional parameter is the object name. When no object name is given,
returns True if there is something selected.
</translation>
    </message>
    <message>
        <source>setStyle(&quot;style&quot; [, &quot;name&quot;])

Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it&apos;s applied on the selected object.
</source>
        <translation type="obsolete">setStyle(&quot;style&quot; [, &quot;name&quot;])

Apply the named &quot;style&quot; to the object named &quot;name&quot;. If is no object name
given, it&apos;s applied on the selected object.
</translation>
    </message>
    <message>
        <source>getAllStyles() -&gt; list

Return a list of the names of all paragraph styles in the current document.
</source>
        <translation type="obsolete">getAllStyles() -&gt; list

Return a list of the names of all paragraph styles in the current document.
</translation>
    </message>
    <message>
        <source>currentPage() -&gt; integer

Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
</source>
        <translation type="obsolete">currentPage() -&gt; integer

Returns the number of the current working page. Page numbers are counted from 1
upwards, no matter what the displayed first page number of your document is.
</translation>
    </message>
    <message>
        <source>redrawAll()

Redraws all pages.
</source>
        <translation type="obsolete">redrawAll()

Redraws all pages.
</translation>
    </message>
    <message>
        <source>savePageAsEPS(&quot;name&quot;)

Saves the current page as an EPS to the file &quot;name&quot;.

May raise ScribusError if the save failed.
</source>
        <translation type="obsolete">savePageAsEPS(&quot;name&quot;)

Saves the current page as an EPS to the file &quot;name&quot;.

May raise ScribusError if the save failed.
</translation>
    </message>
    <message>
        <source>deletePage(nr)

Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.

May raise IndexError if the page number is out of range
</source>
        <translation type="obsolete">deletePage(nr)

Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.

May raise IndexError if the page number is out of range
</translation>
    </message>
    <message>
        <source>gotoPage(nr)

Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
just sets the page that script commands will operates on.

May raise IndexError if the page number is out of range.
</source>
        <translation type="obsolete">gotoPage(nr)

Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn&apos;t (curently) change the page the user&apos;s view is displaying, it
just sets the page that script commands will operates on.

May raise IndexError if the page number is out of range.
</translation>
    </message>
    <message>
        <source>pageCount() -&gt; integer

Returns the number of pages in the document.
</source>
        <translation type="obsolete">pageCount() -&gt; integer

Returns the number of pages in the document.
</translation>
    </message>
    <message>
        <source>getHGuides() -&gt; list

Returns a list containing positions of the horizontal guides. Values are in the
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</source>
        <translation type="obsolete">getHGuides() -&gt; list

Returns a list containing positions of the horizontal guides. Values are in the
document&apos;s current units - see UNIT_&lt;type&gt; constants.
</translation>
    </message>
    <message>
        <source>setHGuides(list)

Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type&gt; constants.

Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
         setHGuides([90,250]) # replace current guides entirely
</source>
        <translation type="obsolete">setHGuides(list)

Sets horizontal guides. Input parameter must be a list of guide positions
measured in the current document units - see UNIT_&lt;type&gt; constants.

Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost
         setHGuides([90,250]) # replace current guides entirely
</translation>
    </message>
    <message>
        <source>getVGuides()

See getHGuides.
</source>
        <translation type="obsolete">getVGuides()

See getHGuides.
</translation>
    </message>
    <message>
        <source>setVGuides()

See setHGuides.
</source>
        <translation type="obsolete">setVGuides()

See setHGuides.
</translation>
    </message>
    <message>
        <source>getPageSize() -&gt; tuple

Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</source>
        <translation type="obsolete">getPageSize() -&gt; tuple

Returns a tuple with page dimensions measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()
</translation>
    </message>
    <message>
        <source>getPageItems() -&gt; list

Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</source>
        <translation type="obsolete">getPageItems() -&gt; list

Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [(&apos;Text1&apos;, 4, 0), (&apos;Image1&apos;, 2, 1)]
means that object named &apos;Text1&apos; is a text frame (type 4) and is the first at
the page...
</translation>
    </message>
    <message>
        <source>getPageMargins()

Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type&gt; constants and getPageSize().
</source>
        <translation type="obsolete">getPageMargins()

Returns the page margins as a (top, left, right, bottom) tuple in the current
units. See UNIT_&lt;type&gt; constants and getPageSize().
</translation>
    </message>
    <message>
        <source>setFillColor(&quot;color&quot;, [&quot;name&quot;])

Sets the fill color of the object &quot;name&quot; to the color &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colors. If &quot;name&quot; is not given the
currently selected item is used.
</source>
        <translation type="obsolete">setFillColor(&quot;color&quot;, [&quot;name&quot;])

Sets the fill colour of the object &quot;name&quot; to the colour &quot;color&quot;. &quot;color&quot;
is the name of one of the defined colours. If &quot;name&quot; is not given the
currently selected item is used.
</translation>
    </message>
    <message>
        <source>setLineColor(&quot;color&quot;, [&quot;name&quot;])

Sets the line color of the object &quot;name&quot; to the color &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation type="obsolete">setLineColor(&quot;color&quot;, [&quot;name&quot;])

Sets the line colour of the object &quot;name&quot; to the colour &quot;color&quot;. If &quot;name&quot;
is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setLineWidth(width, [&quot;name&quot;])

Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
given the currently selected item is used.

May raise ValueError if the line width is out of bounds.
</source>
        <translation type="obsolete">setLineWidth(width, [&quot;name&quot;])

Sets line width of the object &quot;name&quot; to &quot;width&quot;. &quot;width&quot; must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If &quot;name&quot; is not
given the currently selected item is used.

May raise ValueError if the line width is out of bounds.
</translation>
    </message>
    <message>
        <source>setLineShade(shade, [&quot;name&quot;])

Sets the shading of the line color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full color intensity). If &quot;name&quot; is not given the currently selected item
is used.

May raise ValueError if the line shade is out of bounds.
</source>
        <translation type="obsolete">setLineShade(shade, [&quot;name&quot;])

Sets the shading of the line colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full colour intensity). If &quot;name&quot; is not given the currently selected item
is used.

May raise ValueError if the line shade is out of bounds.
</translation>
    </message>
    <message>
        <source>setLineJoin(join, [&quot;name&quot;])

Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type&gt;.
</source>
        <translation type="obsolete">setLineJoin(join, [&quot;name&quot;])

Sets the line join style of the object &quot;name&quot; to the style &quot;join&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for join - JOIN_&lt;type&gt;.
</translation>
    </message>
    <message>
        <source>setLineEnd(endtype, [&quot;name&quot;])

Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</source>
        <translation type="obsolete">setLineEnd(endtype, [&quot;name&quot;])

Sets the line cap style of the object &quot;name&quot; to the style &quot;cap&quot;.
If &quot;name&quot; is not given the currently selected item is used. There are
predefined constants for &quot;cap&quot; - CAP_&lt;type&gt;.
</translation>
    </message>
    <message>
        <source>setLineStyle(style, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</source>
        <translation type="obsolete">setLineStyle(style, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the style &quot;style&quot;. If &quot;name&quot;
is not given the currently selected item is used. There are predefined
constants for &quot;style&quot; - LINE_&lt;style&gt;.
</translation>
    </message>
    <message>
        <source>setFillShade(shade, [&quot;name&quot;])

Sets the shading of the fill color of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full Color intensity). If &quot;name&quot; is not given the currently selected
Item is used.

May raise ValueError if the fill shade is out of bounds.
</source>
        <translation type="obsolete">setFillShade(shade, [&quot;name&quot;])

Sets the shading of the fill colour of the object &quot;name&quot; to &quot;shade&quot;.
&quot;shade&quot; must be an integer value in the range from 0 (lightest) to 100
(full Colour intensity). If &quot;name&quot; is not given the currently selected
Item is used.

May raise ValueError if the fill shade is out of bounds.
</translation>
    </message>
    <message>
        <source>setCornerRadius(radius, [&quot;name&quot;])

Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if the corner radius is negative.
</source>
        <translation type="obsolete">setCornerRadius(radius, [&quot;name&quot;])

Sets the corner radius of the object &quot;name&quot;. The radius is expressed
in points. If &quot;name&quot; is not given the currently selected item is used.

May raise ValueError if the corner radius is negative.
</translation>
    </message>
    <message>
        <source>setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the line style doesn&apos;t exist.
</source>
        <translation type="obsolete">setMultiLine(&quot;namedStyle&quot;, [&quot;name&quot;])

Sets the line style of the object &quot;name&quot; to the named style &quot;namedStyle&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May raise NotFoundError if the line style doesn&apos;t exist.
</translation>
    </message>
    <message>
        <source>getFont([&quot;name&quot;]) -&gt; string

Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">getFont([&quot;name&quot;]) -&gt; string

Returns the font name for the text frame &quot;name&quot;. If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>getTextLength([&quot;name&quot;]) -&gt; integer

Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getTextLength([&quot;name&quot;]) -&gt; integer

Returns the length of the text in the text frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
currently visible text, is returned. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">getText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot;. If this text frame has some text
selected, the selected text is returned. All text in the frame, not just
currently visible text, is returned. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>getAllText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">getAllText([&quot;name&quot;]) -&gt; string

Returns the text of the text frame &quot;name&quot; and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>getLineSpacing([&quot;name&quot;]) -&gt; float

Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getLineSpacing([&quot;name&quot;]) -&gt; float

Returns the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; expressed in
points. If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getColumnGap([&quot;name&quot;]) -&gt; float

Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
</source>
        <translation type="obsolete">getColumnGap([&quot;name&quot;]) -&gt; float

Returns the column gap size of the text frame &quot;name&quot; expressed in points. If
&quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>getColumns([&quot;name&quot;]) -&gt; integer

Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">getColumns([&quot;name&quot;]) -&gt; integer

Gets the number of columns of the text frame &quot;name&quot;. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setText(&quot;text&quot;, [&quot;name&quot;])

Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">setText(&quot;text&quot;, [&quot;name&quot;])

Sets the text of the text frame &quot;name&quot; to the text of the string &quot;text&quot;.
Text must be UTF8 encoded - use e.g. unicode(text, &apos;iso-8859-2&apos;). See the FAQ
for more details. If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>insertText(&quot;text&quot;, pos, [&quot;name&quot;])

Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
Text must be UTF encoded (see setText() as reference) The first character has an
index of 0. Inserting at position -1 appends text to the frame. If &quot;name&quot; is
not given the currently selected Item is used.

May throw IndexError for an insertion out of bounds.
</source>
        <translation type="obsolete">insertText(&quot;text&quot;, pos, [&quot;name&quot;])

Inserts the text &quot;text&quot; at the position &quot;pos&quot; into the text frame &quot;name&quot;.
Text must be UTF encoded (see setText() as reference) The first character has an
index of 0. Inserting at position -1 appends text to the frame. If &quot;name&quot; is
not given the currently selected Item is used.

May throw IndexError for an insertion out of bounds.
</translation>
    </message>
    <message>
        <source>setFont(&quot;font&quot;, [&quot;name&quot;])

Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed.  If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError if the font cannot be found.
</source>
        <translation type="obsolete">setFont(&quot;font&quot;, [&quot;name&quot;])

Sets the font of the text frame &quot;name&quot; to &quot;font&quot;. If there is some text
selected only the selected text is changed.  If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError if the font cannot be found.
</translation>
    </message>
    <message>
        <source>setFontSize(size, [&quot;name&quot;])

Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError for a font size that&apos;s out of bounds.
</source>
        <translation type="obsolete">setFontSize(size, [&quot;name&quot;])

Sets the font size of the text frame &quot;name&quot; to &quot;size&quot;. &quot;size&quot; is treated
as a value in points. If there is some text selected only the selected text is
changed. &quot;size&quot; must be in the range 1 to 512. If &quot;name&quot; is not given the
currently selected item is used.

May throw ValueError for a font size that&apos;s out of bounds.
</translation>
    </message>
    <message>
        <source>setLineSpacing(size, [&quot;name&quot;])

Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
item is used.

May throw ValueError if the line spacing is out of bounds.
</source>
        <translation type="obsolete">setLineSpacing(size, [&quot;name&quot;])

Sets the line spacing (&quot;leading&quot;) of the text frame &quot;name&quot; to &quot;size&quot;.
&quot;size&quot; is a value in points. If &quot;name&quot; is not given the currently selected
item is used.

May throw ValueError if the line spacing is out of bounds.
</translation>
    </message>
    <message>
        <source>setColumnGap(size, [&quot;name&quot;])

Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.

May throw ValueError if the column gap is out of bounds (must be positive).
</source>
        <translation type="obsolete">setColumnGap(size, [&quot;name&quot;])

Sets the column gap of the text frame &quot;name&quot; to the value &quot;size&quot;. If
&quot;name&quot; is not given the currently selected item is used.

May throw ValueError if the column gap is out of bounds (must be positive).
</translation>
    </message>
    <message>
        <source>setColumns(nr, [&quot;name&quot;])

Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May throw ValueError if number of columns is not at least one.
</source>
        <translation type="obsolete">setColumns(nr, [&quot;name&quot;])

Sets the number of columns of the text frame &quot;name&quot; to the integer &quot;nr&quot;.
If &quot;name&quot; is not given the currently selected item is used.

May throw ValueError if number of columns is not at least one.
</translation>
    </message>
    <message>
        <source>setTextAlignment(align, [&quot;name&quot;])

Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
be one of the ALIGN_ constants defined in this module - see dir(scribus).

May throw ValueError for an invalid alignment constant.
</source>
        <translation type="obsolete">setTextAlignment(align, [&quot;name&quot;])

Sets the text alignment of the text frame &quot;name&quot; to the specified alignment.
If &quot;name&quot; is not given the currently selected item is used. &quot;align&quot; should
be one of the ALIGN_ constants defined in this module - see dir(scribus).

May throw ValueError for an invalid alignment constant.
</translation>
    </message>
    <message>
        <source>selectText(start, count, [&quot;name&quot;])

Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
text selection will be cleared.  If &quot;name&quot; is not given the currently
selected item is used.

May throw IndexError if the selection is outside the bounds of the text.
</source>
        <translation type="obsolete">selectText(start, count, [&quot;name&quot;])

Selects &quot;count&quot; characters of text in the text frame &quot;name&quot; starting from the
character &quot;start&quot;. Character counting starts at 0. If &quot;count&quot; is zero, any
text selection will be cleared.  If &quot;name&quot; is not given the currently
selected item is used.

May throw IndexError if the selection is outside the bounds of the text.
</translation>
    </message>
    <message>
        <source>deleteText([&quot;name&quot;])

Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">deleteText([&quot;name&quot;])

Deletes any text in the text frame &quot;name&quot;. If there is some text selected,
only the selected text will be deleted. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>setTextColor(&quot;color&quot;, [&quot;name&quot;])

Sets the text color of the text frame &quot;name&quot; to the color &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
given the currently selected item is used.
</source>
        <translation type="obsolete">setTextColor(&quot;color&quot;, [&quot;name&quot;])

Sets the text colour of the text frame &quot;name&quot; to the colour &quot;color&quot;. If there
is some text selected only the selected text is changed. If &quot;name&quot; is not
given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setTextStroke(&quot;color&quot;, [&quot;name&quot;])

Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
</source>
        <translation type="obsolete">setTextStroke(&quot;color&quot;, [&quot;name&quot;])

Set &quot;color&quot; of the text stroke. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <source>setTextShade(shade, [&quot;name&quot;])

Sets the shading of the text color of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If &quot;name&quot; is not given the currently selected item is
used.
</source>
        <translation type="obsolete">setTextShade(shade, [&quot;name&quot;])

Sets the shading of the text colour of the object &quot;name&quot; to &quot;shade&quot;. If
there is some text selected only the selected text is changed. &quot;shade&quot; must
be an integer value in the range from 0 (lightest) to 100 (full colour
intensity). If &quot;name&quot; is not given the currently selected item is
used.
</translation>
    </message>
    <message>
        <source>linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)

Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
and must not link to or be linked from any other frames already.

May throw ScribusException if linking rules are violated.
</source>
        <translation type="obsolete">linkTextFrames(&quot;fromname&quot;, &quot;toname&quot;)

Link two text frames. The frame named &quot;fromname&quot; is linked to the
frame named &quot;toname&quot;. The target frame must be an empty text frame
and must not link to or be linked from any other frames already.

May throw ScribusException if linking rules are violated.
</translation>
    </message>
    <message>
        <source>unlinkTextFrames(&quot;name&quot;)

Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;

May throw ScribusException if linking rules are violated.
</source>
        <translation type="obsolete">unlinkTextFrames(&quot;name&quot;)

Remove the specified (named) object from the text frame flow/linkage. If the
frame was in the middle of a chain, the previous and next frames will be
connected, eg &apos;a-&gt;b-&gt;c&apos; becomes &apos;a-&gt;c&apos; when you unlinkTextFrames(b)&apos;

May throw ScribusException if linking rules are violated.
</translation>
    </message>
    <message>
        <source>traceText([&quot;name&quot;])

Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</source>
        <translation type="obsolete">traceText([&quot;name&quot;])

Convert the text frame &quot;name&quot; to outlines. If &quot;name&quot; is not given the
currently selected item is used.</translation>
    </message>
    <message>
        <source>textOverflows([&quot;name&quot;, nolinks]) -&gt; integer

Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.

May raise WrongFrameTypeError if the target frame is not an text frame
</source>
        <translation type="obsolete">textOverflows([&quot;name&quot;, nolinks]) -&gt; integer

Returns the actual number of overflowing characters in text frame &quot;name&quot;.
If is nolinks set to non zero value it takes only one frame - it doesn&apos;t
use text frame linking. Without this parameter it search all linking chain.

May raise WrongFrameTypeError if the target frame is not an text frame
</translation>
    </message>
    <message>
        <source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])

Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</source>
        <translation type="obsolete">setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])

Sets wether (toggle = 1) the text frame &quot;name&quot; is a bookmark nor not.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</translation>
    </message>
    <message>
        <source>isPDFBookmark([&quot;name&quot;]) -&gt; bool

Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</source>
        <translation type="obsolete">isPDFBookmark([&quot;name&quot;]) -&gt; bool

Returns true if the text frame &quot;name&quot; is a PDF bookmark.
If &quot;name&quot; is not given the currently selected item is used.

May raise WrongFrameTypeError if the target frame is not a text frame
</translation>
    </message>
    <message>
        <source>progressReset()

Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</source>
        <translation type="obsolete">progressReset()

Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</translation>
    </message>
    <message>
        <source>progressTotal(max)

Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</source>
        <translation type="obsolete">progressTotal(max)

Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</translation>
    </message>
    <message>
        <source>progressSet(nr)

Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
total number of steps and the number of steps completed so far and it will
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</source>
        <translation type="obsolete">progressSet(nr)

Set the progress bar position to &quot;nr&quot;, a value relative to the previously set
progressTotal. The progress bar uses the concept of steps; you give it the
total number of steps and the number of steps completed so far and it will
display the percentage of steps that have been completed. You can specify the
total number of steps with progressTotal(). The current number of steps is set
with progressSet(). The progress bar can be rewound to the beginning with
progressReset(). [based on info taken from Trolltech&apos;s Qt docs]
</translation>
    </message>
    <message>
        <source>setCursor()

[UNSUPPORTED!] This might break things, so steer clear for now.
</source>
        <translation type="obsolete">setCursor()

[UNSUPPORTED!] This might break things, so steer clear for now.
</translation>
    </message>
    <message>
        <source>docChanged(bool)

Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</source>
        <translation type="obsolete">docChanged(bool)

Enable/disable save icon in the Scribus icon bar and the Save menu item. It&apos;s
useful to call this procedure when you&apos;re changing the document, because Scribus
won&apos;t automatically notice when you change the document using a script.
</translation>
    </message>
    <message>
        <source>newStyleDialog() -&gt; string

Shows &apos;Create new paragraph style&apos; dialog. Function returns real
style name or None when user cancels the dialog.
</source>
        <translation type="obsolete">newStyleDialog() -&gt; string

Shows &apos;Create new paragraph style&apos; dialog. Function returns real
style name or None when user cancels the dialog.
</translation>
    </message>
    <message>
        <source>newDoc(size, margins, orientation, firstPageNumber,
                   unit, facingPages, firstSideLeft) -&gt; bool

WARNING: Obsolete procedure! Use newDocument instead.

Creates a new document and returns true if successful. The parameters have the
following meaning:

    size = A tuple (width, height) describing the size of the document. You can
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

    margins = A tuple (left, right, top, bottom) describing the document
    margins

    orientation = the page orientation - constants PORTRAIT, LANDSCAPE

    firstPageNumer = is the number of the first page in the document used for
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
    numbers if you&apos;re creating a document in several parts.

    unit: this value sets the measurement units used by the document. Use a
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
    UNIT_PICAS, UNIT_POINTS.

    facingPages = FACINGPAGES, NOFACINGPAGES

    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
                FACINGPAGES, FIRSTPAGERIGHT)
</source>
        <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber,
                   unit, facingPages, firstSideLeft) -&gt; bool

WARNING: Obsolete procedure! Use newDocument instead.

Creates a new document and returns true if successful. The parameters have the
following meaning:

    size = A tuple (width, height) describing the size of the document. You can
    use predefined constants named PAPER_&lt;paper_type&gt; e.g. PAPER_A4 etc.

    margins = A tuple (left, right, top, bottom) describing the document
    margins

    orientation = the page orientation - constants PORTRAIT, LANDSCAPE

    firstPageNumer = is the number of the first page in the document used for
    pagenumbering. While you&apos;ll usually want 1, it&apos;s useful to have higher
    numbers if you&apos;re creating a document in several parts.

    unit: this value sets the measurement units used by the document. Use a
    predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
    UNIT_PICAS, UNIT_POINTS.

    facingPages = FACINGPAGES, NOFACINGPAGES

    firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT

The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.

example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
                FACINGPAGES, FIRSTPAGERIGHT)
</translation>
    </message>
    <message>
        <source>closeMasterPage()

Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</source>
        <translation type="obsolete">closeMasterPage()

Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</translation>
    </message>
    <message>
        <source>masterPageNames()

Returns a list of the names of all master pages in the document.
</source>
        <translation type="obsolete">masterPageNames()

Returns a list of the names of all master pages in the document.
</translation>
    </message>
    <message>
        <source>editMasterPage(pageName)

Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</source>
        <translation type="obsolete">editMasterPage(pageName)

Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</translation>
    </message>
    <message>
        <source>createMasterPage(pageName)

Creates a new master page named pageName and opens it for
editing.
</source>
        <translation type="obsolete">createMasterPage(pageName)

Creates a new master page named pageName and opens it for
editing.
</translation>
    </message>
    <message>
        <source>deleteMasterPage(pageName)

Delete the named master page.
</source>
        <translation type="obsolete">deleteMasterPage(pageName)

Delete the named master page.
</translation>
    </message>
    <message>
        <source>zoomDocument(double)

Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</source>
        <translation type="obsolete">zoomDocument(double)

Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</translation>
    </message>
</context>
<context>
    <name>AIPlug</name>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="124"/>
        <source>Importing: %1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="127"/>
        <source>Analyzing File:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="262"/>
        <source>Group%1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="2495"/>
        <source>Generating Items</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>About</name>
    <message>
        <location filename="../../../scribus/about.cpp" line="309"/>
        <source>Contributions from:</source>
        <translation>Katkıda bulunanlar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="188"/>
        <source>&amp;About</source>
        <translation>&amp;Hakkında</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="201"/>
        <source>A&amp;uthors</source>
        <translation>&amp;Yazarlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="215"/>
        <source>&amp;Translations</source>
        <translation>Ç&amp;eviriler</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="226"/>
        <source>&amp;Online</source>
        <translation>Ç&amp;evrimiçi</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="267"/>
        <source>&amp;Close</source>
        <translation>&amp;Kapat</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="299"/>
        <source>Development Team:</source>
        <translation>Geliştirme ekibi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="307"/>
        <source>Haiku Port:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="311"/>
        <source>Official Documentation:</source>
        <translation>Resmi Belgelendirme:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="315"/>
        <source>Other Documentation:</source>
        <translation>Diğer belgelendirme:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="349"/>
        <source>Homepage</source>
        <translation>Anasayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="351"/>
        <source>Online Reference</source>
        <translation>Çevrimiçi Dokümanlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="355"/>
        <source>Bugs and Feature Requests</source>
        <translation>Hatalar ve özellik istekleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="359"/>
        <source>Mailing List</source>
        <translation>Mailing List</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="333"/>
        <source>Official Translations and Translators:</source>
        <translation>Resmi çeviri ve çevirmenler:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="335"/>
        <source>Previous Translation Contributors:</source>
        <translation>Önceki çevirilere katkıda bulunanlar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="97"/>
        <source>About Scribus %1</source>
        <translation>Scribus %1 Hakkında
</translation>
    </message>
    <message>
        <source>Windows Port:</source>
        <translation type="obsolete">Windowsa uyarlayan:</translation>
    </message>
    <message>
        <source>Mac OSX Aqua Port:</source>
        <translation type="obsolete">Mac OSX &apos;e uyarlayan:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="353"/>
        <source>Wiki</source>
        <translation>Wiki</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="125"/>
        <source>%1 %2 %3</source>
        <translation>%1 %2 %3</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="133"/>
        <source>%3-%2-%1 %4 %5</source>
        <translation>%3-%2-%1 %4 %5</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="183"/>
        <source>Using Ghostscript version %1</source>
        <translation>Ghostscript sürümü: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="185"/>
        <source>No Ghostscript version available</source>
        <translation>Ghostscript yüklü değil</translation>
    </message>
    <message>
        <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>
        <translation type="obsolete">&lt;b&gt;Scribus Sürüm %1&lt;/b&gt;&lt;p&gt;%2&lt;br/&gt;%3 %4&lt;br/&gt;%5&lt;/p&gt;</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="186"/>
        <source>Build ID:</source>
        <translation>Build ID:</translation>
    </message>
    <message>
        <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>
        <translation type="obsolete">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.</translation>
    </message>
    <message>
        <source>January</source>
        <translation type="obsolete">Ocak</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="301"/>
        <source>Mac OS&amp;#174; X Aqua Port:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="305"/>
        <source>Windows&amp;#174; Port:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="321"/>
        <source>Tango Project Icons:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="229"/>
        <source>&amp;Updates</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="279"/>
        <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="303"/>
        <source>OS/2&amp;#174;/eComStation&amp;#8482; Port:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="319"/>
        <source>Splash Screen:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="275"/>
        <source>This panel shows the version, build date and compiled in library support in Scribus.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="276"/>
        <source>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 Q=Qt</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="277"/>
        <source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="278"/>
        <source>The Windows version does not use fontconfig or CUPS libraries.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="186"/>
        <source>&lt;p align=&quot;center&quot;&gt;&lt;b&gt;%1 %2&lt;/b&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;%3&lt;br&gt;%4 %5&lt;br&gt;%6&lt;/p&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="186"/>
        <source>Scribus Version</source>
        <translation type="unfinished">Scribus Sürümü </translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="233"/>
        <location filename="../../../scribus/about.cpp" line="657"/>
        <source>Check for Updates</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="655"/>
        <source>Abort Update Check</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="357"/>
        <source>Developer Blog</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="240"/>
        <source>&amp;Licence</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="249"/>
        <source>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="313"/>
        <source>Doc Translators:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="317"/>
        <source>Webmasters:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="452"/>
        <location filename="../../../scribus/about.cpp" line="566"/>
        <location filename="../../../scribus/about.cpp" line="633"/>
        <source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AboutPlugins</name>
    <message>
        <source>Yes</source>
        <translation type="obsolete">Evet</translation>
    </message>
    <message>
        <source>No</source>
        <translation type="obsolete">Hayır</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="68"/>
        <source>Filename:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="69"/>
        <source>Version:</source>
        <translation type="unfinished">Sürüm:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="72"/>
        <source>Enabled:</source>
        <translation type="unfinished">Etkin:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="73"/>
        <source>Release Date:</source>
        <translation type="unfinished">Sürüm Tarihi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="80"/>
        <source>Description:</source>
        <translation type="unfinished">Tanım:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="81"/>
        <source>Author(s):</source>
        <translation type="unfinished">Yazar(lar):</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="82"/>
        <source>Copyright:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="83"/>
        <source>License:</source>
        <translation type="unfinished">Lisans:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.ui" line="13"/>
        <source>Scribus: About Plug-ins</source>
        <translation type="unfinished">Scribus: Eklentiller hakkında</translation>
    </message>
</context>
<context>
    <name>AboutPluginsBase</name>
    <message>
        <source>Scribus: About Plug-ins</source>
        <translation type="obsolete">Scribus: Eklentiller hakkında</translation>
    </message>
    <message>
        <source>File Name:</source>
        <translation type="obsolete">Dosya Adı:</translation>
    </message>
    <message>
        <source>Version:</source>
        <translation type="obsolete">Sürüm:</translation>
    </message>
    <message>
        <source>Enabled:</source>
        <translation type="obsolete">Etkin:</translation>
    </message>
    <message>
        <source>Release Date:</source>
        <translation type="obsolete">Sürüm Tarihi:</translation>
    </message>
    <message>
        <source>Copyright:</source>
        <translation type="obsolete">Telif Hakkı:</translation>
    </message>
    <message>
        <source>Author(s):</source>
        <translation type="obsolete">Yazar(lar):</translation>
    </message>
    <message>
        <source>Description:</source>
        <translation type="obsolete">Tanım:</translation>
    </message>
    <message>
        <source>License:</source>
        <translation type="obsolete">Lisans:</translation>
    </message>
    <message>
        <source>&amp;Close</source>
        <translation type="obsolete">K&amp;apat</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <translation type="obsolete">Alt+C</translation>
    </message>
</context>
<context>
    <name>ActionManager</name>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1349"/>
        <source>&amp;Image Effects</source>
        <translation>&amp;Resim Efektleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1350"/>
        <source>&amp;Tabulators...</source>
        <translation>&amp;Cetvelleyiciler...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1269"/>
        <source>&amp;New</source>
        <translation>Y&amp;eni</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1271"/>
        <source>&amp;Open...</source>
        <translation>&amp;Aç...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1272"/>
        <source>&amp;Close</source>
        <translation>K&amp;apat</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1273"/>
        <source>&amp;Save</source>
        <translation>&amp;Kaydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1274"/>
        <source>Save &amp;As...</source>
        <translation>&amp;Farklı kaydet...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1275"/>
        <source>Re&amp;vert to Saved</source>
        <translation>Kaydedilmişe &amp;Dön</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1276"/>
        <source>Collect for O&amp;utput...</source>
        <translation>Çıktı İçin &amp;Topla...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1277"/>
        <source>Get Text...</source>
        <translation>Metin Al...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1278"/>
        <source>Append &amp;Text...</source>
        <translation>&amp;Metin Ekle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1279"/>
        <source>Get Image...</source>
        <translation>Resim Al...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1282"/>
        <source>Save &amp;Text...</source>
        <translation>Metni K&amp;aydet...</translation>
    </message>
    <message>
        <source>Save Page as &amp;EPS...</source>
        <translation type="obsolete">Sayfayı &amp;EPS biçiminde kaydet...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1284"/>
        <source>Save as P&amp;DF...</source>
        <translation>P&amp;DF olarak kaydet...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1285"/>
        <source>Document &amp;Setup...</source>
        <translation>Belge Dü&amp;zeni...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1287"/>
        <source>&amp;Print...</source>
        <translation>&amp;Yazdır...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1289"/>
        <source>&amp;Quit</source>
        <translation>Çı&amp;k</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1291"/>
        <source>&amp;Undo</source>
        <translation>Geri &amp;Al</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1292"/>
        <source>&amp;Redo</source>
        <translation>&amp;Yinele</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1293"/>
        <source>&amp;Item Action Mode</source>
        <translation>Öğe işlem ki&amp;pi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1294"/>
        <source>Cu&amp;t</source>
        <translation>&amp;Kes</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1295"/>
        <location filename="../../../scribus/actionmanager.cpp" line="1297"/>
        <source>&amp;Copy</source>
        <translation>K&amp;opyala</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1296"/>
        <location filename="../../../scribus/actionmanager.cpp" line="1298"/>
        <source>&amp;Paste</source>
        <translation>&amp;Yapıştır</translation>
    </message>
    <message>
        <source>C&amp;lear Contents</source>
        <translation type="obsolete">İçeriği &amp;Temizle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1302"/>
        <source>Select &amp;All</source>
        <translation>Tümünü S&amp;eç</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1304"/>
        <source>&amp;Deselect All</source>
        <translation>Tümünden seçimi ka&amp;ldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1305"/>
        <source>&amp;Search/Replace...</source>
        <translation>Ara/Değ&amp;iştir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1308"/>
        <source>C&amp;olors...</source>
        <translation>&amp;Renkler...</translation>
    </message>
    <message>
        <source>&amp;Paragraph Styles...</source>
        <translation type="obsolete">&amp;Paragraf Stilleri...</translation>
    </message>
    <message>
        <source>&amp;Line Styles...</source>
        <translation type="obsolete">Çiz&amp;gi Stilleri...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1312"/>
        <source>&amp;Master Pages...</source>
        <translation>&amp;Mastar sayfalar...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1286"/>
        <source>P&amp;references...</source>
        <translation>&amp;Tercihler...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1320"/>
        <source>%1 pt</source>
        <translation>%1 pt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1322"/>
        <source>&amp;Other...</source>
        <translation>&amp;Diğer...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1323"/>
        <source>&amp;Left</source>
        <translation>&amp;Sol</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1324"/>
        <source>&amp;Center</source>
        <translation>Or&amp;tala</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1325"/>
        <source>&amp;Right</source>
        <translation>Sa&amp;ğ</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1326"/>
        <source>&amp;Block</source>
        <translation>&amp;Blok</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1327"/>
        <source>&amp;Forced</source>
        <translation>&amp;Zorlanmış</translation>
    </message>
    <message>
        <source>&amp;%1 %</source>
        <translation type="obsolete">&amp;%1 %</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1338"/>
        <source>&amp;Normal</source>
        <translation>&amp;Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1339"/>
        <source>&amp;Underline</source>
        <translation>Altı Çizil&amp;i</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1340"/>
        <source>Underline &amp;Words</source>
        <translation>Kelimelerin altını çi&amp;z</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1341"/>
        <source>&amp;Strike Through</source>
        <translation>Ü&amp;stü Çizili</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1342"/>
        <source>&amp;All Caps</source>
        <translation>&amp;Büyük harfe çevir</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1343"/>
        <source>Small &amp;Caps</source>
        <translation>&amp;Küçük harfe çevir</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1344"/>
        <source>Su&amp;perscript</source>
        <translation>Su&amp;perscript</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1345"/>
        <source>Su&amp;bscript</source>
        <translation>Su&amp;bscript</translation>
    </message>
    <message>
        <source>&amp;Outline</source>
        <translation type="obsolete">Kontü&amp;r</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1353"/>
        <source>D&amp;uplicate</source>
        <translation>Ç&amp;oğalt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1354"/>
        <source>&amp;Multiple Duplicate</source>
        <translation>&amp;Çoklu Çoğalt&amp;ma</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1355"/>
        <source>&amp;Delete</source>
        <translation>&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1356"/>
        <source>&amp;Group</source>
        <translation>&amp;Grupla</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1357"/>
        <source>&amp;Ungroup</source>
        <translation>Grubu &amp;çöz</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1358"/>
        <source>Is &amp;Locked</source>
        <translation>Kilitl&amp;i</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1359"/>
        <source>Si&amp;ze is Locked</source>
        <translation>Ölçü ki&amp;litli</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1363"/>
        <source>Lower to &amp;Bottom</source>
        <translation>En &amp;alta gönder</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1364"/>
        <source>Raise to &amp;Top</source>
        <translation>En üste ge&amp;tir</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1365"/>
        <source>&amp;Lower</source>
        <translation>&amp;Alçalt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1366"/>
        <source>&amp;Raise</source>
        <translation>&amp;Yükselt</translation>
    </message>
    <message>
        <source>Send to S&amp;crapbook</source>
        <translation type="obsolete">Al&amp;büme Yolla</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1369"/>
        <source>&amp;Attributes...</source>
        <translation>&amp;Nitelikler...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1371"/>
        <source>I&amp;mage Visible</source>
        <translation>Resim Görünü&amp;r</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1379"/>
        <source>Is PDF &amp;Bookmark</source>
        <translation>PDF Y&amp;er imidir</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1380"/>
        <source>Is PDF A&amp;nnotation</source>
        <translation>PDF No&amp;tudur</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1381"/>
        <source>Annotation P&amp;roperties</source>
        <translation>Açıklama Ö&amp;zellikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1382"/>
        <source>Field P&amp;roperties</source>
        <translation>Alan Ö&amp;zellikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1383"/>
        <source>&amp;Edit Shape...</source>
        <translation>Ş&amp;ekli düzenle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1384"/>
        <source>&amp;Attach Text to Path</source>
        <translation>Metni &amp;Eğriye Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1385"/>
        <source>&amp;Detach Text from Path</source>
        <translation>Metni Eğri&amp;den Ayır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1386"/>
        <source>&amp;Combine Polygons</source>
        <translation>Çokgenleri &amp;Birleştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1387"/>
        <source>Split &amp;Polygons</source>
        <translation>Çokgenleri Bö&amp;l</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1388"/>
        <source>&amp;Bezier Curve</source>
        <translation>&amp;Bezier eğrisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1389"/>
        <source>&amp;Image Frame</source>
        <translation>Resim Çe&amp;rçevesi</translation>
    </message>
    <message>
        <source>&amp;Outlines</source>
        <translation type="obsolete">Anahat&amp;lar</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1391"/>
        <source>&amp;Polygon</source>
        <translation>Çokge&amp;n</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1392"/>
        <source>&amp;Text Frame</source>
        <translation>&amp;Metin Çerçevesi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1396"/>
        <source>&amp;Glyph...</source>
        <translation>&amp;Glyph...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1397"/>
        <source>Sample Text</source>
        <translation>Örnek Metin</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1401"/>
        <source>&amp;Insert...</source>
        <translation>&amp;Ekle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1402"/>
        <source>Im&amp;port...</source>
        <translation>İth&amp;al et...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1403"/>
        <source>&amp;Delete...</source>
        <translation>&amp;Sil...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1404"/>
        <source>&amp;Copy...</source>
        <translation>K&amp;opyala...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1405"/>
        <source>&amp;Move...</source>
        <translation>&amp;Taşı...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1406"/>
        <source>&amp;Apply Master Page...</source>
        <translation>&amp;Mastar sayfayı uygula...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1408"/>
        <source>Manage &amp;Guides...</source>
        <translation>Kılavuz &amp;Yönetimi...</translation>
    </message>
    <message>
        <source>&amp;Fit in window</source>
        <translation type="obsolete">Pencereye &amp;Sığdır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1414"/>
        <source>&amp;50%</source>
        <translation>&amp;50%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1415"/>
        <source>&amp;75%</source>
        <translation>&amp;75%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1416"/>
        <source>&amp;100%</source>
        <translation>&amp;100%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1417"/>
        <source>&amp;200%</source>
        <translation>&amp;200%</translation>
    </message>
    <message>
        <source>&amp;Thumbnails</source>
        <translation type="obsolete">Küçük R&amp;esimler</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1420"/>
        <source>Show &amp;Margins</source>
        <translation>&amp;Kenarlıkları Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1422"/>
        <source>Show &amp;Frames</source>
        <translation>Çerçeveleri &amp;Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1424"/>
        <source>Show &amp;Images</source>
        <translation>Resimleri &amp;Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1425"/>
        <source>Show &amp;Grid</source>
        <translation>&amp;Izgarayı Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1426"/>
        <source>Show G&amp;uides</source>
        <translation>Kıla&amp;vuzları Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1428"/>
        <source>Show &amp;Baseline Grid</source>
        <translation type="unfinished">Show &amp;Baseline Grid</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1429"/>
        <source>Show &amp;Text Chain</source>
        <translation>Metin B&amp;ağlarını Göster</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1433"/>
        <source>Sn&amp;ap to Grid</source>
        <translation>Iz&amp;garaya Yapıştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1434"/>
        <source>Sna&amp;p to Guides</source>
        <translation>Kılavuzlara &amp;Yapıştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1439"/>
        <source>&amp;Properties</source>
        <translation>Ö&amp;zellikler</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1441"/>
        <source>&amp;Scrapbook</source>
        <translation>&amp;Albüm</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1442"/>
        <source>&amp;Layers</source>
        <translation>&amp;Katmanlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1444"/>
        <source>&amp;Bookmarks</source>
        <translation>&amp;Yer imleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1445"/>
        <source>&amp;Measurements</source>
        <translation>Ölçü&amp;ler</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1446"/>
        <source>Action &amp;History</source>
        <translation>İşlem &amp;Geçmişi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1447"/>
        <source>Preflight &amp;Verifier</source>
        <translation>Bas&amp;kı Denetleyicisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1449"/>
        <source>&amp;Tools</source>
        <translation>&amp;Araçlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1450"/>
        <source>P&amp;DF Tools</source>
        <translation>P&amp;DF Araçları</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1453"/>
        <source>Select Item</source>
        <translation>Öğeyi Seç</translation>
    </message>
    <message>
        <source>T&amp;able</source>
        <translation type="obsolete">T&amp;ablo</translation>
    </message>
    <message>
        <source>&amp;Shape</source>
        <translation type="obsolete">Åž&amp;ekil</translation>
    </message>
    <message>
        <source>&amp;Line</source>
        <translation type="obsolete">Ç&amp;izgi</translation>
    </message>
    <message>
        <source>&amp;Freehand Line</source>
        <translation type="obsolete">&amp;Serbest Çizim</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1454"/>
        <source>Rotate Item</source>
        <translation>Öğeyi Döndür</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1455"/>
        <source>Zoom in or out</source>
        <translation>Yakınlaştır veya Uzaklaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1456"/>
        <source>Zoom in</source>
        <translation>Yakınlaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1457"/>
        <source>Zoom out</source>
        <translation>Uzaklaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1458"/>
        <source>Edit Contents of Frame</source>
        <translation>Çerçevenin İçeriğini Düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1460"/>
        <source>Link Text Frames</source>
        <translation>Metin Çerçevelerini Bağla</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1461"/>
        <source>Unlink Text Frames</source>
        <translation>Metin Çerçevelerinden Bağı Kaldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1462"/>
        <source>&amp;Eye Dropper</source>
        <translation>&amp;Renk Alıcı</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1463"/>
        <source>Copy Item Properties</source>
        <translation>Öğe Özelliklerini Kopyala</translation>
    </message>
    <message>
        <source>Edit the text with the Story Editor</source>
        <translation type="obsolete">Metin editörü ile düzenle</translation>
    </message>
    <message>
        <source>Insert Text Frame</source>
        <translation type="obsolete">Metin Çerçevesi Ekle</translation>
    </message>
    <message>
        <source>Insert Image Frame</source>
        <translation type="obsolete">Resim Çerçevesi Ekle</translation>
    </message>
    <message>
        <source>Insert Table</source>
        <translation type="obsolete">Tablo Ekle</translation>
    </message>
    <message>
        <source>Insert Shape</source>
        <translation type="obsolete">Åžekil Ekle</translation>
    </message>
    <message>
        <source>Insert Polygon</source>
        <translation type="obsolete">Çokgen Ekle</translation>
    </message>
    <message>
        <source>Insert Line</source>
        <translation type="obsolete">Çizgi Ekle</translation>
    </message>
    <message>
        <source>Insert Bezier Curve</source>
        <translation type="obsolete">Bezier eğrisi ekle</translation>
    </message>
    <message>
        <source>Insert Freehand Line</source>
        <translation type="obsolete">Serbest Çizim Ekle</translation>
    </message>
    <message>
        <source>&amp;Manage Pictures</source>
        <translation type="obsolete">&amp;Resim Yönetimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1486"/>
        <source>&amp;Hyphenate Text</source>
        <translation>Metni &amp;Tirele</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1488"/>
        <source>&amp;Generate Table Of Contents</source>
        <translation>İçindekiler Tablosu &amp;oluştur</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1495"/>
        <source>&amp;About Scribus</source>
        <translation>&amp;Scribus Hakkında
</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1497"/>
        <source>About &amp;Qt</source>
        <translation>&amp;Qt hakkında</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1498"/>
        <source>Toolti&amp;ps</source>
        <translation type="unfinished">Toolti&amp;ps</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1500"/>
        <source>Scribus &amp;Manual...</source>
        <translation>Scribus Kullanım Kılavuz&amp;u...</translation>
    </message>
    <message>
        <source>Smart &amp;Hyphen</source>
        <translation type="obsolete">Akıllı T&amp;ireleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1520"/>
        <source>Non Breaking &amp;Space</source>
        <translation type="unfinished">Non Breaking &amp;Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1521"/>
        <source>Page &amp;Number</source>
        <translation>Sa&amp;yfa Numarası</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1528"/>
        <source>Copyright</source>
        <translation>Telif Hakkı</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1529"/>
        <source>Registered Trademark</source>
        <translation>Tescilli Marka</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1530"/>
        <source>Trademark</source>
        <translation>Marka Tescili</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1532"/>
        <source>Bullet</source>
        <translation type="unfinished">Bullet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1534"/>
        <source>Em Dash</source>
        <translation type="unfinished">Em Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1535"/>
        <source>En Dash</source>
        <translation type="unfinished">En Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1536"/>
        <source>Figure Dash</source>
        <translation type="unfinished">Figure Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1537"/>
        <source>Quotation Dash</source>
        <translation type="unfinished">Quotation Dash</translation>
    </message>
    <message>
        <source>Apostrophe</source>
        <translation type="obsolete">Kesme işareti</translation>
    </message>
    <message>
        <source>Straight Double</source>
        <translation type="obsolete">Straight Double</translation>
    </message>
    <message>
        <source>Single Left</source>
        <translation type="obsolete">Single Left</translation>
    </message>
    <message>
        <source>Single Right</source>
        <translation type="obsolete">Single Right</translation>
    </message>
    <message>
        <source>Double Left</source>
        <translation type="obsolete">Double Left</translation>
    </message>
    <message>
        <source>Double Right</source>
        <translation type="obsolete">Double Right</translation>
    </message>
    <message>
        <source>Single Reversed</source>
        <translation type="obsolete">Single Reversed</translation>
    </message>
    <message>
        <source>Double Reversed</source>
        <translation type="obsolete">Double Reversed</translation>
    </message>
    <message>
        <source>Single Left Guillemet</source>
        <translation type="obsolete">Single Left Guillemet</translation>
    </message>
    <message>
        <source>Single Right Guillemet</source>
        <translation type="obsolete">Single Right Guillemet</translation>
    </message>
    <message>
        <source>Double Left Guillemet</source>
        <translation type="obsolete">Double Left Guillemet</translation>
    </message>
    <message>
        <source>Double Right Guillemet</source>
        <translation type="obsolete">Double Right Guillemet</translation>
    </message>
    <message>
        <source>Low Single Comma</source>
        <translation type="obsolete">Low Single Comma</translation>
    </message>
    <message>
        <source>Low Double Comma</source>
        <translation type="obsolete">Low Double Comma</translation>
    </message>
    <message>
        <source>CJK Single Left</source>
        <translation type="obsolete">CJK Single Left</translation>
    </message>
    <message>
        <source>CJK Single Right</source>
        <translation type="obsolete">CJK Single Right</translation>
    </message>
    <message>
        <source>CJK Double Left</source>
        <translation type="obsolete">CJK Double Left</translation>
    </message>
    <message>
        <source>CJK Double Right</source>
        <translation type="obsolete">CJK Double Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1508"/>
        <source>Toggle Palettes</source>
        <translation type="unfinished">Toggle Palettes</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1347"/>
        <source>S&amp;hadow</source>
        <translation>&amp;Gölge</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1376"/>
        <source>&amp;Low Resolution</source>
        <translation>&amp;Düşük Çözünürlük</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1377"/>
        <source>&amp;Normal Resolution</source>
        <translation>&amp;Normal Çözünürlük</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1378"/>
        <source>&amp;Full Resolution</source>
        <translation>&amp;Tam Çözünürlük</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1306"/>
        <source>Edit Image...</source>
        <translation>Resmi Düzenle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1372"/>
        <source>&amp;Update Image</source>
        <translation>Resmi Gün&amp;celle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1373"/>
        <source>Adjust Frame to Image</source>
        <translation>Çerçeveyi resme ayarla</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1375"/>
        <source>Extended Image Properties</source>
        <translation>Extended Image Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1430"/>
        <source>Show Control Characters</source>
        <translation type="unfinished">Show Control Characters</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1448"/>
        <source>&amp;Align and Distribute</source>
        <translation>&amp;Hizala ve Dağıt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1459"/>
        <source>Edit Text...</source>
        <translation>Metni Düzenle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1523"/>
        <source>New Line</source>
        <translation>Yeni Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1524"/>
        <source>Frame Break</source>
        <translation type="unfinished">Frame Break</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1525"/>
        <source>Column Break</source>
        <translation type="unfinished">Column Break</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1519"/>
        <source>Non Breaking Dash</source>
        <translation type="unfinished">Non Breaking Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1509"/>
        <source>Toggle Guides</source>
        <translation type="unfinished">Toggle Guides</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1443"/>
        <source>&amp;Arrange Pages</source>
        <translation>Sayfaları &amp;Tanzim et </translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1487"/>
        <source>Dehyphenate Text</source>
        <translation>Tireleri Kaldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1409"/>
        <source>Manage Page Properties...</source>
        <translation>Sayfa Özelliklerini Yönet...</translation>
    </message>
    <message>
        <source>Rulers relative to Page</source>
        <translation type="obsolete">Cetveller sayfaya bağıntılı</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1288"/>
        <source>Print Previe&amp;w</source>
        <translation>Baskı Öni&amp;zleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1313"/>
        <source>&amp;JavaScripts...</source>
        <translation>&amp;JavaScript...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1407"/>
        <source>Convert to Master Page...</source>
        <translation>Sayfayı Mastar Sayfaya çevir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1491"/>
        <source>&amp;Cascade</source>
        <translation type="unfinished">&amp;Cascade</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1492"/>
        <source>&amp;Tile</source>
        <translation type="unfinished">&amp;Tile</translation>
    </message>
    <message>
        <source>&amp;About Plug-ins</source>
        <translation type="obsolete">&amp;Eklentiler hakkında</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1370"/>
        <source>More Info...</source>
        <translation>Daha fazla bilgi...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1283"/>
        <source>Save as &amp;EPS...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1299"/>
        <source>Paste (&amp;Absolute)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1300"/>
        <source>Paste Image from Clipboard</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1301"/>
        <source>C&amp;lear</source>
        <translation type="unfinished">&amp;Temizle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1311"/>
        <source>S&amp;tyles...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1346"/>
        <source>&amp;Outline</source>
        <comment>type effect</comment>
        <translation type="unfinished">Kontü&amp;r</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1360"/>
        <source>&amp;Printing Enabled</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1361"/>
        <source>&amp;Flip Horizontally</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1362"/>
        <source>&amp;Flip Vertically</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1390"/>
        <source>&amp;Outlines</source>
        <comment>Convert to oulines</comment>
        <translation type="unfinished">Anahat&amp;lar</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1419"/>
        <source>Preview Mode</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1423"/>
        <source>Show Layer Indicators</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1427"/>
        <source>Show Text Frame Columns</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1431"/>
        <source>Show Rulers</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1440"/>
        <source>&amp;Outline</source>
        <comment>Document Outline Palette</comment>
        <translation type="unfinished">Kontü&amp;r</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1475"/>
        <source>Insert PDF Push Button</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1476"/>
        <source>Insert PDF Text Field</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1477"/>
        <source>Insert PDF Check Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1478"/>
        <source>Insert PDF Combo Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1479"/>
        <source>Insert PDF List Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1480"/>
        <source>Insert Text Annotation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1481"/>
        <source>Insert Link Annotation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1518"/>
        <source>Soft &amp;Hyphen</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1531"/>
        <source>Solidus</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1533"/>
        <source>Middle Dot</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1558"/>
        <source>En Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1559"/>
        <source>Em Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1560"/>
        <source>Thin Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1561"/>
        <source>Thick Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1562"/>
        <source>Mid Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1563"/>
        <source>Hair Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1575"/>
        <source>ff</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1576"/>
        <source>fi</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1577"/>
        <source>fl</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1578"/>
        <source>ffi</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1579"/>
        <source>ffl</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1580"/>
        <source>ft</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1581"/>
        <source>st</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1310"/>
        <source>Patterns...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1368"/>
        <source>Send to Patterns</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1395"/>
        <source>&amp;Frames...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1398"/>
        <source>Sticky Tools</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1412"/>
        <source>&amp;Fit to Height</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1413"/>
        <source>Fit to Width</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1421"/>
        <source>Show Bleeds</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1526"/>
        <source>&amp;Zero Width Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1527"/>
        <source>Zero Width NB Space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1539"/>
        <source>Apostrophe</source>
        <comment>Unicode 0x0027</comment>
        <translation type="unfinished">Kesme işareti</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1540"/>
        <source>Straight Double</source>
        <comment>Unicode 0x0022</comment>
        <translation type="unfinished">Straight Double</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1541"/>
        <source>Single Left</source>
        <comment>Unicode 0x2018</comment>
        <translation type="unfinished">Single Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1542"/>
        <source>Single Right</source>
        <comment>Unicode 0x2019</comment>
        <translation type="unfinished">Single Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1543"/>
        <source>Double Left</source>
        <comment>Unicode 0x201C</comment>
        <translation type="unfinished">Double Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1544"/>
        <source>Double Right</source>
        <comment>Unicode 0x201D</comment>
        <translation type="unfinished">Double Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1545"/>
        <source>Single Reversed</source>
        <comment>Unicode 0x201B</comment>
        <translation type="unfinished">Single Reversed</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1546"/>
        <source>Double Reversed</source>
        <comment>Unicode 0x201F</comment>
        <translation type="unfinished">Double Reversed</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1547"/>
        <source>Single Left Guillemet</source>
        <comment>Unicode 0x2039</comment>
        <translation type="unfinished">Single Left Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1548"/>
        <source>Single Right Guillemet</source>
        <comment>Unicode 0x203A</comment>
        <translation type="unfinished">Single Right Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1549"/>
        <source>Double Left Guillemet</source>
        <comment>Unicode 0x00AB</comment>
        <translation type="unfinished">Double Left Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1550"/>
        <source>Double Right Guillemet</source>
        <comment>Unicode 0x00BB</comment>
        <translation type="unfinished">Double Right Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1551"/>
        <source>Low Single Comma</source>
        <comment>Unicode 0x201A</comment>
        <translation type="unfinished">Low Single Comma</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1552"/>
        <source>Low Double Comma</source>
        <comment>Unicode 0x201E</comment>
        <translation type="unfinished">Low Double Comma</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1553"/>
        <source>CJK Single Left</source>
        <comment>Unicode 0x300C</comment>
        <translation type="unfinished">CJK Single Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1554"/>
        <source>CJK Single Right</source>
        <comment>Unicode 0x300D</comment>
        <translation type="unfinished">CJK Single Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1555"/>
        <source>CJK Double Left</source>
        <comment>Unicode 0x300E</comment>
        <translation type="unfinished">CJK Double Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1556"/>
        <source>CJK Double Right</source>
        <comment>Unicode 0x300F</comment>
        <translation type="unfinished">CJK Double Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1418"/>
        <source>&amp;400%</source>
        <translation type="unfinished">&amp;200% {400%?}</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1465"/>
        <source>Insert &amp;Text Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1466"/>
        <source>Insert &amp;Image Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1468"/>
        <source>Insert T&amp;able</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1469"/>
        <source>Insert &amp;Shape</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1470"/>
        <source>Insert &amp;Polygon</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1471"/>
        <source>Insert &amp;Line</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1472"/>
        <source>Insert &amp;Bezier Curve</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1473"/>
        <source>Insert &amp;Freehand Line</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1501"/>
        <source>Scribus Homepage</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1502"/>
        <source>Scribus Online Documentation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1503"/>
        <source>Scribus Wiki</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1504"/>
        <source>Getting Started with Scribus</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1435"/>
        <source>Show Context Menu</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1485"/>
        <source>&amp;Manage Images</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1496"/>
        <source>&amp;About Plugins</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1510"/>
        <source>Insert Unicode Character Begin Sequence</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1280"/>
        <source>Get Vector File...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1303"/>
        <source>Advanced Select All...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1307"/>
        <source>Edit Source...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1309"/>
        <source>Replace Colors...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1432"/>
        <source>Rulers Relative to Page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1467"/>
        <source>Insert &amp;Render Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1505"/>
        <source>Check for Updates</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1522"/>
        <source>Number of Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1374"/>
        <source>Adjust Image to Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1704"/>
        <source>File</source>
        <translation type="unfinished">Dosya</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1704"/>
        <source>&amp;File</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1706"/>
        <source>Edit</source>
        <translation type="unfinished">Düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1706"/>
        <source>&amp;Edit</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1708"/>
        <source>Style</source>
        <translation type="unfinished">Stil</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1708"/>
        <source>&amp;Style</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1710"/>
        <source>Item</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1710"/>
        <source>&amp;Item</source>
        <translation type="unfinished">Öğ&amp;e</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1712"/>
        <source>Insert</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1712"/>
        <source>I&amp;nsert</source>
        <translation type="unfinished">E&amp;kle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1714"/>
        <source>Page</source>
        <translation type="unfinished">Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1714"/>
        <source>&amp;Page</source>
        <translation type="unfinished">S&amp;ayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1716"/>
        <source>View</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1716"/>
        <source>&amp;View</source>
        <translation type="unfinished">Gör&amp;üntüle</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1718"/>
        <source>Extras</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1718"/>
        <source>E&amp;xtras</source>
        <translation type="unfinished">Ekstra&amp;lar</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1720"/>
        <source>Windows</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1720"/>
        <source>&amp;Windows</source>
        <translation type="unfinished">&amp;Pencereler</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1722"/>
        <source>Help</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1722"/>
        <source>&amp;Help</source>
        <translation type="unfinished">&amp;Yardım</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1890"/>
        <source>Plugin Menu Items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1892"/>
        <source>Others</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1894"/>
        <source>Unicode Characters</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1499"/>
        <source>Move/Resize Value Indicator</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1270"/>
        <source>New &amp;from Template...</source>
        <translation type="unfinished">Åžablo&amp;ndan oluÅŸtur...</translation>
    </message>
</context>
<context>
    <name>AdjustCmsDialog</name>
    <message>
        <location filename="../../../scribus/adjustcmsdialog.cpp" line="16"/>
        <source>CMS Settings</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AlignDistribute</name>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="36"/>
        <source>Align</source>
        <translation type="unfinished">Hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="65"/>
        <source>&amp;Selected Guide:</source>
        <translation type="unfinished">Seçili &amp;Kılavuz:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="78"/>
        <source>&amp;Relative To:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="97"/>
        <source>&amp;Align Sides By:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="153"/>
        <location filename="../../../scribus/aligndistribute.ui" line="160"/>
        <location filename="../../../scribus/aligndistribute.ui" line="167"/>
        <location filename="../../../scribus/aligndistribute.ui" line="174"/>
        <location filename="../../../scribus/aligndistribute.ui" line="181"/>
        <location filename="../../../scribus/aligndistribute.ui" line="188"/>
        <location filename="../../../scribus/aligndistribute.ui" line="195"/>
        <location filename="../../../scribus/aligndistribute.ui" line="202"/>
        <location filename="../../../scribus/aligndistribute.ui" line="209"/>
        <location filename="../../../scribus/aligndistribute.ui" line="216"/>
        <location filename="../../../scribus/aligndistribute.ui" line="286"/>
        <location filename="../../../scribus/aligndistribute.ui" line="293"/>
        <location filename="../../../scribus/aligndistribute.ui" line="300"/>
        <location filename="../../../scribus/aligndistribute.ui" line="307"/>
        <location filename="../../../scribus/aligndistribute.ui" line="314"/>
        <location filename="../../../scribus/aligndistribute.ui" line="324"/>
        <location filename="../../../scribus/aligndistribute.ui" line="331"/>
        <location filename="../../../scribus/aligndistribute.ui" line="341"/>
        <location filename="../../../scribus/aligndistribute.ui" line="348"/>
        <location filename="../../../scribus/aligndistribute.ui" line="358"/>
        <location filename="../../../scribus/aligndistribute.ui" line="365"/>
        <location filename="../../../scribus/aligndistribute.ui" line="372"/>
        <location filename="../../../scribus/aligndistribute.ui" line="382"/>
        <location filename="../../../scribus/aligndistribute.ui" line="389"/>
        <location filename="../../../scribus/aligndistribute.ui" line="396"/>
        <location filename="../../../scribus/aligndistribute.ui" line="403"/>
        <source>...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="260"/>
        <source>Distribute</source>
        <translation type="unfinished">Dağıt</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="450"/>
        <source>&amp;Distance:</source>
        <translation type="unfinished">&amp;Mesafe:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="511"/>
        <source>Reverse Distribution</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AlignDistributeBase</name>
    <message>
        <source>Align and Distribute</source>
        <translation type="obsolete">Hizala ve Dağıt</translation>
    </message>
    <message>
        <source>Align</source>
        <translation type="obsolete">Hizala</translation>
    </message>
    <message>
        <source>&amp;Selected Guide:</source>
        <translation type="obsolete">Seçili &amp;Kılavuz:</translation>
    </message>
    <message>
        <source>Distribute</source>
        <translation type="obsolete">Dağıt</translation>
    </message>
    <message>
        <source>&amp;Distance:</source>
        <translation type="obsolete">&amp;Mesafe:</translation>
    </message>
</context>
<context>
    <name>AlignDistributePalette</name>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="90"/>
        <source>Align and Distribute</source>
        <translation>Hizala ve Dağıt</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="91"/>
        <source>Align</source>
        <translation type="unfinished">Hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="93"/>
        <source>&amp;Relative to:</source>
        <translation>İl&amp;işkili:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="96"/>
        <source>First Selected</source>
        <translation>İlk Seçilen</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="97"/>
        <source>Last Selected</source>
        <translation>Son Seçilen</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="98"/>
        <source>Page</source>
        <translation>Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="99"/>
        <source>Margins</source>
        <translation>Kenarlıklar</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="101"/>
        <source>Selection</source>
        <translation>Seçim</translation>
    </message>
    <message>
        <source>Align right sides of objects to left side of anchor</source>
        <translation type="obsolete">Align right sides of objects to left side of anchor</translation>
    </message>
    <message>
        <source>Align left sides of objects to right side of anchor</source>
        <translation type="obsolete">Align left sides of objects to right side of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="118"/>
        <source>Align bottoms</source>
        <translation>Altları hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="120"/>
        <source>Align right sides</source>
        <translation>Sağ yanları hizala</translation>
    </message>
    <message>
        <source>Align tops of objects to bottom of anchor</source>
        <translation type="obsolete">Align tops of objects to bottom of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="124"/>
        <source>Center on vertical axis</source>
        <translation type="unfinished">Centre on vertical axis</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="126"/>
        <source>Align left sides</source>
        <translation>Sol yanları hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="128"/>
        <source>Center on horizontal axis</source>
        <translation type="unfinished">Centre on horizontal axis</translation>
    </message>
    <message>
        <source>Align bottoms of objects to top of anchor</source>
        <translation type="obsolete">Align bottoms of objects to top of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="132"/>
        <source>Align tops</source>
        <translation>Üstleri hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="92"/>
        <source>Distribute</source>
        <translation type="unfinished">Dağıt</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="152"/>
        <source>Distribute left sides equidistantly</source>
        <translation type="unfinished">Distribute left sides equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="144"/>
        <source>Distribute bottoms equidistantly</source>
        <translation type="unfinished">Distribute bottoms equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="146"/>
        <source>Distribute centers equidistantly horizontally</source>
        <translation type="unfinished">Distribute centres equidistantly horizontally</translation>
    </message>
    <message>
        <source>Make vertical gaps between objects equal</source>
        <translation type="obsolete">Make vertical gaps between objects equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="154"/>
        <source>Distribute centers equidistantly vertically</source>
        <translation type="unfinished">Distribute centres equidistantly vertically</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="156"/>
        <source>Distribute tops equidistantly</source>
        <translation type="unfinished">Distribute tops equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="142"/>
        <source>Distribute right sides equidistantly</source>
        <translation type="unfinished">Distribute right sides equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="100"/>
        <source>Guide</source>
        <translation>Kılavuz</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="134"/>
        <source>&amp;Selected Guide:</source>
        <translation>Seçili &amp;Kılavuz:</translation>
    </message>
    <message>
        <source>Make horizontal gaps between objects equal</source>
        <translation type="obsolete">Make horizontal gaps between objects equal</translation>
    </message>
    <message>
        <source>Make horizontal gaps between objects equal to the value specified</source>
        <translation type="obsolete">Make horizontal gaps between objects equal to the value specified</translation>
    </message>
    <message>
        <source>Make vertical gaps between objects equal to the value specified</source>
        <translation type="obsolete">Make vertical gaps between objects equal to the value specified</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="166"/>
        <source>&amp;Distance:</source>
        <translation>&amp;Mesafe:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="167"/>
        <source>Distribute the items with the distance specified</source>
        <translation type="unfinished">Distribute the items with the distance specified</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="168"/>
        <source>When distributing by a set distance, reverse the direction of the distribution of items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="169"/>
        <source>None Selected</source>
        <translation>Seçili Yok</translation>
    </message>
    <message>
        <source>Some objects are locked.</source>
        <translation type="obsolete">Bazı nesneler kilitli.</translation>
    </message>
    <message>
        <source>&amp;Unlock All</source>
        <translation type="obsolete">Tümünü Çö&amp;z</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="454"/>
        <source>Y: %1%2</source>
        <translation>Y: %1%2</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="462"/>
        <source>X: %1%2</source>
        <translation>X: %1%2</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="114"/>
        <source>Align right sides of items to left side of anchor</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="105"/>
        <source>&amp;Align Sides By:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="108"/>
        <source>Moving (Preserve Size)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="109"/>
        <source>Resizing (Preserve Opposite Side)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="110"/>
        <source>&lt;qt&gt;When aligning one side of an item:&lt;ul&gt;&lt;li&gt;Always move the other side too (preserve existing width and height), or &lt;/li&gt;&lt;li&gt;Keep the other side fixed (resize the item instead of moving it) whenever possible&lt;/li&gt;&lt;/ul&gt;&lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="116"/>
        <source>Align left sides of items to right side of anchor</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="122"/>
        <source>Align tops of items to bottom of anchor</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="130"/>
        <source>Align bottoms of items to top of anchor</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="137"/>
        <source>Make horizontal gaps between items equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="139"/>
        <source>Make horizontal gaps between items equal to the value specified</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="148"/>
        <source>Make vertical gaps between items equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="150"/>
        <source>Make vertical gaps between items equal to the value specified</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="158"/>
        <source>Make horizontal gaps between items and sides of page equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="164"/>
        <source>Make vertical gaps between items and the top and bottom of page margins equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="162"/>
        <source>Make horizontal gaps between items and sides of page margins equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="160"/>
        <source>Make vertical gaps between items and the top and bottom of page equal</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="103"/>
        <source>&lt;qt&gt;Align relative to the:&lt;ul&gt;&lt;li&gt;First selected item&lt;/li&gt;&lt;li&gt;Second Selected Item&lt;/li&gt;&lt;li&gt;The current page&lt;/li&gt;&lt;li&gt;The margins of the current page&lt;/li&gt;&lt;li&gt;A Guide&lt;/li&gt;&lt;li&gt;The selection&lt;/ul&gt;&lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="112"/>
        <source>The location of the selected guide to align to</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AlignSelect</name>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="110"/>
        <source>Align Text Left</source>
        <translation>Metni Sola Yasla</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="111"/>
        <source>Align Text Right</source>
        <translation>Metni Sağa Yasla</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="112"/>
        <source>Align Text Center</source>
        <translation>Metni Ortala</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="113"/>
        <source>Align Text Justified</source>
        <translation>Metni Hizala</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="114"/>
        <source>Align Text Forced Justified</source>
        <translation>Metni Hizalamaya Zorla</translation>
    </message>
</context>
<context>
    <name>Annot</name>
    <message>
        <location filename="../../../scribus/annot.cpp" line="63"/>
        <source>Field Properties</source>
        <translation>Alan Özellikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="94"/>
        <location filename="../../../scribus/annot.cpp" line="535"/>
        <source>Type:</source>
        <translation>Tip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="98"/>
        <source>Button</source>
        <translation>Düğme</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="98"/>
        <source>Text Field</source>
        <translation>Metin Kutusu</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="98"/>
        <source>Check Box</source>
        <translation>Check Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="98"/>
        <source>Combo Box</source>
        <translation>Combo Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="98"/>
        <source>List Box</source>
        <translation>Liste kutusu</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="113"/>
        <source>Properties</source>
        <translation>Özellikler</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="123"/>
        <source>Name:</source>
        <translation>İsim:</translation>
    </message>
    <message>
        <source>Tool-Tip:</source>
        <translation type="obsolete">Tool-Tip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="148"/>
        <location filename="../../../scribus/annot.cpp" line="276"/>
        <source>Text</source>
        <translation>Metin</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="178"/>
        <source>Border</source>
        <translation>Sınır</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="184"/>
        <source>Color:</source>
        <translation>Renk:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2132"/>
        <source>None</source>
        <translation>Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="199"/>
        <source>Width:</source>
        <translation>En:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="203"/>
        <source>Thin</source>
        <translation>İnce</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="203"/>
        <location filename="../../../scribus/annot.cpp" line="313"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="203"/>
        <source>Wide</source>
        <translation>Geniş</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="211"/>
        <source>Style:</source>
        <translation>Stil:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="215"/>
        <source>Solid</source>
        <translation>Dolu</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="215"/>
        <source>Dashed</source>
        <translation>Kesintili</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="215"/>
        <source>Underline</source>
        <translation>Altı Çizili</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="216"/>
        <source>Beveled</source>
        <translation>Kabartma</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="216"/>
        <source>Inset</source>
        <translation>Çökük</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="226"/>
        <source>Other</source>
        <translation>Diğer</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="232"/>
        <source>Read Only</source>
        <translation>Sadece Okunabilir</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="238"/>
        <source>Required</source>
        <translation>Gerekli</translation>
    </message>
    <message>
        <source>Don&apos;t Export Value</source>
        <translation type="obsolete">Değeri dışarı gönderme</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="250"/>
        <source>Visibility:</source>
        <translation>Görünürlük:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="254"/>
        <source>Visible</source>
        <translation>Görünür</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="254"/>
        <source>Hidden</source>
        <translation>Gizli</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="254"/>
        <source>No Print</source>
        <translation>Yazdırma Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="255"/>
        <source>No View</source>
        <translation>Görüntüleme Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="264"/>
        <source>Appearance</source>
        <translation>Görünüm</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="282"/>
        <source>Text for Button Down</source>
        <translation>Buton Basılı Metni</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="285"/>
        <source>Text for Roll Over</source>
        <translation type="unfinished">Text for Roll Over</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="296"/>
        <source>Icons</source>
        <translation>Simgeler</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="302"/>
        <source>Use Icons</source>
        <translation>Simgeleri Kullan</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="323"/>
        <location filename="../../../scribus/annot.cpp" line="341"/>
        <location filename="../../../scribus/annot.cpp" line="359"/>
        <source>Remove</source>
        <translation>Kaldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="331"/>
        <source>Pressed</source>
        <translation>Basılı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="349"/>
        <source>Roll Over</source>
        <translation type="unfinished">Roll Over</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="368"/>
        <source>Icon Placement...</source>
        <translation>Simge Yerleşimi...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="416"/>
        <source>Highlight</source>
        <translation type="unfinished">Highlight</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="423"/>
        <source>Invert</source>
        <translation type="unfinished">Invert</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="423"/>
        <source>Outlined</source>
        <translation type="unfinished">Outlined</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="423"/>
        <source>Push</source>
        <translation type="unfinished">Push</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="440"/>
        <source>Multi-Line</source>
        <translation type="unfinished">Multi-Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="444"/>
        <source>Password</source>
        <translation>Åžifre</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="451"/>
        <source>Limit of</source>
        <translation type="unfinished">Limit of</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="462"/>
        <source>Characters</source>
        <translation>Karakterler</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="468"/>
        <source>Do Not Scroll</source>
        <translation>Kaydırma</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="472"/>
        <source>Do Not Spell Check</source>
        <translation>İmla denetimi yapma</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="487"/>
        <source>Check Style:</source>
        <translation>Stili kontrol et:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Check</source>
        <translation>Kontrol Et</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Cross</source>
        <translation>Cross</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Diamond</source>
        <translation>Elmas</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Circle</source>
        <translation>Çember</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Star</source>
        <translation>Yıldız</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="490"/>
        <source>Square</source>
        <translation>Kare</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="504"/>
        <source>Default is Checked</source>
        <translation>Öntanımlı işaretli</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="516"/>
        <source>Editable</source>
        <translation>Düzenlenebilir</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="523"/>
        <source>Options</source>
        <translation>Seçenekler</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="539"/>
        <location filename="../../../scribus/annot.cpp" line="2095"/>
        <source>Go To</source>
        <translation>Git</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="540"/>
        <location filename="../../../scribus/annot.cpp" line="2096"/>
        <source>Submit Form</source>
        <translation>Formu Yolla</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="540"/>
        <location filename="../../../scribus/annot.cpp" line="2096"/>
        <source>Reset Form</source>
        <translation>Formu Sıfırla</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="540"/>
        <location filename="../../../scribus/annot.cpp" line="2096"/>
        <source>Import Data</source>
        <translation>Veri al</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="572"/>
        <source>Event:</source>
        <translation>Olay:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="575"/>
        <location filename="../../../scribus/annot.cpp" line="2075"/>
        <source>Mouse Up</source>
        <translation>Mouse Butonu Çekildi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="575"/>
        <location filename="../../../scribus/annot.cpp" line="2075"/>
        <source>Mouse Down</source>
        <translation>Mouse butonu basıldı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="575"/>
        <location filename="../../../scribus/annot.cpp" line="2075"/>
        <source>Mouse Enter</source>
        <translation>Mouse Girdi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="576"/>
        <location filename="../../../scribus/annot.cpp" line="2076"/>
        <source>Mouse Exit</source>
        <translation>Mouse Çıktı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="576"/>
        <location filename="../../../scribus/annot.cpp" line="2076"/>
        <source>On Focus</source>
        <translation>On Focus</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="576"/>
        <location filename="../../../scribus/annot.cpp" line="2076"/>
        <source>On Blur</source>
        <translation>On Blur</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="587"/>
        <source>Script:</source>
        <translation>Script:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="606"/>
        <location filename="../../../scribus/annot.cpp" line="935"/>
        <location filename="../../../scribus/annot.cpp" line="961"/>
        <location filename="../../../scribus/annot.cpp" line="1038"/>
        <location filename="../../../scribus/annot.cpp" line="1113"/>
        <source>Edit...</source>
        <translation>Düzenle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="672"/>
        <source>Submit to URL:</source>
        <translation>URL&apos;ye Gönder:</translation>
    </message>
    <message>
        <source>Submit Data as HTML</source>
        <translation type="obsolete">Veriyi HTML olarak gönder</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="709"/>
        <source>Import Data from:</source>
        <translation>Verileri al:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="612"/>
        <source>Destination</source>
        <translation>Yol</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="618"/>
        <source>To File:</source>
        <translation>Dosyaya:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="625"/>
        <source>Change...</source>
        <translation>Değiştir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="634"/>
        <source>Page:</source>
        <translation>Sayfa:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="648"/>
        <source>X-Pos:</source>
        <translation>X-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="651"/>
        <location filename="../../../scribus/annot.cpp" line="660"/>
        <source> pt</source>
        <translation> pt</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="656"/>
        <source>Y-Pos:</source>
        <translation>Y-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="718"/>
        <source>Action</source>
        <translation>İşlem</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="749"/>
        <source>Field is formatted as:</source>
        <translation>Alan şu şekilde biçimlendirilmiş:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Plain</source>
        <translation>Düz</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Number</source>
        <translation>Sayı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Percentage</source>
        <translation>Yüzde</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Date</source>
        <translation>Tarih
</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Time</source>
        <translation>Zaman</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="752"/>
        <source>Custom</source>
        <translation>Custom</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="770"/>
        <source>Number Format</source>
        <translation>Sayı Biçimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="779"/>
        <location filename="../../../scribus/annot.cpp" line="838"/>
        <source>Decimals:</source>
        <translation>Ondalık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="793"/>
        <source>Use Currency Symbol</source>
        <translation>Parabirimi Sembolü Kullan</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="802"/>
        <source>Prepend Currency Symbol</source>
        <translation type="unfinished">Prepend Currency Symbol</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="806"/>
        <location filename="../../../scribus/annot.cpp" line="849"/>
        <source>Formatting</source>
        <translation>Biçimlendirme</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="829"/>
        <source>Percent Format</source>
        <translation>Yüzde Biçimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="872"/>
        <source>Date Format</source>
        <translation>Tarih Biçimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="898"/>
        <source>Time Format</source>
        <translation>Zaman Biçimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="920"/>
        <source>Custom Scripts</source>
        <translation>Kullanıcı Tanımlı Script</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="932"/>
        <source>Format:</source>
        <translation>Biçim:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="958"/>
        <source>Keystroke:</source>
        <translation type="unfinished">Keystroke:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="982"/>
        <source>Format</source>
        <translation>Biçim</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="998"/>
        <source>Value is not validated</source>
        <translation>Değer doğrulanmadı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1007"/>
        <source>Value must be greater than or equal to:</source>
        <translation>Değer şundan büyük ya da eşit olmalı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1011"/>
        <source>and less or equal to:</source>
        <translation>ve küçük yada eşit:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1022"/>
        <source>Custom validate script:</source>
        <translation>Kullanıcı tanımlı doğrulama scripti:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1043"/>
        <source>Validate</source>
        <translation>Doğrulama</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1060"/>
        <source>Value is not calculated</source>
        <translation>Değer hesaplanmadı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1069"/>
        <source>Value is the</source>
        <translation>Değer ..dir</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1074"/>
        <source>sum</source>
        <translation>toplam</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1074"/>
        <source>product</source>
        <translation>ürün</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1074"/>
        <source>average</source>
        <translation>ortalama</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1074"/>
        <source>minimum</source>
        <translation>minimum</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1075"/>
        <source>maximum</source>
        <translation>maximum</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1082"/>
        <source>of the following fields:</source>
        <translation>bu alanların:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1092"/>
        <source>Pick...</source>
        <translation>Seç...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1097"/>
        <source>Custom calculation script:</source>
        <translation>Kullanıcı tanımlı hesaplama scripti:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1117"/>
        <source>Calculate</source>
        <translation>Hesapla</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1136"/>
        <source>OK</source>
        <translation>Tamam</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1140"/>
        <source>Cancel</source>
        <translation>İptal</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1193"/>
        <source>Enter a comma separated list of fields here</source>
        <translation>Buraya virgülle ayrılmış alanların listesini girin</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1194"/>
        <source>You need at least the Icon for Normal to use Icons for Buttons</source>
        <translation>You need at least the Icon for Normal to use Icons for Buttons</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1304"/>
        <location filename="../../../scribus/annot.cpp" line="1335"/>
        <location filename="../../../scribus/annot.cpp" line="1359"/>
        <location filename="../../../scribus/annot.cpp" line="2290"/>
        <source>Open</source>
        <translation>Aç</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1479"/>
        <source>Example:</source>
        <translation>Örnek:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2124"/>
        <source>Selection Change</source>
        <translation>Seçim Değişti</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="154"/>
        <source>Font for use with PDF 1.3:</source>
        <translation>PDF 1.3 ile kullanılacak yazıtipi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1191"/>
        <location filename="../../../scribus/annot.cpp" line="1192"/>
        <source>Flag is ignored for PDF 1.3</source>
        <translation>PDF 1.3 için geçerli değil</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2290"/>
        <source>PDF Files (*.pdf);;All Files (*)</source>
        <translation>PDF-Belgeleri (*.pdf);;Tüm Dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="539"/>
        <location filename="../../../scribus/annot.cpp" line="2095"/>
        <location filename="../../../scribus/annot.cpp" line="2133"/>
        <source>JavaScript</source>
        <translation>JavaScript</translation>
    </message>
    <message>
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;All Files (*)</source>
        <translation type="obsolete">Resimler (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;Tüm Dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="423"/>
        <source>None</source>
        <comment>highlight</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="539"/>
        <location filename="../../../scribus/annot.cpp" line="2095"/>
        <source>None</source>
        <comment>action</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="136"/>
        <source>Tooltip:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="244"/>
        <source>Do Not Export Value</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1336"/>
        <location filename="../../../scribus/annot.cpp" line="1360"/>
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1305"/>
        <source>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="627"/>
        <source>Export absolute Filename</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="684"/>
        <source>Submit format:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="687"/>
        <source>FDF</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="687"/>
        <source>HTML</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="687"/>
        <source>XFDF</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="687"/>
        <source>PDF</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>Annota</name>
    <message>
        <location filename="../../../scribus/annota.cpp" line="47"/>
        <source>Annotation Properties</source>
        <translation>Not Özellikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="77"/>
        <source>Text</source>
        <translation>Metin</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="78"/>
        <source>Link</source>
        <translation>Link</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="79"/>
        <source>External Link</source>
        <translation>Dışarıya Bağlantı</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="80"/>
        <source>External Web-Link</source>
        <translation>Dışarıya Bağlantı (web)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="118"/>
        <source>Destination</source>
        <translation>Yol</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="168"/>
        <location filename="../../../scribus/annota.cpp" line="177"/>
        <source> pt</source>
        <translation> pt</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="409"/>
        <source>Open</source>
        <translation>Aç</translation>
    </message>
    <message>
        <source>PDF-Documents (*.pdf);;All Files (*)</source>
        <translation type="obsolete">PDF-Belgeleri (*.pdf);;Tüm Dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="82"/>
        <source>&amp;Type:</source>
        <translation>&amp;Tip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="129"/>
        <source>C&amp;hange...</source>
        <translation>D&amp;eğiştir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="147"/>
        <source>&amp;Page:</source>
        <translation>S&amp;ayfa:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="171"/>
        <source>&amp;X-Pos</source>
        <translation>&amp;X-Pos</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="179"/>
        <source>&amp;Y-Pos:</source>
        <translation>&amp;Y-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="409"/>
        <source>%1;;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="131"/>
        <source>Export absolute Filename</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ApplyMasterPageDialog</name>
    <message>
        <source>Normal</source>
        <translation type="obsolete">Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="267"/>
        <source>Apply Master Page</source>
        <translation>Mastar sayfayı uygula</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="268"/>
        <source>&amp;Master Page:</source>
        <translation>&amp;Mastar Sayfa:</translation>
    </message>
    <message>
        <source>Apply To</source>
        <translation type="obsolete">Buna uygula</translation>
    </message>
    <message>
        <source>Current &amp;page</source>
        <translation type="obsolete">&amp;Mevcut sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="271"/>
        <source>Alt+P</source>
        <translation>Alt+P</translation>
    </message>
    <message>
        <source>&amp;Even pages</source>
        <translation type="obsolete">Çif&amp;t numaralı sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="273"/>
        <source>Alt+E</source>
        <translation>Alt+E</translation>
    </message>
    <message>
        <source>O&amp;dd pages</source>
        <translation type="obsolete">&amp;Tek numaraları sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="275"/>
        <source>Alt+D</source>
        <translation>Alt+D</translation>
    </message>
    <message>
        <source>&amp;All pages</source>
        <translation type="obsolete">&amp;Tüm sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="277"/>
        <source>Alt+A</source>
        <translation>Alt+A</translation>
    </message>
    <message>
        <source>&amp;Within range</source>
        <translation type="obsolete">Sınır&amp;ı içinde</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="279"/>
        <source>Alt+W</source>
        <translation>Alt+W</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="281"/>
        <source>to</source>
        <translation>to</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="283"/>
        <source>Alt+O</source>
        <translation>Alt+O</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="285"/>
        <source>Alt+C</source>
        <translation>Alt+C</translation>
    </message>
    <message>
        <source>Apply the selected template to even, odd or all pages within the following range</source>
        <translation type="obsolete">Seçili şablonu aşağıdaki sınırlar içindeki tek sayılı,çift sayılı ya da tüm sayfalara uygula</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="280"/>
        <source>Apply the selected master page to even, odd or all pages within the following range</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="52"/>
        <source>Possible Hyphenation</source>
        <translation type="unfinished">Muhtemel Tireleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="269"/>
        <source>Apply to</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="270"/>
        <source>Current &amp;Page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="272"/>
        <source>&amp;Even Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="274"/>
        <source>O&amp;dd Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="276"/>
        <source>&amp;All Pages</source>
        <translation type="unfinished">&amp;Tüm sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="278"/>
        <source>&amp;Within Range</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ArrowChooser</name>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
</context>
<context>
    <name>AspellPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="64"/>
        <source>Spell-checking support</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="66"/>
        <source>Adds support for spell-checking via aspell. Languages can be chosen from among the installed aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="70"/>
        <source>0.1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="32"/>
        <source>Spell Checker</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="97"/>
        <source>Aspell Plugin Error</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AspellPluginBase</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="13"/>
        <source>Spell Check</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="118"/>
        <source>Replacement:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="278"/>
        <source>&amp;Add Word</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="306"/>
        <source>&amp;Change</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <source>&amp;Exit</source>
        <translation type="obsolete">&amp;Exit</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="45"/>
        <source>Not in Dictionary:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="70"/>
        <source>Word that was not found in the active dictionary</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="125"/>
        <source>Replacement text for the current word that was not found in the dictionary</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="181"/>
        <source>Active Dictionary: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="194"/>
        <source>The currently active dictionary. Scribus uses aspell for dictionary support.&lt;br /&gt;If you require updated or more dictionaries, you should install them via your system&apos;s installation system or package manager.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="225"/>
        <source>Ignore the current text not found in the active dictionary</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="228"/>
        <source>&amp;Ignore</source>
        <translation type="unfinished">&amp;Yoksay</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="247"/>
        <source>Ignore all occurrences of the current text not found in the active dictionary</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="250"/>
        <source>I&amp;gnore All</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="275"/>
        <source>Add the current word to the your personal spelling dictionary for future use</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="303"/>
        <source>Change the current word that was not found to that shown in the replacement entry field</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="331"/>
        <source>Change all occurrences of the current word in the text that was not found to that shown in the replacement entry field</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="334"/>
        <source>Change A&amp;ll</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="372"/>
        <source>Close</source>
        <translation type="unfinished">Kapat</translation>
    </message>
</context>
<context>
    <name>AspellPluginImpl</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="39"/>
        <source>Loaded </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="39"/>
        <source>default </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="39"/>
        <source> aspell dictionary.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="382"/>
        <source>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of &quot;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="384"/>
        <source> by adding it to the session list.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="405"/>
        <source>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="258"/>
        <source>Spelling check complete</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="97"/>
        <source>Spell Checker Plugin Failed to Initialise.
Configuration invalid</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="104"/>
        <source>Spell Checker Plugin Failed to Initialise.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="106"/>
        <source>No Aspell dictionaries could be found.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="259"/>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="451"/>
        <source>Spell Checker</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="72"/>
        <source>No available Aspell dictionaries found. Install some, please.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="452"/>
        <source>Do you want start from the beginning of the selection with new language selected?</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>AutoformButtonGroup</name>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="36"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1281"/>
        <source>Arrows</source>
        <translation type="unfinished">
Oklar</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="44"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1282"/>
        <source>Flow Chart</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="53"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1283"/>
        <source>Jigsaw</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="66"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1284"/>
        <source>Specials</source>
        <translation type="unfinished">Özel</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="21"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1280"/>
        <source>Default Shapes</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>Barcode</name>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="22"/>
        <source>&amp;Barcode...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="39"/>
        <source>Scribus frontend for Pure PostScript Barcode Writer</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>BarcodeGenerator</name>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="41"/>
        <source>12 or 13 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="43"/>
        <source>8 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="45"/>
        <source>11 or 12 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="47"/>
        <source>7 or 8 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="49"/>
        <source>5 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="51"/>
        <source>2 digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="58"/>
        <source>Variable number of characters, digits and any of the symbols -. *$/+%.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="63"/>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="67"/>
        <source>Variable number of ASCII characters and special function symbols, starting with the appropriate start character for the initial character set. UCC/EAN-128s must have a mandatory FNC 1 symbol immediately following the start character.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="70"/>
        <source>Variable number of digits and any of the symbols -$:/.+ABCD.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="74"/>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="82"/>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="85"/>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="93"/>
        <source>Variable number of digits</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="78"/>
        <source>Variable number of digits. An ITF-14 is 14 characters and does not have a check digit</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="89"/>
        <source>Variable number of digits and capital letters</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="98"/>
        <source>Variable number of hexadecimal characters</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="102"/>
        <source>Variable number of characters, digits and any symbols.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="320"/>
        <source>Error opening file: %1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="353"/>
        <source>Barcode incomplete</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="54"/>
        <source>12 or 13 digits with dashes. The legacy ISBN-10 format accepts 9 or 10 digits with dashes, but this standard was depreciated for public use after 1st January 2007. (Note: To convert an old ISBN-10 to a new ISBN-13, prefix 978- to the first 9 digits, e.g. 1-56592-479-7 -&gt; 978-1-56592-479. The final check-digit will be calculated automatically.)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="109"/>
        <source>Select Type</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="149"/>
        <source>Select Barcode Type</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>BarcodeGeneratorBase</name>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="140"/>
        <source>&amp;Type:</source>
        <translation type="unfinished">&amp;Tip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="120"/>
        <source>Co&amp;de:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="133"/>
        <source>Select one of the available barcode type here</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="113"/>
        <source>The numeric representation of the code itself. See the help message below</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="103"/>
        <source>Reset the barcode samples</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="81"/>
        <source>Alt+I</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="75"/>
        <source>If checked, there will be numbers in the barcode too</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="68"/>
        <source>Alt+G</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="62"/>
        <source>Draw arrows to be sure of space next the code</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="55"/>
        <source>Alt+N</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="49"/>
        <source>Generate and include a checksum in barcode</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="42"/>
        <source>Alt+U</source>
        <translation type="unfinished">Alt+U</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="36"/>
        <source>Include the checksum digit in the barcode text</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="156"/>
        <source>Colors</source>
        <translation type="unfinished">Renkler</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="184"/>
        <source>&amp;Background</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="187"/>
        <source>Alt+B</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="181"/>
        <source>Background color - under the code lines</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="216"/>
        <source>&amp;Lines</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="219"/>
        <source>Alt+L</source>
        <translation type="unfinished">Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="213"/>
        <source>Color of the lines in barcode</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="248"/>
        <source>&amp;Text</source>
        <translation type="unfinished">&amp;Metin</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="251"/>
        <source>Alt+T</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="245"/>
        <source>Color of the text and numbers</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="280"/>
        <source>Hints and help is shown here</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="290"/>
        <source>Preview of the result. 72dpi sample.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="15"/>
        <source>Insert Barcode</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="24"/>
        <source>Format</source>
        <translation type="unfinished">Biçim</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="39"/>
        <source>Incl&amp;ude Checksum Digit</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="52"/>
        <source>I&amp;nclude Checksum</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="65"/>
        <source>&amp;Guard Whitespace</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="78"/>
        <source>&amp;Include Text in Barcode</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>Biblio</name>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1458"/>
        <source>Scrapbook</source>
        <translation>Albüm</translation>
    </message>
    <message>
        <source>Scrapbooks (*.scs);;All Files (*)</source>
        <translation type="obsolete">Albümler (*.scs);;Tüm Dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="843"/>
        <source>Delete</source>
        <translation>Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1232"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1240"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1318"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1390"/>
        <source>Object</source>
        <translation>Nesne</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="916"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1244"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1393"/>
        <source>New Entry</source>
        <translation>Yeni Girdi</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="841"/>
        <source>Rename</source>
        <translation>Yeniden isimlendir</translation>
    </message>
    <message>
        <source>&amp;New</source>
        <translation type="obsolete">Y&amp;eni</translation>
    </message>
    <message>
        <source>&amp;Load...</source>
        <translation type="obsolete">&amp;Yükle...</translation>
    </message>
    <message>
        <source>&amp;Save</source>
        <translation type="obsolete">&amp;Kaydet</translation>
    </message>
    <message>
        <source>Save &amp;As...</source>
        <translation type="obsolete">&amp;Farklı kaydet...</translation>
    </message>
    <message>
        <source>&amp;Close</source>
        <translation type="obsolete">&amp;Kapat</translation>
    </message>
    <message>
        <source>&amp;Small</source>
        <translation type="obsolete">&amp;Küçük</translation>
    </message>
    <message>
        <source>&amp;Medium</source>
        <translation type="obsolete">&amp;Orta</translation>
    </message>
    <message>
        <source>&amp;Large</source>
        <translation type="obsolete">&amp;Büyük</translation>
    </message>
    <message>
        <source>&amp;File</source>
        <translation type="obsolete">&amp;Dosya</translation>
    </message>
    <message>
        <source>&amp;Preview</source>
        <translation type="obsolete">Öni&amp;zleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="916"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1103"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1244"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1393"/>
        <source>&amp;Name:</source>
        <translation>İ&amp;sim:</translation>
    </message>
    <message>
        <source>Name &quot;%1&quot; is not unique.
Please choose another.</source>
        <translation type="obsolete">&quot;%1&quot; ismi kullanımda.
Başka seçin.</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="664"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="703"/>
        <source>Choose a Scrapbook Directory</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="743"/>
        <source>Choose a scrapbook file to import</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="765"/>
        <source>Choose a Directory</source>
        <translation type="unfinished">Dizin Seçin</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="848"/>
        <source>Copy To:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="849"/>
        <source>Move To:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1459"/>
        <source>Create a new scrapbook page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1460"/>
        <source>Load an existing scrapbook</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1461"/>
        <source>Save the selected scrapbook</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1462"/>
        <source>Import a scrapbook file from Scribus &lt;=1.3.2</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1463"/>
        <source>Close the selected scrapbook</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="554"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="555"/>
        <source>Main</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="557"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="558"/>
        <source>Copied Items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1103"/>
        <source>New Name</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="745"/>
        <source>Scrapbook (*.scs *.SCS)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="837"/>
        <source>Paste to Page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="892"/>
        <source>Save as...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="895"/>
        <source>Close</source>
        <translation type="unfinished">Kapat</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="898"/>
        <source>Delete Contents</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1058"/>
        <source>Do you really want to delete all entries?</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>BookMView</name>
    <message>
        <source>Bookmarks</source>
        <translation type="obsolete">Yer imleri</translation>
    </message>
    <message>
        <source>Move Bookmark</source>
        <translation type="obsolete">Yerimini taşı</translation>
    </message>
    <message>
        <source>Insert Bookmark</source>
        <translation type="obsolete">Yerimi ekle</translation>
    </message>
    <message>
        <source>Cancel</source>
        <translation type="obsolete">İptal</translation>
    </message>
</context>
<context>
    <name>BookPalette</name>
    <message>
        <location filename="../../../scribus/bookmarkpalette.cpp" line="51"/>
        <source>Bookmarks</source>
        <translation>Yer imleri</translation>
    </message>
</context>
<context>
    <name>ButtonIcon</name>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="29"/>
        <source>Icon Placement</source>
        <translation>Icon Placement</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="38"/>
        <source>Layout:</source>
        <translation>Mizanpaj:</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Caption only</source>
        <translation>Caption only</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Icon only</source>
        <translation>Sadece simge</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Caption below Icon</source>
        <translation>Simge altında başlık</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Caption above Icon</source>
        <translation>Simge üstünde başlık</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption right to Icon</source>
        <translation>Simgenin sağında başlık</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption left to Icon</source>
        <translation>Simgenin solunda başlık</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption overlays Icon</source>
        <translation>Simgeyi kaplayan başlık</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="50"/>
        <source>Scale:</source>
        <translation>Ölçeklendir:</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="55"/>
        <source>Always</source>
        <translation>Daima</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="56"/>
        <source>When Icon is too big</source>
        <translation>Simge çok büyükse</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="56"/>
        <source>Never</source>
        <translation>Asla</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="63"/>
        <source>Scale How:</source>
        <translation>Nasıl ölçeklendirilecek:</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="66"/>
        <source>Proportional</source>
        <translation>Orantılı</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="67"/>
        <source>Non Proportional</source>
        <translation>Orantısı</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="90"/>
        <source>Icon</source>
        <translation>Simge</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="117"/>
        <source>OK</source>
        <translation>Tamam</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="121"/>
        <source>Cancel</source>
        <translation>İptal</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="124"/>
        <source>Reset</source>
        <translation>Sıfırla</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="55"/>
        <source>When Icon is too small</source>
        <translation>Simge çok küçükse</translation>
    </message>
</context>
<context>
    <name>CMSPrefs</name>
    <message>
        <source>System Profiles</source>
        <translation type="obsolete">Sistem Profilleri</translation>
    </message>
    <message>
        <source>Rendering Intents</source>
        <translation type="obsolete">Rendering Intents</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="69"/>
        <source>Perceptual</source>
        <translation>Algısal</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="69"/>
        <source>Relative Colorimetric</source>
        <translation>Bağıl renk-ölçüsel</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="70"/>
        <source>Saturation</source>
        <translation>Doygunluk</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="70"/>
        <source>Absolute Colorimetric</source>
        <translation>Mutlak Renk-Ölçüsel</translation>
    </message>
    <message>
        <source>Default color profile for solid colors on the page</source>
        <translation type="obsolete">Default colour profile for solid colours on the page</translation>
    </message>
    <message>
        <source>Color profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source>
        <translation type="obsolete">Colour profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation>
    </message>
    <message>
        <source>Color profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source>
        <translation type="obsolete">Colour profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation>
    </message>
    <message>
        <source>Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</source>
        <translation type="obsolete">Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</translation>
    </message>
    <message>
        <source>Default rendering intent for your monitor. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="obsolete">Default rendering intent for your monitor. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
    </message>
    <message>
        <source>Default rendering intent for your printer. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="obsolete">Default rendering intent for your printer. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
    </message>
    <message>
        <source>Enable &apos;soft proofing&apos; of how your document colors will print,
based on the chosen printer profile.</source>
        <translation type="obsolete">Enable &apos;soft proofing&apos; of how your document colours will print,
based on the chosen printer profile.</translation>
    </message>
    <message>
        <source>Method of showing colors on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</source>
        <translation type="obsolete">Method of showing colours on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</translation>
    </message>
    <message>
        <source>&amp;Activate Color Management</source>
        <translation type="obsolete">Renk Yönetimini et&amp;kinleştir</translation>
    </message>
    <message>
        <source>&amp;Solid Colors:</source>
        <translation type="obsolete">&amp;Solid Colours:</translation>
    </message>
    <message>
        <source>&amp;Monitor:</source>
        <translation type="obsolete">&amp;Monitör:</translation>
    </message>
    <message>
        <source>P&amp;rinter:</source>
        <translation type="obsolete">&amp;Yazıcı:</translation>
    </message>
    <message>
        <source>M&amp;onitor:</source>
        <translation type="obsolete">M&amp;onitor:</translation>
    </message>
    <message>
        <source>Pr&amp;inter:</source>
        <translation type="obsolete">&amp;Yazıcı:</translation>
    </message>
    <message>
        <source>Sim&amp;ulate Printer on the Screen</source>
        <translation type="obsolete">Yazıcıyı ekran üzerinde &amp;simule et</translation>
    </message>
    <message>
        <source>Mark Colors out of &amp;Gamut</source>
        <translation type="obsolete">Mark Colours out of &amp;Gamut</translation>
    </message>
    <message>
        <source>Use &amp;Blackpoint Compensation</source>
        <translation type="obsolete">Use &amp;Blackpoint Compensation</translation>
    </message>
    <message>
        <source>&amp;RGB Pictures:</source>
        <translation type="obsolete">&amp;RGB Resimler:</translation>
    </message>
    <message>
        <source>&amp;CMYK Pictures:</source>
        <translation type="obsolete">&amp;CMYK Resimler:</translation>
    </message>
    <message>
        <source>Default color profile for imported CMYK images</source>
        <translation type="obsolete">CMYK Resimler için öntanımlı renk profili </translation>
    </message>
    <message>
        <source>Default color profile for imported RGB images</source>
        <translation type="obsolete">RGB Resimler için öntanımlı renk profili </translation>
    </message>
    <message>
        <source>Images:</source>
        <translation type="obsolete">Resimler:</translation>
    </message>
</context>
<context>
    <name>CMSPrefsBase</name>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="19"/>
        <source>Form</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="40"/>
        <source>&amp;Activate Color Management</source>
        <translation type="unfinished">Renk Yönetimini et&amp;kinleştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="50"/>
        <source>System Profiles</source>
        <translation type="unfinished">Sistem Profilleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="74"/>
        <source>&amp;RGB Images:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="90"/>
        <source>Default color profile for imported RGB images</source>
        <translation type="unfinished">RGB Resimler için öntanımlı renk profili </translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="97"/>
        <source>&amp;CMYK Images:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="113"/>
        <source>Default color profile for imported CMYK images</source>
        <translation type="unfinished">CMYK Resimler için öntanımlı renk profili </translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="120"/>
        <source>&amp;RGB Solid Colors:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="136"/>
        <source>Default color profile for solid RGB colors on the page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="143"/>
        <source>&amp;CMYK Solid Colors:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="159"/>
        <source>Default color profile for solid CMYK colors on the page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="166"/>
        <source>&amp;Monitor:</source>
        <translation type="unfinished">&amp;Monitör:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="182"/>
        <source>Color profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source>
        <translation type="unfinished">Colour profile that you have generated or received from the manufacturer.
This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="190"/>
        <source>P&amp;rinter:</source>
        <translation type="unfinished">&amp;Yazıcı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="206"/>
        <source>Color profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source>
        <translation type="unfinished">Colour profile for your printer model from the manufacturer.
This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="220"/>
        <source>Rendering Intents</source>
        <translation type="unfinished">Rendering Intents</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="244"/>
        <source>Images:</source>
        <translation type="unfinished">Resimler:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="260"/>
        <source>Default rendering intent for images. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="268"/>
        <source>Sol&amp;id Colors:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="284"/>
        <source>Default rendering intent for solid colors. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="298"/>
        <source>Enable &apos;soft proofing&apos; of how your document colors will print,
based on the chosen printer profile.</source>
        <translation type="unfinished">Enable &apos;soft proofing&apos; of how your document colours will print,
based on the chosen printer profile.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="302"/>
        <source>Sim&amp;ulate Printer on the Screen</source>
        <translation type="unfinished">Yazıcıyı ekran üzerinde &amp;simule et</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="329"/>
        <source>Simulate a full color managed environment :
all colors, rgb or cmyk, are converted to printer color space.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="333"/>
        <source>Convert all colors to printer space</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="340"/>
        <source>Method of showing colors on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</source>
        <translation type="unfinished">Method of showing colours on the screen which may not print properly.
This requires very accurate profiles and serves only as a warning.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="344"/>
        <source>Mark Colors out of &amp;Gamut</source>
        <translation type="unfinished">Mark Colours out of &amp;Gamut</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="357"/>
        <source>Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</source>
        <translation type="unfinished">Black Point Compensation is a method of improving contrast in photos.
It is recommended that you enable this if you have photos in your document.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="361"/>
        <source>Use &amp;Blackpoint Compensation</source>
        <translation type="unfinished">Use &amp;Blackpoint Compensation</translation>
    </message>
</context>
<context>
    <name>CMYKChoose</name>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="87"/>
        <source>Edit Color</source>
        <translation>Renk Düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="111"/>
        <location filename="../../../scribus/cmykfw.cpp" line="654"/>
        <location filename="../../../scribus/cmykfw.cpp" line="673"/>
        <location filename="../../../scribus/cmykfw.cpp" line="892"/>
        <location filename="../../../scribus/cmykfw.cpp" line="899"/>
        <source>CMYK</source>
        <translation>CMYK</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="112"/>
        <location filename="../../../scribus/cmykfw.cpp" line="409"/>
        <location filename="../../../scribus/cmykfw.cpp" line="904"/>
        <source>RGB</source>
        <translation>RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="113"/>
        <location filename="../../../scribus/cmykfw.cpp" line="757"/>
        <source>Web Safe RGB</source>
        <translation>Web Safe RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="136"/>
        <source>New</source>
        <translation>Yeni</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="153"/>
        <source>Old</source>
        <translation>Eski</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="261"/>
        <location filename="../../../scribus/cmykfw.cpp" line="698"/>
        <source>C:</source>
        <translation>C:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="288"/>
        <location filename="../../../scribus/cmykfw.cpp" line="699"/>
        <source>M:</source>
        <translation>M:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="315"/>
        <location filename="../../../scribus/cmykfw.cpp" line="700"/>
        <source>Y:</source>
        <translation>Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="342"/>
        <source>K:</source>
        <translation>K:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="438"/>
        <source>Dynamic Color Bars</source>
        <translation>Dinamik Renk Çubukları</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="436"/>
        <source>Static Color Bars</source>
        <translation>Statik Renk Çubukları</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="742"/>
        <source>R:</source>
        <translation>R:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="743"/>
        <source>G:</source>
        <translation>G:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="744"/>
        <source>B:</source>
        <translation>B:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="283"/>
        <location filename="../../../scribus/cmykfw.cpp" line="310"/>
        <location filename="../../../scribus/cmykfw.cpp" line="337"/>
        <location filename="../../../scribus/cmykfw.cpp" line="364"/>
        <location filename="../../../scribus/cmykfw.cpp" line="695"/>
        <location filename="../../../scribus/cmykfw.cpp" line="696"/>
        <location filename="../../../scribus/cmykfw.cpp" line="697"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <source>HSV-Colormap</source>
        <translation type="obsolete">HSV-Colourmap</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="96"/>
        <source>&amp;Name:</source>
        <translation>İ&amp;sim:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="106"/>
        <source>Color &amp;Model</source>
        <translation>Renk &amp;Modeli</translation>
    </message>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="120"/>
        <source>Is Spot Color</source>
        <translation type="unfinished">Is Spot Colour</translation>
    </message>
    <message>
        <source>Is Registration Color</source>
        <translation type="obsolete">Is Registration Colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="995"/>
        <source>You cannot create a color named &quot;%1&quot;.
It is a reserved name for transparent color</source>
        <translation>&quot;%1&quot; ismiyle renk oluşturamazsınız.
Bu isim şeffaflık için ayrılmıştır</translation>
    </message>
    <message>
        <source>Name of the color is not unique</source>
        <translation type="obsolete">Renk adı zaten mevcut</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="1004"/>
        <source>The name of the color already exists,
please choose another one.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="385"/>
        <source>Choosing this will make this color a spot color, thus creating another spot when creating plates or separations. This is used most often when a logo or other color needs exact representation or cannot be replicated with CMYK inks. Metallic and fluorescent inks are good examples which cannot be easily replicated with CMYK inks.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="777"/>
        <location filename="../../../scribus/cmykfw.cpp" line="778"/>
        <source>If color management is enabled, a triangle warning indicator is a warning that the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Color Management.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="988"/>
        <source>You cannot create a color without a name
Please give it a name</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="191"/>
        <source>HSV Color Map</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CStyleP</name>
    <message>
        <source>Colors</source>
        <translation type="obsolete">Renkler</translation>
    </message>
</context>
<context>
    <name>CWDialog</name>
    <message>
        <source>Normal Vision</source>
        <translation type="obsolete">Normal Görüş</translation>
    </message>
    <message>
        <source>Protanopia (Red)</source>
        <translation type="obsolete">Protanopia (Kırmızı Körlüğü)</translation>
    </message>
    <message>
        <source>Deuteranopia (Green)</source>
        <translation type="obsolete">Deuteranopia (Yeşil Körlüğü)</translation>
    </message>
    <message>
        <source>Tritanopia (Blue)</source>
        <translation type="obsolete">Tritanopia (Mavi Körlüğü)</translation>
    </message>
    <message>
        <source>Full Color Blindness</source>
        <translation type="obsolete">Tam Renk Körlüğü</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="319"/>
        <source>Merging colors</source>
        <translation type="unfinished">Merging colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="325"/>
        <source>Error: </source>
        <translation type="unfinished">Hata: </translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="325"/>
        <source>Color %1 exists already!</source>
        <translation type="unfinished">Renk %1 zaten mevcut!</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="330"/>
        <source>Color %1 appended.</source>
        <translation type="unfinished">Renk %1 eklendi.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="334"/>
        <source>Now opening the color manager.</source>
        <translation type="unfinished">Renk Yönetimi açılıyor.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="337"/>
        <source>Color Merging</source>
        <translation type="unfinished">Renk Birleştirme</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="486"/>
        <source>Unable to find the requested color. You have probably selected black, gray or white. There is no way to process this color.</source>
        <translation type="unfinished">Unable to find the requested colour. You have probably selected black, gray or white. There is no way to process this colour.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="15"/>
        <source>Color Wheel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="45"/>
        <source>Click the wheel to get the base color. Its color model depends on the chosen tab.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="52"/>
        <source>Result Colors</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="77"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="322"/>
        <source>CMYK</source>
        <translation type="unfinished">CMYK</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="82"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="543"/>
        <source>RGB</source>
        <translation type="unfinished">RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="87"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="729"/>
        <source>HSV</source>
        <translation type="unfinished">HSV</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="106"/>
        <source>Colors of your chosen color scheme.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="116"/>
        <source>Color Scheme Method</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="142"/>
        <source>Angle:</source>
        <translation type="unfinished">Açı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="152"/>
        <source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source>
        <translation type="unfinished">Difference between the selected value and the counted ones. Refer to documentation for more information.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="167"/>
        <source>Select one of the methods to create a color scheme. Refer to documentation for more information.</source>
        <translation type="unfinished">Select one of the methods to create a colour scheme. Refer to documentation for more information.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="201"/>
        <source>Merge created colors into the document colors</source>
        <translation type="unfinished">Oluşturulan renkleri belge renkleriyle birleştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="204"/>
        <source>&amp;Merge</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="207"/>
        <source>Alt+M</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="214"/>
        <source>Replace created colors in the document colors</source>
        <translation type="unfinished">Oluşturulan renkleri belge renkleriyle değiş</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="217"/>
        <source>&amp;Replace</source>
        <translation type="unfinished">&amp;Değiştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="220"/>
        <source>Alt+R</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="227"/>
        <source>Leave colors untouched</source>
        <translation type="unfinished">Renkleri olduğu gibi bırak</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="230"/>
        <source>&amp;Cancel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="233"/>
        <source>Alt+C</source>
        <translation type="unfinished">Alt+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="242"/>
        <source>Preview:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="266"/>
        <source>Sample color scheme.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="285"/>
        <source>Simulate common vision defects here. Select type of the defect.</source>
        <translation type="unfinished">Simulate common vision defects here. Select type of the defect.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="292"/>
        <source>Vision Defect Type:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="342"/>
        <source>C:</source>
        <translation type="unfinished">C:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="352"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="382"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="412"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="442"/>
        <source> %</source>
        <translation type="unfinished"> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="372"/>
        <source>M:</source>
        <translation type="unfinished">M:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="402"/>
        <source>Y:</source>
        <translation type="unfinished">Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="432"/>
        <source>K:</source>
        <translation type="unfinished">K:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="462"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="838"/>
        <source>RGB:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="498"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="685"/>
        <source>HSV:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="571"/>
        <source>R:</source>
        <translation type="unfinished">R:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="598"/>
        <source>G:</source>
        <translation type="unfinished">G:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="625"/>
        <source>B:</source>
        <translation type="unfinished">B:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="652"/>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="874"/>
        <source>CMYK:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="757"/>
        <source>H:</source>
        <translation type="unfinished">H:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="784"/>
        <source>S:</source>
        <translation type="unfinished">S:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="811"/>
        <source>V:</source>
        <translation type="unfinished">V:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="918"/>
        <source>Document</source>
        <translation type="unfinished">Belge</translation>
    </message>
</context>
<context>
    <name>CWDialogBase</name>
    <message>
        <source>CMYK</source>
        <translation type="obsolete">CMYK</translation>
    </message>
    <message>
        <source>C:</source>
        <translation type="obsolete">C:</translation>
    </message>
    <message>
        <source>M:</source>
        <translation type="obsolete">M:</translation>
    </message>
    <message>
        <source>Y:</source>
        <translation type="obsolete">Y:</translation>
    </message>
    <message>
        <source>K:</source>
        <translation type="obsolete">K:</translation>
    </message>
    <message>
        <source>RGB</source>
        <translation type="obsolete">RGB</translation>
    </message>
    <message>
        <source>R:</source>
        <translation type="obsolete">R:</translation>
    </message>
    <message>
        <source>G:</source>
        <translation type="obsolete">G:</translation>
    </message>
    <message>
        <source>B:</source>
        <translation type="obsolete">B:</translation>
    </message>
    <message>
        <source>Document</source>
        <translation type="obsolete">Belge</translation>
    </message>
    <message>
        <source>Select one of the methods to create a color scheme. Refer to documentation for more information.</source>
        <translation type="obsolete">Select one of the methods to create a colour scheme. Refer to documentation for more information.</translation>
    </message>
    <message>
        <source>Angle:</source>
        <translation type="obsolete">Açı:</translation>
    </message>
    <message>
        <source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source>
        <translation type="obsolete">Difference between the selected value and the counted ones. Refer to documentation for more information.</translation>
    </message>
    <message>
        <source>Merge created colors into the document colors</source>
        <translation type="obsolete">Oluşturulan renkleri belge renkleriyle birleştir</translation>
    </message>
    <message>
        <source>&amp;Replace</source>
        <translation type="obsolete">&amp;Değiştir</translation>
    </message>
    <message>
        <source>Replace created colors in the document colors</source>
        <translation type="obsolete">Oluşturulan renkleri belge renkleriyle değiş</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <translation type="obsolete">Alt+C</translation>
    </message>
    <message>
        <source>Leave colors untouched</source>
        <translation type="obsolete">Renkleri olduğu gibi bırak</translation>
    </message>
    <message>
        <source>Simulate common vision defects here. Select type of the defect.</source>
        <translation type="obsolete">Simulate common vision defects here. Select type of the defect.</translation>
    </message>
    <message>
        <source> %</source>
        <translation type="obsolete"> %</translation>
    </message>
    <message>
        <source>HSV</source>
        <translation type="obsolete">HSV</translation>
    </message>
    <message>
        <source>H:</source>
        <translation type="obsolete">H:</translation>
    </message>
    <message>
        <source>S:</source>
        <translation type="obsolete">S:</translation>
    </message>
    <message>
        <source>V:</source>
        <translation type="obsolete">V:</translation>
    </message>
</context>
<context>
    <name>Canvas</name>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2247"/>
        <location filename="../../../scribus/canvas.cpp" line="2275"/>
        <source>X: %1
Y: %2</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2260"/>
        <source>X: %1</source>
        <translation type="unfinished">X: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2267"/>
        <source>Y: %1</source>
        <translation type="unfinished">Y: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2283"/>
        <source>Length: %1
Angle: %2</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2285"/>
        <source>Width: %1
Height: %2</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2297"/>
        <source>Angle: %1</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CanvasMode_EyeDropper</name>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="165"/>
        <source>The selected color does not exist in the document&apos;s color set. Please enter a name for this new color.</source>
        <translation type="unfinished">Seçili renk belgenin renk kümesinde bulunmuyor. Lütfen bu yeni renk için isim girin.</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="168"/>
        <source>Color Not Found</source>
        <translation type="unfinished">Renk Bulunamadı</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="172"/>
        <source>The name you have selected already exists. Please enter a different name for this new color.</source>
        <translation type="unfinished">Seçtiğiniz isim zaten kullanımda. Bu yeni renk için lütfen başka bir isim girin.</translation>
    </message>
</context>
<context>
    <name>CanvasMode_FrameLinks</name>
    <message>
        <location filename="../../../scribus/canvasmode_framelinks.cpp" line="212"/>
        <location filename="../../../scribus/canvasmode_framelinks.cpp" line="219"/>
        <source>Linking Text Frames</source>
        <translation type="unfinished">Metin Çerçevelerini Bağlama</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_framelinks.cpp" line="213"/>
        <source>You are trying to link a frame to itself.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_framelinks.cpp" line="220"/>
        <source>You are trying to link a frame which is already linked.</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CanvasMode_Normal</name>
    <message>
        <location filename="../../../scribus/canvasmode_normal.cpp" line="1314"/>
        <source>All Supported Formats</source>
        <translation type="unfinished">Desteklenen tüm dosya türleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_normal.cpp" line="1345"/>
        <source>Open</source>
        <translation type="unfinished">Aç</translation>
    </message>
</context>
<context>
    <name>ChTable</name>
    <message>
        <source>You can see a thumbnail if you press and hold down the right mouse button. The Insert key inserts a Glyph into the Selection below and the Delete key removes the last inserted one</source>
        <translation type="obsolete">Eğer sağ butona basıp basılı tutarsanız küçük bir önizleme resmi görürsünüz. Insert tuşu aşağıdaki seçime Glyph ekler; Delete tuşu son ekleneni siler</translation>
    </message>
</context>
<context>
    <name>CharSelect</name>
    <message>
        <source>Select Character:</source>
        <translation type="obsolete">Karakter Seçin:</translation>
    </message>
    <message>
        <source>Font:</source>
        <translation type="obsolete">Yazıtipi:</translation>
    </message>
    <message>
        <source>Character Class:</source>
        <translation type="obsolete">Karakter Sınıfı:</translation>
    </message>
    <message>
        <source>&amp;Insert</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>C&amp;lear</source>
        <translation type="obsolete">&amp;Temizle</translation>
    </message>
    <message>
        <source>&amp;Close</source>
        <translation type="obsolete">&amp;Kapat</translation>
    </message>
    <message>
        <source>Insert the characters at the cursor in the text</source>
        <translation type="obsolete">Karakteri metindeki cursor&apos;a ekle</translation>
    </message>
    <message>
        <source>Delete the current selection(s).</source>
        <translation type="obsolete">Seçim(leri) sil.</translation>
    </message>
    <message>
        <source>Close this dialog and return to text editing.</source>
        <translation type="obsolete">Bu diyaloğu kapat ve metin düzeltmeye geri dön.</translation>
    </message>
    <message>
        <source>Full Character Set</source>
        <translation type="obsolete">Tam Karakter Kümesi</translation>
    </message>
    <message>
        <source>Basic Latin</source>
        <translation type="obsolete">Temel Latin</translation>
    </message>
    <message>
        <source>Latin-1 Supplement</source>
        <translation type="obsolete">Latin-1 Ek</translation>
    </message>
    <message>
        <source>Latin Extended-A</source>
        <translation type="obsolete">Latin Genişletilmiş-A</translation>
    </message>
    <message>
        <source>Latin Extended-B</source>
        <translation type="obsolete">Latin Genişletilmiş-B</translation>
    </message>
    <message>
        <source>General Punctuation</source>
        <translation type="obsolete">Genel Noktalama</translation>
    </message>
    <message>
        <source>Super- and Subscripts</source>
        <translation type="obsolete">Super- ve Subscript</translation>
    </message>
    <message>
        <source>Currency Symbols</source>
        <translation type="obsolete">Parabirimi Sembolleri</translation>
    </message>
    <message>
        <source>Letterlike Symbols</source>
        <translation type="obsolete">Harf gibi semboller</translation>
    </message>
    <message>
        <source>Number Forms</source>
        <translation type="obsolete">Sayı Biçimleri</translation>
    </message>
    <message>
        <source>Arrows</source>
        <translation type="obsolete">
Oklar</translation>
    </message>
    <message>
        <source>Mathematical Operators</source>
        <translation type="obsolete">Matematiksel Operatörler</translation>
    </message>
    <message>
        <source>Box Drawing</source>
        <translation type="obsolete">Kutu Çizimi</translation>
    </message>
    <message>
        <source>Block Elements</source>
        <translation type="obsolete">Blok Öğeleri</translation>
    </message>
    <message>
        <source>Geometric Shapes</source>
        <translation type="obsolete">Geometrik Åžekiller</translation>
    </message>
    <message>
        <source>Miscellaneous Symbols</source>
        <translation type="obsolete">Çeşitli Semboller</translation>
    </message>
    <message>
        <source>Dingbats</source>
        <translation type="obsolete">Dingbats</translation>
    </message>
    <message>
        <source>Small Form Variants</source>
        <translation type="obsolete">Small Form Variants</translation>
    </message>
    <message>
        <source>Ligatures</source>
        <translation type="obsolete">Bağlayıcılar</translation>
    </message>
    <message>
        <source>Specials</source>
        <translation type="obsolete">Özel</translation>
    </message>
    <message>
        <source>Greek</source>
        <translation type="obsolete">Yunan</translation>
    </message>
    <message>
        <source>Greek Extended</source>
        <translation type="obsolete">Genişletilmiş Yunan</translation>
    </message>
    <message>
        <source>Cyrillic</source>
        <translation type="obsolete">Kiril</translation>
    </message>
    <message>
        <source>Cyrillic Supplement</source>
        <translation type="obsolete">Kiril Ek</translation>
    </message>
    <message>
        <source>Arabic</source>
        <translation type="obsolete">Arap</translation>
    </message>
    <message>
        <source>Arabic Extended A</source>
        <translation type="obsolete">Arap Genişletilmiş A</translation>
    </message>
    <message>
        <source>Arabic Extended B</source>
        <translation type="obsolete">Arap Genişletilmiş B</translation>
    </message>
    <message>
        <source>Hebrew</source>
        <translation type="obsolete">İbranice</translation>
    </message>
    <message>
        <source>You can see a thumbnail if you press and hold down the right mouse button. The Insert key inserts a Glyph into the Selection below and the Delete key removes the last inserted one</source>
        <translation type="obsolete">Eğer sağ butona basıp basılı tutarsanız küçük bir önizleme resmi görürsünüz. Insert tuşu aşağıdaki seçime Glyph ekler; Delete tuşu son ekleneni siler</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="32"/>
        <source>Scribus Char Palette (*.ucp);;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="254"/>
        <source>Choose a filename to open</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="291"/>
        <location filename="../../../scribus/charselect.cpp" line="336"/>
        <source>Error</source>
        <translation type="unfinished">Hata</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="292"/>
        <source>Error reading file %1 - file is corrupted propably.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="337"/>
        <source>Cannot write file %1</source>
        <translation type="unfinished">Dosya yazılamıyor:%1 . {1?}</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="14"/>
        <source>Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="25"/>
        <source>Show/Hide Enhanced Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="35"/>
        <source>Unicode Search</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="42"/>
        <source>Load a Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="52"/>
        <source>Save the Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="62"/>
        <source>Empty the Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Ara</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="345"/>
        <source>Empty the Palette?</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="346"/>
        <source>You will remove all characters from this palette. Are you sure?</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="307"/>
        <source>Save Quick Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CharSelectEnhanced</name>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="208"/>
        <source>Full Character Set</source>
        <translation type="unfinished">Tam Karakter Kümesi</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="213"/>
        <source>Basic Latin</source>
        <translation type="unfinished">Temel Latin</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="219"/>
        <source>Latin-1 Supplement</source>
        <translation type="unfinished">Latin-1 Ek</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="225"/>
        <source>Latin Extended-A</source>
        <translation type="unfinished">Latin Genişletilmiş-A</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="231"/>
        <source>Latin Extended-B</source>
        <translation type="unfinished">Latin Genişletilmiş-B</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="237"/>
        <source>General Punctuation</source>
        <translation type="unfinished">Genel Noktalama</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="243"/>
        <source>Super- and Subscripts</source>
        <translation type="unfinished">Super- ve Subscript</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="249"/>
        <source>Currency Symbols</source>
        <translation type="unfinished">Parabirimi Sembolleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="255"/>
        <source>Letterlike Symbols</source>
        <translation type="unfinished">Harf gibi semboller</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="261"/>
        <source>Number Forms</source>
        <translation type="unfinished">Sayı Biçimleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="267"/>
        <source>Arrows</source>
        <translation type="unfinished">
Oklar</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="273"/>
        <source>Mathematical Operators</source>
        <translation type="unfinished">Matematiksel Operatörler</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="279"/>
        <source>Box Drawing</source>
        <translation type="unfinished">Kutu Çizimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="285"/>
        <source>Block Elements</source>
        <translation type="unfinished">Blok Öğeleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="291"/>
        <source>Geometric Shapes</source>
        <translation type="unfinished">Geometrik Åžekiller</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="297"/>
        <source>Miscellaneous Symbols</source>
        <translation type="unfinished">Çeşitli Semboller</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="303"/>
        <source>Dingbats</source>
        <translation type="unfinished">Dingbats</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="309"/>
        <source>Small Form Variants</source>
        <translation type="unfinished">Small Form Variants</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="315"/>
        <source>Ligatures</source>
        <translation type="unfinished">Bağlayıcılar</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="321"/>
        <source>Specials</source>
        <translation type="unfinished">Özel</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="327"/>
        <source>Greek</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="333"/>
        <source>Greek Extended</source>
        <translation type="unfinished">Genişletilmiş Yunan</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="339"/>
        <source>Cyrillic</source>
        <translation type="unfinished">Kiril</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="345"/>
        <source>Cyrillic Supplement</source>
        <translation type="unfinished">Kiril Ek</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="351"/>
        <source>Arabic</source>
        <translation type="unfinished">Arap</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="357"/>
        <source>Arabic Extended A</source>
        <translation type="unfinished">Arap Genişletilmiş A</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="363"/>
        <source>Arabic Extended B</source>
        <translation type="unfinished">Arap Genişletilmiş B</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="369"/>
        <source>Hebrew</source>
        <translation type="unfinished">İbranice</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="13"/>
        <source>Enhanced Character Palette</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="19"/>
        <source>&amp;Font:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="45"/>
        <source>C&amp;haracter Class:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="77"/>
        <source>You can see a thumbnail if you press and hold down the right mouse button.
The Insert key inserts a Glyph into the Selection below and the Delete key removes the last inserted one</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="96"/>
        <source>Insert &amp;Code:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="131"/>
        <source>Glyphs to Insert</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="171"/>
        <source>Insert the characters at the cursor in the text</source>
        <translation type="unfinished">Karakteri metindeki cursor&apos;a ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="174"/>
        <source>&amp;Insert</source>
        <translation type="unfinished">&amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="184"/>
        <source>Delete the current selection(s).</source>
        <translation type="unfinished">Seçim(leri) sil.</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="187"/>
        <source>C&amp;lear</source>
        <translation type="unfinished">&amp;Temizle</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="106"/>
        <source>Type in a four digit Unicode value directly here</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CharStyleComboBox</name>
    <message>
        <location filename="../../../scribus/spalette.cpp" line="94"/>
        <location filename="../../../scribus/spalette.cpp" line="107"/>
        <location filename="../../../scribus/spalette.cpp" line="118"/>
        <source>No Style</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CharTable</name>
    <message>
        <source>Delete</source>
        <translation type="obsolete">Sil</translation>
    </message>
</context>
<context>
    <name>CharTableView</name>
    <message>
        <location filename="../../../scribus/chartableview.cpp" line="22"/>
        <source>Delete</source>
        <translation type="unfinished">Sil</translation>
    </message>
</context>
<context>
    <name>CheckDocument</name>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="675"/>
        <source>Glyphs missing</source>
        <translation>Glyph kayıp</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="676"/>
        <source>Text overflow</source>
        <translation>Metin taşması</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="677"/>
        <source>Object is not on a Page</source>
        <translation>Nesne bir sayfa üstünde değil</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="678"/>
        <source>Missing Image</source>
        <translation>Bulunamayan resim</translation>
    </message>
    <message>
        <source>Image has a DPI-Value less than %1 DPI</source>
        <translation type="obsolete">Resmin DPI değeri %1 DPI altında</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="682"/>
        <source>Object has transparency</source>
        <translation>Nesne şeffaflık içeriyor</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="683"/>
        <source>Object is a PDF Annotation or Field</source>
        <translation>Nesne, PDF notu ya da alanı</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="684"/>
        <source>Object is a placed PDF</source>
        <translation>Nesne yerleştirilmiş bir PDF</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="399"/>
        <source>Document</source>
        <translation>Belge</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="401"/>
        <source>No Problems found</source>
        <translation>Sorun bulunamadı</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="569"/>
        <source>Page </source>
        <translation>Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="627"/>
        <source>Free Objects</source>
        <translation>Free Objects</translation>
    </message>
    <message>
        <source>Problems found</source>
        <translation type="obsolete">Bazı sorunlar mevcut</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="660"/>
        <source>Preflight Verifier</source>
        <translation>Baskı Denetleyicisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="662"/>
        <source>Items</source>
        <translation>Öğeler</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="662"/>
        <source>Problems</source>
        <translation>Sorunlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="667"/>
        <source>Current Profile:</source>
        <translation>Mevcut Profil:</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="637"/>
        <location filename="../../../scribus/checkDocument.cpp" line="668"/>
        <source>&amp;Ignore Errors</source>
        <translation>Ha&amp;taları Yoksay</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="402"/>
        <source>OK</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="433"/>
        <source>Transparency used</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="438"/>
        <source>Blendmode used</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="443"/>
        <source>Print/Visible Mismatch</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="451"/>
        <source>Layer &quot;%1&quot;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="669"/>
        <source>Check again</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="685"/>
        <source>Image is GIF</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="686"/>
        <source>Annotation uses a non TrueType font</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="671"/>
        <source>Preflight profile to base the report generation on. Options can be set in Document Setup or Preferences</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="672"/>
        <source>Ignore found errors and continue to export or print. Be sure to understand the errors you are ignoring before continuing.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="673"/>
        <source>Rerun the document scan to check corrections you may have made</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="679"/>
        <source>Empty Image Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="414"/>
        <source>Layers</source>
        <translation type="unfinished">Katmanlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="457"/>
        <location filename="../../../scribus/checkDocument.cpp" line="520"/>
        <source>Issue(s): %1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="468"/>
        <source>Master Pages</source>
        <translation type="unfinished">Mastar Sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="663"/>
        <source>Layer</source>
        <translation type="unfinished">Katman</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="680"/>
        <source>Image resolution below %1 DPI,
currently %2 x %3 DPI</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="681"/>
        <source>Image resolution above %1 DPI,
currently %2 x %3 DPI</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ChooseStyles</name>
    <message>
        <source>Choose Styles</source>
        <translation type="obsolete">Stilleri Seç</translation>
    </message>
    <message>
        <source>Available Styles</source>
        <translation type="obsolete">Mevcut Stiller</translation>
    </message>
</context>
<context>
    <name>CollectForOutput</name>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="52"/>
        <source>Choose a Directory</source>
        <translation>Dizin Seçin</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="65"/>
        <source>Cannot create directory:
%1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="80"/>
        <source>Collecting...</source>
        <translation>Toplanıyor...</translation>
    </message>
    <message>
        <source>Warning</source>
        <translation type="obsolete">Uyarı</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="85"/>
        <source>Cannot collect all files for output for file:
%1</source>
        <translation>Bu dizine çıktı için tüm dosyalar toplanamadı:
%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="99"/>
        <source>Cannot collect the file: 
%1</source>
        <translation>Toplanamayan dosya: 
%1</translation>
    </message>
</context>
<context>
    <name>ColorListBox</name>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
</context>
<context>
    <name>ColorManager</name>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="54"/>
        <source>Colors</source>
        <translation>Renkler</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="81"/>
        <source>&amp;Import</source>
        <translation>İth&amp;al et</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="83"/>
        <source>&amp;New</source>
        <translation>Y&amp;eni</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="85"/>
        <source>&amp;Edit</source>
        <translation>Düzen&amp;le</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="89"/>
        <source>D&amp;uplicate</source>
        <translation>Ç&amp;oğalt</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="92"/>
        <source>&amp;Delete</source>
        <translation>&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="97"/>
        <source>&amp;Remove Unused</source>
        <translation>Kullanılmayanları K&amp;aldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="104"/>
        <source>Color Sets</source>
        <translation>Renk Kümeleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="110"/>
        <source>Current Color Set:</source>
        <translation>Mevcut Renk Kümesi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="141"/>
        <source>&amp;Save Color Set</source>
        <translation>Renk Kümesini Ka&amp;ydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="180"/>
        <source>Choose a color set to load</source>
        <translation>Yüklenecek renk kümesini seçin</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="181"/>
        <source>Save the current color set</source>
        <translation>Aktif renk kümesini kaydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="186"/>
        <source>Remove unused colors from current document&apos;s color set</source>
        <translation>Kullanılmayan renkleri aktif belgenin renk kümesinden kaldır</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="188"/>
        <source>Import colors to the current set from an existing document</source>
        <translation>Mevcut belgeden renkleri ithal et</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="189"/>
        <source>Create a new color within the current set</source>
        <translation>Bu küme içinde yeni bir renk oluştur</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="190"/>
        <source>Edit the currently selected color</source>
        <translation>Seçili rengi düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="191"/>
        <source>Make a copy of the currently selected color</source>
        <translation>Seçili rengin bir kopyasını yarat</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="192"/>
        <source>Delete the currently selected color</source>
        <translation>Şu an seçili olan rengi sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="193"/>
        <source>Make the current colorset the default color set</source>
        <translation>Seçili renk setini öntanımlı renk seti yap</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="224"/>
        <source>&amp;Name:</source>
        <translation>İ&amp;sim:</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="224"/>
        <source>Choose a Name</source>
        <translation>Bir isim seçin</translation>
    </message>
    <message>
        <source>Open</source>
        <translation type="obsolete">Aç</translation>
    </message>
    <message>
        <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source>
        <translation type="obsolete">Belgeler (*.sla *.sla.gz *.scd *.scd.gz);;Tüm dosyalar (*)</translation>
    </message>
    <message>
        <source>Documents (*.sla *.scd);;All Files (*)</source>
        <translation type="obsolete">Belgeler (*.sla *.scd);;Tüm Dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="412"/>
        <source>Copy of %1</source>
        <translation>%1&apos;in kopyası</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="452"/>
        <source>New Color</source>
        <translation>Yeni Renk</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="375"/>
        <source>Information</source>
        <translation type="unfinished">Bilgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="375"/>
        <source>The file %1 does not contain colors which can be imported.
If the file was a PostScript-based, try to import it with File -&amp;gt; Import. 
Not all files have DSC conformant comments where the color descriptions are located.
 This prevents importing colors from some files.
See the Edit Colors section of the documentation for more details.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="194"/>
        <source>If color management is enabled, a triangle warning indicator is a warning that the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. Spot colors are indicated by a red circle. More hints about gamut warnings are in the online help under Color Management. Registration colors will have a registration mark next to the color. Use Registration only for printers marks and crop marks.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="365"/>
        <source>All Supported Formats (%1);;Documents (%2);;Other Files (%3);;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="366"/>
        <source>Import Colors</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ColorWheel</name>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="139"/>
        <source>Monochromatic</source>
        <translation>Monochromatic</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="140"/>
        <source>Analogous</source>
        <translation>Analogous</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="141"/>
        <source>Complementary</source>
        <translation>Complementary</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="142"/>
        <source>Split Complementary</source>
        <translation>Split Complementary</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="143"/>
        <source>Triadic</source>
        <translation>Triadic</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="144"/>
        <source>Tetradic (Double Complementary)</source>
        <translation>Tetradic (Double Complementary)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="44"/>
        <source>Base Color</source>
        <translation>Base Colour</translation>
    </message>
    <message>
        <source>Monochromatic Light</source>
        <translation type="obsolete">Monochromatic Light</translation>
    </message>
    <message>
        <source>Monochromatic Dark</source>
        <translation type="obsolete">Monochromatic Dark</translation>
    </message>
    <message>
        <source>1st. Analogous</source>
        <translation type="obsolete">1st. Analogous</translation>
    </message>
    <message>
        <source>2nd. Analogous</source>
        <translation type="obsolete">2nd. Analogous</translation>
    </message>
    <message>
        <source>1st. Split</source>
        <translation type="obsolete">1st. Split</translation>
    </message>
    <message>
        <source>2nd. Split</source>
        <translation type="obsolete">2nd. Split</translation>
    </message>
    <message>
        <source>3rd. Split</source>
        <translation type="obsolete">3rd. Split</translation>
    </message>
    <message>
        <source>4th. Split</source>
        <translation type="obsolete">4th. Split</translation>
    </message>
    <message>
        <source>1st. Triadic</source>
        <translation type="obsolete">1st. Triadic</translation>
    </message>
    <message>
        <source>2nd. Triadic</source>
        <translation type="obsolete">2nd. Triadic</translation>
    </message>
    <message>
        <source>1st. Tetradic (base opposite)</source>
        <translation type="obsolete">1st. Tetradic (base opposite)</translation>
    </message>
    <message>
        <source>2nd. Tetradic (angle)</source>
        <translation type="obsolete">2nd. Tetradic (angle)</translation>
    </message>
    <message>
        <source>3rd. Tetradic (angle opposite)</source>
        <translation type="obsolete">3rd. Tetradic (angle opposite)</translation>
    </message>
</context>
<context>
    <name>ColorWheelDialog</name>
    <message>
        <source>Color Wheel</source>
        <translation type="obsolete">Renk Çarkı</translation>
    </message>
    <message>
        <source>Color</source>
        <translation type="obsolete">Renk</translation>
    </message>
    <message>
        <source>Name</source>
        <translation type="obsolete">İsim</translation>
    </message>
    <message>
        <source>C</source>
        <translation type="obsolete">C</translation>
    </message>
    <message>
        <source>M</source>
        <translation type="obsolete">M</translation>
    </message>
    <message>
        <source>Y</source>
        <translation type="obsolete">Y</translation>
    </message>
    <message>
        <source>K</source>
        <translation type="obsolete">K</translation>
    </message>
    <message>
        <source>Select Method:</source>
        <translation type="obsolete">Metodu Seçin:</translation>
    </message>
    <message>
        <source>Angle (0 - 90 degrees):</source>
        <translation type="obsolete">Açı (0 - 90 derece):</translation>
    </message>
    <message>
        <source>&amp;Merge Colors</source>
        <translation type="obsolete">Renkleri &amp;Birleştir</translation>
    </message>
    <message>
        <source>&amp;Replace Colors</source>
        <translation type="obsolete">Renkleri D&amp;eğiştir</translation>
    </message>
    <message>
        <source>Merge created colors into the document colors</source>
        <translation type="obsolete">Oluşturulan renkleri belge renkleriyle birleştir</translation>
    </message>
    <message>
        <source>Replace created colors in the document colors</source>
        <translation type="obsolete">Oluşturulan renkleri belge renkleriyle değiş</translation>
    </message>
    <message>
        <source>Leave colors untouched</source>
        <translation type="obsolete">Renkleri olduğu gibi bırak</translation>
    </message>
    <message>
        <source>Merging colors</source>
        <translation type="obsolete">Merging colours</translation>
    </message>
    <message>
        <source>Error: </source>
        <translation type="obsolete">Hata: </translation>
    </message>
    <message>
        <source>Now opening the color manager.</source>
        <translation type="obsolete">Renk Yönetimi açılıyor.</translation>
    </message>
    <message>
        <source>Color Merging</source>
        <translation type="obsolete">Renk Birleştirme</translation>
    </message>
    <message>
        <source>Normal Vision</source>
        <translation type="obsolete">Normal Görüş</translation>
    </message>
    <message>
        <source>Full Color Blindness</source>
        <translation type="obsolete">Tam Renk Körlüğü</translation>
    </message>
    <message>
        <source>Vision Defect:</source>
        <translation type="obsolete">Görüş Kusuru:</translation>
    </message>
    <message>
        <source>Cr&amp;eate color...</source>
        <translation type="obsolete">Renk &amp;Oluştur...</translation>
    </message>
    <message>
        <source>&amp;Import existing color...</source>
        <translation type="obsolete">Mevcut rengi a&amp;l...</translation>
    </message>
    <message>
        <source>&amp;Merge colors</source>
        <translation type="obsolete">Renkleri &amp;Birleştir</translation>
    </message>
    <message>
        <source>&amp;Replace colors</source>
        <translation type="obsolete">Renkleri D&amp;eğiştir</translation>
    </message>
    <message>
        <source>E&amp;xit</source>
        <translation type="obsolete">E&amp;xit</translation>
    </message>
    <message>
        <source>C&amp;olor</source>
        <translation type="obsolete">&amp;Renk</translation>
    </message>
    <message>
        <source>New Color</source>
        <translation type="obsolete">Yeni Renk</translation>
    </message>
    <message>
        <source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source>
        <translation type="obsolete">Difference between the selected value and the counted ones. Refer to documentation for more information.</translation>
    </message>
    <message>
        <source>Click the wheel to get the base color. It is hue in HSV mode.</source>
        <translation type="obsolete">Click the wheel to get the base colour. It is hue in HSV mode.</translation>
    </message>
    <message>
        <source>Sample color scheme</source>
        <translation type="obsolete">Örnek renk taslağı</translation>
    </message>
    <message>
        <source>Select one of the methods to create a color scheme. Refer to documentation for more information.</source>
        <translation type="obsolete">Select one of the methods to create a colour scheme. Refer to documentation for more information.</translation>
    </message>
    <message>
        <source>Colors of your chosen color scheme</source>
        <translation type="obsolete">Colors of your chosen colour scheme</translation>
    </message>
    <message>
        <source>Simulate common vision defects here. Select type of the defect.</source>
        <translation type="obsolete">Simulate common vision defects here. Select type of the defect.</translation>
    </message>
    <message>
        <source>Unable to find the requested color. You have probably selected black, gray or white. There is no way to process this color.</source>
        <translation type="obsolete">Unable to find the requested colour. You have probably selected black, gray or white. There is no way to process this colour.</translation>
    </message>
    <message>
        <source>Color %1 exists already!</source>
        <translation type="obsolete">Renk %1 zaten mevcut!</translation>
    </message>
    <message>
        <source>Color %1 appended.</source>
        <translation type="obsolete">Renk %1 eklendi.</translation>
    </message>
    <message>
        <source>C&amp;olor Components...</source>
        <translation type="obsolete">Renk B&amp;ileşenleri...</translation>
    </message>
    <message>
        <source>Protanopia (Red)</source>
        <translation type="obsolete">Protanopia (Kırmızı Körlüğü)</translation>
    </message>
    <message>
        <source>Deuteranopia (Green)</source>
        <translation type="obsolete">Deuteranopia (Yeşil Körlüğü)</translation>
    </message>
    <message>
        <source>Tritanopia (Blue)</source>
        <translation type="obsolete">Tritanopia (Mavi Körlüğü)</translation>
    </message>
</context>
<context>
    <name>ColorWheelPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="47"/>
        <source>&amp;Color Wheel...</source>
        <translation>Renk &amp;Çarkı...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="64"/>
        <source>Color setting helper</source>
        <translation>Renk ayarları yardımcısı</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="65"/>
        <source>Color selector with color theory included.</source>
        <translation>Renk teorisi içeren renk seçici.</translation>
    </message>
</context>
<context>
    <name>CommonStrings</name>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="245"/>
        <source>&amp;Apply</source>
        <translation>&amp;Uygula</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="248"/>
        <source>&amp;Cancel</source>
        <translation>İp&amp;tal</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="251"/>
        <source>None</source>
        <translation type="unfinished">Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="255"/>
        <source>&amp;OK</source>
        <translation>&amp;Tamam</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="258"/>
        <source>&amp;Save</source>
        <translation>&amp;Kaydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="261"/>
        <source>Warning</source>
        <translation>Uyarı</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="252"/>
        <source>None</source>
        <comment>color name</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="286"/>
        <source>Custom</source>
        <comment>CommonStrings, custom page size</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="292"/>
        <source>Single Page</source>
        <translation type="unfinished">Tek Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="293"/>
        <source>Double Sided</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="294"/>
        <source>3-Fold</source>
        <translation type="unfinished">3-katlama</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="295"/>
        <source>4-Fold</source>
        <translation type="unfinished">4-katlama</translation>
    </message>
    <message>
        <source>Left Page</source>
        <translation type="obsolete">Sol Sayfa</translation>
    </message>
    <message>
        <source>Middle</source>
        <translation type="obsolete">Orta</translation>
    </message>
    <message>
        <source>Middle Left</source>
        <translation type="obsolete">Orta Sol</translation>
    </message>
    <message>
        <source>Middle Right</source>
        <translation type="obsolete">Orta Sağ</translation>
    </message>
    <message>
        <source>Right Page</source>
        <translation type="obsolete">Sağ Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="331"/>
        <source>Monday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="332"/>
        <source>Tuesday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="333"/>
        <source>Wednesday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="334"/>
        <source>Thursday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="335"/>
        <source>Friday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="336"/>
        <source>Saturday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="337"/>
        <source>Sunday</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="338"/>
        <source>January</source>
        <translation type="unfinished">Ocak</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="339"/>
        <source>February</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="340"/>
        <source>March</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="341"/>
        <source>April</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="342"/>
        <source>May</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="343"/>
        <source>June</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="344"/>
        <source>July</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="345"/>
        <source>August</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="346"/>
        <source>September</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="347"/>
        <source>October</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="348"/>
        <source>November</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="349"/>
        <source>December</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="263"/>
        <source>Yes</source>
        <translation type="unfinished">Evet</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="264"/>
        <source>No</source>
        <translation type="unfinished">Hayır</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="265"/>
        <source>&amp;Yes</source>
        <translation type="unfinished">&amp;Evet</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="266"/>
        <source>&amp;No</source>
        <translation type="unfinished">&amp;Hayır</translation>
    </message>
    <message>
        <source>Normal</source>
        <translation type="obsolete">Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="302"/>
        <source>Left Page</source>
        <comment>Left page location</comment>
        <translation type="unfinished">Sol Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="303"/>
        <source>Middle</source>
        <comment>Middle page location</comment>
        <translation type="unfinished">Orta</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="304"/>
        <source>Middle Left</source>
        <comment>Middle Left page location</comment>
        <translation type="unfinished">Orta Sol</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="305"/>
        <source>Middle Right</source>
        <comment>Middle Right page location</comment>
        <translation type="unfinished">Orta Sağ</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="306"/>
        <source>Right Page</source>
        <comment>Right page location</comment>
        <translation type="unfinished">Sağ Sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="309"/>
        <source>Normal</source>
        <comment>Default single master page</comment>
        <translation type="unfinished">Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="311"/>
        <source>Normal Left</source>
        <comment>Default left master page</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="313"/>
        <source>Normal Middle</source>
        <comment>Default middle master page</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="315"/>
        <source>Normal Right</source>
        <comment>Default right master page</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="357"/>
        <source>Normal Vision</source>
        <comment>Color Blindness - Normal Vision</comment>
        <translation type="unfinished">Normal Görüş</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="358"/>
        <source>Protanopia (Red)</source>
        <comment>Color Blindness - Red Color Blind</comment>
        <translation type="unfinished">Protanopia (Kırmızı Körlüğü)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="359"/>
        <source>Deuteranopia (Green)</source>
        <comment>Color Blindness - Greed Color Blind</comment>
        <translation type="unfinished">Deuteranopia (Yeşil Körlüğü)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="360"/>
        <source>Tritanopia (Blue)</source>
        <comment>Color Blindness - Blue Color Blind</comment>
        <translation type="unfinished">Tritanopia (Mavi Körlüğü)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="361"/>
        <source>Full Color Blindness</source>
        <comment>Color Blindness - Full Color Blindness</comment>
        <translation type="unfinished">Tam Renk Körlüğü</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="363"/>
        <source>Custom: </source>
        <comment>Custom Tab Fill Option</comment>
        <translation type="unfinished">Özel:</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="317"/>
        <source>Solid Line</source>
        <translation type="unfinished">Düz Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="318"/>
        <source>Dashed Line</source>
        <translation type="unfinished">Kesintili Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="319"/>
        <source>Dotted Line</source>
        <translation type="unfinished">Noktalı Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="320"/>
        <source>Dash Dot Line</source>
        <translation type="unfinished">Kesintili Noktalı Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="321"/>
        <source>Dash Dot Dot Line</source>
        <translation type="unfinished">Kesintili-Noktalı-Noktalı Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="365"/>
        <source>None</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="366"/>
        <source>Left Protruding</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="367"/>
        <source>Right Protruding</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="368"/>
        <source>Left Hanging Punctuation</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="369"/>
        <source>Right Hanging Punctuation</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="370"/>
        <source>Default</source>
        <comment>Optical Margin Setting</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="373"/>
        <source>Min. Word Tracking</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="374"/>
        <source>Max. Word Tracking</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="377"/>
        <source>Min. Glyph Extension</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="378"/>
        <source>Max. Glyph Extension</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="351"/>
        <source>RGB</source>
        <comment>Colorspace</comment>
        <translation type="unfinished">RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="352"/>
        <source>CMYK</source>
        <comment>Colorspace</comment>
        <translation type="unfinished">CMYK</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="353"/>
        <source>Grayscale</source>
        <comment>Colorspace</comment>
        <translation type="unfinished">Gri Tonlama</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="354"/>
        <source>Duotone</source>
        <comment>Colorspace</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="355"/>
        <source>Unknown</source>
        <comment>Colorspace (Unknown)</comment>
        <translation type="unfinished">Bilinmeyen</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="382"/>
        <source>PostScript</source>
        <translation type="unfinished">PostScript</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="268"/>
        <source>Text Frame</source>
        <translation type="unfinished">Metin çerçevesi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="269"/>
        <source>Image Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="270"/>
        <source>Line</source>
        <translation type="unfinished">Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="271"/>
        <source>Polygon</source>
        <translation type="unfinished">Çokgen</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="272"/>
        <source>Polyline</source>
        <translation type="unfinished">Çoklu Çizgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="273"/>
        <source>Text on a Path</source>
        <translation type="unfinished">Metni Eğriye Oturt</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="275"/>
        <source>Multiple</source>
        <comment>Multiple frame types</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="276"/>
        <source>PDF Push Button</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="277"/>
        <source>PDF Text Field</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="278"/>
        <source>PDF Check Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="279"/>
        <source>PDF Combo Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="280"/>
        <source>PDF List Box</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="281"/>
        <source>PDF Text Annotation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="282"/>
        <source>PDF Link Annotation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="390"/>
        <source>PostScript Level 1</source>
        <translation type="unfinished">PostScript Level 1</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="392"/>
        <source>PostScript Level 2</source>
        <translation type="unfinished">PostScript Level 2</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="394"/>
        <source>PostScript Level 3</source>
        <translation type="unfinished">PostScript Level 3</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="396"/>
        <source>Windows GDI</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="274"/>
        <source>Render Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="326"/>
        <source>Default Paragraph Style</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="327"/>
        <source>Default Character Style</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="328"/>
        <source>Default Line Style</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ContextMenu</name>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="209"/>
        <source>Preview Settings</source>
        <translation type="unfinished">Önizleme Ayarları</translation>
    </message>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="422"/>
        <source>Paste File...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="455"/>
        <source>Delete Page</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CopyPageToMasterPageBase</name>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="16"/>
        <source>Convert Page to Master Page</source>
        <translation type="unfinished">Sayfayı Mastar Sayfa yap</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="24"/>
        <source>Name:</source>
        <translation type="unfinished">İsim:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="39"/>
        <source>Copy Applied Master Page Items</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CopyPageToMasterPageDialog</name>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpagedialog.cpp" line="29"/>
        <source>New Master Page %1</source>
        <translation type="unfinished">Yeni Mastar Sayfa %1</translation>
    </message>
</context>
<context>
    <name>Cpalette</name>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1012"/>
        <location filename="../../../scribus/cpalette.cpp" line="1025"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1013"/>
        <source>Horizontal Gradient</source>
        <translation>Yatay Gradyan</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1014"/>
        <source>Vertical Gradient</source>
        <translation>Vertical Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1015"/>
        <source>Diagonal Gradient</source>
        <translation>Diyagonal Gradyan</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1016"/>
        <source>Cross Diagonal Gradient</source>
        <translation>Çapraz Diyagonal Gradyan</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1017"/>
        <source>Radial Gradient</source>
        <translation>Radyal Gradyan</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1007"/>
        <source>Opacity:</source>
        <translation>Opaklık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="990"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1006"/>
        <source>Shade:</source>
        <translation>Ton:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1043"/>
        <source>Edit Line Color Properties</source>
        <translation>Çizgi Rengi Özelliklerini Düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1044"/>
        <source>Edit Fill Color Properties</source>
        <translation>Doldurma Rengi Özelliklerini Düzenle</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1045"/>
        <source>Saturation of color</source>
        <translation>Renk doygunluğu</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1046"/>
        <source>Normal or gradient fill method</source>
        <translation>Normal veya gradyan doldurma metodu</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1047"/>
        <source>Set the transparency for the color selected</source>
        <translation>Seçili renk için şeffaflığı ayarla</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1018"/>
        <source>Free linear Gradient</source>
        <translation>Serbest çizgisel gradyan</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1019"/>
        <source>Free radial Gradient</source>
        <translation>Serbest Radyal Gradyan</translation>
    </message>
    <message>
        <source>X1:</source>
        <translation type="obsolete">X1:</translation>
    </message>
    <message>
        <source>Y1:</source>
        <translation type="obsolete">Y1:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="989"/>
        <source> pt</source>
        <translation> pt</translation>
    </message>
    <message>
        <source>X2:</source>
        <translation type="obsolete">X2:</translation>
    </message>
    <message>
        <source>Y2:</source>
        <translation type="obsolete">Y2:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1008"/>
        <source>Move Vector</source>
        <translation>Vektörü Taşı</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1048"/>
        <source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source>
        <translation type="unfinished">Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1022"/>
        <source>Transparency Settings</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1023"/>
        <source>Blend Mode:</source>
        <translation type="unfinished">Blend Mode:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1026"/>
        <source>Darken</source>
        <translation type="unfinished">Karanlıklaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1027"/>
        <source>Lighten</source>
        <translation type="unfinished">Aydınlat</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1028"/>
        <source>Multiply</source>
        <translation type="unfinished">Multiply</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1029"/>
        <source>Screen</source>
        <translation type="unfinished">Screen</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1030"/>
        <source>Overlay</source>
        <translation type="unfinished">Overlay</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1031"/>
        <source>Hard Light</source>
        <translation type="unfinished">Sert Işık</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1032"/>
        <source>Soft Light</source>
        <translation type="unfinished">Yumuşak Işık</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1033"/>
        <source>Difference</source>
        <translation type="unfinished">Fark</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1035"/>
        <source>Color Dodge</source>
        <translation type="unfinished">Colour Dodge</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1036"/>
        <source>Color Burn</source>
        <translation type="unfinished">Colour Burn</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1037"/>
        <source>Hue</source>
        <translation type="unfinished">Hue</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1038"/>
        <source>Saturation</source>
        <translation type="unfinished">Doygunluk</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1039"/>
        <source>Color</source>
        <translation type="unfinished">Renk</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1040"/>
        <source>Luminosity</source>
        <translation type="unfinished">Luminosity</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="993"/>
        <source>Offsets</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="994"/>
        <source>X:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="996"/>
        <source>Y:</source>
        <translation type="unfinished">Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="998"/>
        <source>Scaling</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1003"/>
        <source>Rotation</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1004"/>
        <source>Angle</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="405"/>
        <location filename="../../../scribus/cpalette.cpp" line="518"/>
        <location filename="../../../scribus/cpalette.cpp" line="1020"/>
        <source>Pattern</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1034"/>
        <source>Exclusion</source>
        <translation type="unfinished">Exclusion</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="999"/>
        <source>X-Scale:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1001"/>
        <source>Y-Scale:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="229"/>
        <location filename="../../../scribus/cpalette.cpp" line="1041"/>
        <source>Display only used Colors</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1049"/>
        <source>Display all colors from the document color list, or only the already used colors</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CreateRange</name>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="13"/>
        <source>Create Range</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="54"/>
        <source>Number of Pages in Document:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="64"/>
        <source>Doc Page Range</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="112"/>
        <source>Basic Range Selection</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="136"/>
        <source>Range of Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="160"/>
        <source>De&amp;lete</source>
        <translation type="unfinished">&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="163"/>
        <source>Alt+L</source>
        <translation type="unfinished">Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="186"/>
        <source>Move &amp;Down</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="189"/>
        <source>Alt+D</source>
        <translation type="unfinished">Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="196"/>
        <source>Move &amp;Up</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="199"/>
        <source>Alt+U</source>
        <translation type="unfinished">Alt+U</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="218"/>
        <source>Add a Range of Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="242"/>
        <source>Consecutive Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="252"/>
        <source>Even Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="259"/>
        <source>From:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="291"/>
        <source>To:</source>
        <translation type="unfinished">Buraya:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="334"/>
        <source>&amp;Add To Range</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="337"/>
        <source>Alt+A</source>
        <translation type="unfinished">Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="362"/>
        <source>Odd Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="372"/>
        <source>Comma Separated List</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="383"/>
        <source>Advanced Reordering</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="439"/>
        <source>Page Order</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="449"/>
        <source>Sample Page Order:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="478"/>
        <source>Page Group Size:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="525"/>
        <source>&amp;OK</source>
        <translation type="unfinished">&amp;Tamam</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="528"/>
        <source>Alt+O</source>
        <translation type="unfinished">Alt+O</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="535"/>
        <source>&amp;Cancel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="538"/>
        <source>Alt+C</source>
        <translation type="unfinished">Alt+C</translation>
    </message>
</context>
<context>
    <name>CreateRangeBase</name>
    <message>
        <source>To:</source>
        <translation type="obsolete">Buraya:</translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <source>Alt+U</source>
        <translation type="obsolete">Alt+U</translation>
    </message>
    <message>
        <source>Alt+D</source>
        <translation type="obsolete">Alt+D</translation>
    </message>
    <message>
        <source>De&amp;lete</source>
        <translation type="obsolete">&amp;Sil</translation>
    </message>
    <message>
        <source>Alt+L</source>
        <translation type="obsolete">Alt+L</translation>
    </message>
    <message>
        <source>&amp;OK</source>
        <translation type="obsolete">&amp;Tamam</translation>
    </message>
    <message>
        <source>Alt+O</source>
        <translation type="obsolete">Alt+O</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <translation type="obsolete">Alt+C</translation>
    </message>
</context>
<context>
    <name>CsvDialog</name>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="27"/>
        <source>CSV Importer Options</source>
        <translation>CSV Importer Options</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="37"/>
        <source>Field delimiter:</source>
        <translation>Field delimiter:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="44"/>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="89"/>
        <source>(TAB)</source>
        <translation>(TAB)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="53"/>
        <source>Value delimiter:</source>
        <translation>Value delimiter:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="68"/>
        <source>First row is a header</source>
        <translation>First row is a header</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="76"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="79"/>
        <source>Cancel</source>
        <translation>Cancel</translation>
    </message>
    <message>
        <source>None</source>
        <translation type="obsolete">None</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="59"/>
        <source>None</source>
        <comment>delimiter</comment>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CupsOptions</name>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="53"/>
        <source>Printer Options</source>
        <translation>Yazıcı Seçenekleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="64"/>
        <source>Option</source>
        <translation>Seçenek</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="65"/>
        <source>Value</source>
        <translation>Değer</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="134"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="144"/>
        <source>Page Set</source>
        <translation>Page Set</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="141"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="148"/>
        <source>All Pages</source>
        <translation>Tüm sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="142"/>
        <source>Even Pages only</source>
        <translation>Çift numaralı sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="143"/>
        <source>Odd Pages only</source>
        <translation>Tek numaraları sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="151"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="161"/>
        <source>Mirror</source>
        <translation>Mirror</translation>
    </message>
    <message>
        <source>No</source>
        <translation type="obsolete">Hayır</translation>
    </message>
    <message>
        <source>Yes</source>
        <translation type="obsolete">Evet</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="168"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="178"/>
        <source>Orientation</source>
        <translation>Yerleşim</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="175"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="182"/>
        <source>Portrait</source>
        <translation>Dikey</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="176"/>
        <source>Landscape</source>
        <translation>Yatay</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="185"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="198"/>
        <source>N-Up Printing</source>
        <translation>N-Up Printing</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="192"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="202"/>
        <source>Page per Sheet</source>
        <translation>Kağıt başına sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="193"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="194"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="195"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="196"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="197"/>
        <source>Pages per Sheet</source>
        <translation>Kağıt başına sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="225"/>
        <source>This panel displays various CUPS options when printing. The exact parameters available will depend on your printer driver. You can confirm CUPS support by selecting Help &gt; About. Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support. Missing library support is indicated by a *</source>
        <translation>Bu panel, baskı sırasında kullanılan CUPS tercihlerini gösterir. Tam parametreler, kullandığınız yazıcı sürücüsüne bağlıdır. CUPS desteğinin sağlanıp sağlanmadığını öğrenmek için, Yardım&gt;Hakkında bölümüne bakabilirsiniz. C-C-T değerini bulmaya çalışın; bu aktif ve etkin modülleri gösterir. C=CUPS, 2.C=littlecms renk yönetim sistemi, T ise TIFF resim formatı içindir. Eksik kütüphane destekleri * işaretiyle gösterilir</translation>
    </message>
</context>
<context>
    <name>CurveWidget</name>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="408"/>
        <source>Open</source>
        <translation type="unfinished">Aç</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="408"/>
        <location filename="../../../scribus/curvewidget.cpp" line="446"/>
        <source>Curve Files (*.scu *.SCU);;All Files (*)</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="446"/>
        <source>Save as</source>
        <translation type="unfinished">Farklı kaydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="480"/>
        <source>Cannot write the file: 
%1</source>
        <translation type="unfinished">Dosya yazılamıyor:
%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="506"/>
        <source>Inverts the curve</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="507"/>
        <source>Resets the curve</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="508"/>
        <source>Switches between linear and cubic interpolation of the curve</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="509"/>
        <source>Loads a curve</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="510"/>
        <source>Saves this curve</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CustomFDialog</name>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="353"/>
        <source>Encoding:</source>
        <translation>Kodlama:</translation>
    </message>
    <message>
        <source>Moves to your Document Directory.
This can be set in the Preferences.</source>
        <translation type="obsolete">Doküman Dizininize gider.
Dizinin yerini Tercihlerden ayarlayabilirsiniz.</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="295"/>
        <location filename="../../../scribus/customfdialog.cpp" line="325"/>
        <source>&amp;Compress File</source>
        <translation>Dosyayı &amp;Sıkıştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="304"/>
        <source>&amp;Include Fonts</source>
        <translation>&amp;Yazıtipi dosyalarını da al</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="272"/>
        <source>Show Preview</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="306"/>
        <source>&amp;Include Color Profiles</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="273"/>
        <source>Show a preview and information for the selected file</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="340"/>
        <source>Compress the Scribus document on save</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="342"/>
        <source>Include fonts when collecting files for the document. Be sure to know and understand licensing information for any fonts you collect and possibly redistribute.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="344"/>
        <source>Include color profiles when collecting files for the document</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CvgPlug</name>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="79"/>
        <source>Importing: %1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="82"/>
        <source>Analyzing File:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="205"/>
        <source>Group%1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="332"/>
        <source>Generating Items</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>CwSetColor</name>
    <message>
        <source>Set Color Components</source>
        <translation type="obsolete">Renk Bileşenlerini Ayarla</translation>
    </message>
    <message>
        <source>CMYK</source>
        <translation type="obsolete">CMYK</translation>
    </message>
    <message>
        <source>RGB</source>
        <translation type="obsolete">RGB</translation>
    </message>
    <message>
        <source>HSV</source>
        <translation type="obsolete">HSV</translation>
    </message>
    <message>
        <source>H:</source>
        <translation type="obsolete">H:</translation>
    </message>
    <message>
        <source>S:</source>
        <translation type="obsolete">S:</translation>
    </message>
    <message>
        <source>V:</source>
        <translation type="obsolete">V:</translation>
    </message>
    <message>
        <source>R:</source>
        <translation type="obsolete">R:</translation>
    </message>
    <message>
        <source>G:</source>
        <translation type="obsolete">G:</translation>
    </message>
    <message>
        <source>B:</source>
        <translation type="obsolete">B:</translation>
    </message>
    <message>
        <source>C:</source>
        <translation type="obsolete">C:</translation>
    </message>
    <message>
        <source>M:</source>
        <translation type="obsolete">M:</translation>
    </message>
    <message>
        <source>Y:</source>
        <translation type="obsolete">Y:</translation>
    </message>
    <message>
        <source>K:</source>
        <translation type="obsolete">K:</translation>
    </message>
    <message>
        <source>Set &amp;RGB</source>
        <translation type="obsolete">&amp;RGB Ayarla</translation>
    </message>
    <message>
        <source>Set C&amp;MYK</source>
        <translation type="obsolete">C&amp;MYK Ayarla</translation>
    </message>
    <message>
        <source>Set &amp;HSV</source>
        <translation type="obsolete">&amp;HSV Ayarla</translation>
    </message>
</context>
<context>
    <name>DashEditor</name>
    <message>
        <location filename="../../../scribus/dasheditor.cpp" line="367"/>
        <source>Value:</source>
        <translation type="unfinished">Değer:</translation>
    </message>
    <message>
        <location filename="../../../scribus/dasheditor.cpp" line="368"/>
        <source>Offset:</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>DeferredTask</name>
    <message>
        <location filename="../../../scribus/deferredtask.cpp" line="82"/>
        <source>Cancelled by user</source>
        <translation>Kullanıcı tarafından iptal edildi</translation>
    </message>
</context>
<context>
    <name>DelColor</name>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="29"/>
        <source>Delete Color</source>
        <translation>Rengi Sil</translation>
    </message>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="37"/>
        <source>Delete Color:</source>
        <translation>Rengi Sil:</translation>
    </message>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="46"/>
        <source>Replace With:</source>
        <translation>Bununla değiştir:</translation>
    </message>
</context>
<context>
    <name>DelPages</name>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="17"/>
        <source>Delete Pages</source>
        <translation>Sayfaları Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="34"/>
        <source>to:</source>
        <translation>buraya kadar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="26"/>
        <source>Delete From:</source>
        <translation>Buradan:</translation>
    </message>
</context>
<context>
    <name>DelStyle</name>
    <message>
        <source>Delete Style</source>
        <translation type="obsolete">Stil Sil</translation>
    </message>
    <message>
        <source>Delete Style:</source>
        <translation type="obsolete">Stili Sil:</translation>
    </message>
    <message>
        <source>Replace With:</source>
        <translation type="obsolete">Bununla değiştir:</translation>
    </message>
    <message>
        <source>No Style</source>
        <translation type="obsolete">Stil Yok</translation>
    </message>
</context>
<context>
    <name>DocIm</name>
    <message>
        <location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="180"/>
        <source>Importing failed</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="181"/>
        <source>Importing Word document failed 
%1</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>DocInfos</name>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="30"/>
        <source>Document Information</source>
        <translation>Belge Bilgisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="39"/>
        <source>&amp;Title:</source>
        <translation>&amp;Başlık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="46"/>
        <source>&amp;Author:</source>
        <translation>&amp;Yazar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="53"/>
        <source>&amp;Subject:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="60"/>
        <source>&amp;Keywords:</source>
        <translation>&amp;Anahtar Kelimeler:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="68"/>
        <source>Descri&amp;ption:</source>
        <translation>&amp;Tanım:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="81"/>
        <source>P&amp;ublisher:</source>
        <translation>&amp;Yayıncı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="88"/>
        <source>&amp;Contributors:</source>
        <translation>K&amp;atkıda Bulunanlar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="96"/>
        <source>Dat&amp;e:</source>
        <translation>&amp;Tarih:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="103"/>
        <source>T&amp;ype:</source>
        <translation>&amp;Tip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="110"/>
        <source>F&amp;ormat:</source>
        <translation>&amp;Biçim:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="117"/>
        <source>Identi&amp;fier:</source>
        <translation>&amp;Tanımlayıcı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="124"/>
        <source>&amp;Source:</source>
        <translation>&amp;Kaynak:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="131"/>
        <source>&amp;Language:</source>
        <translation>&amp;Dil:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="138"/>
        <source>&amp;Relation:</source>
        <translation>İlişk&amp;i:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="145"/>
        <source>Co&amp;verage:</source>
        <translation>&amp;Kapsam:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="152"/>
        <source>Ri&amp;ghts:</source>
        <translation>&amp;Haklar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="160"/>
        <source>Further &amp;Information</source>
        <translation>Da&amp;ha fazla bilgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="170"/>
        <source>A person or organisation responsible for making the document available</source>
        <translation>A person or organisation responsible for making the document available</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="171"/>
        <source>A person or organisation responsible for making contributions to the content of the document</source>
        <translation>A person or organisation responsible for making contributions to the content of the document</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="172"/>
        <source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source>
        <translation>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="173"/>
        <source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
        <translation>Belge türü ile ilgili</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="175"/>
        <source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
        <translation>İlgili belgenin referansı, muhtemelen ISBN ya da URI gibi resmi bir tanımlayıcı</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="176"/>
        <source>A reference to a document from which the present document is derived, eg. ISBN or URI</source>
        <translation>A reference to a document from which the present document is derived, eg. ISBN or URI</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="178"/>
        <source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
        <translation>İlgili belgenin referansı, muhtemelen ISBN ya da URI gibi resmi bir tanımlayıcı</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="179"/>
        <source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="180"/>
        <source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
        <translation>Belge ile ilgili eldeki haklar, örneğin yayın hakkı, patent vb</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="159"/>
        <source>Documen&amp;t</source>
        <translation>&amp;Belge</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="166"/>
        <source>The person or organisation primarily responsible for making the content of the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
        <translation>Belgenin içeriğinden sorumlu kişi ya da kuruluş. Scribus belgesinin içine referans olarak gömülebilir; aynı zamanda PDF için metadata olarak kullanılır</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="167"/>
        <source>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source>
        <translation>A name given to the document. This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="168"/>
        <source>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source>
        <translation>Belgenin içeriği, konusu ve kısa özeti gibi bilgiler. PDF yapılırken içerik olarak gömülen bir alandır</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="169"/>
        <source>The topic of the content of the document. This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source>
        <translation>Belge içeriğinin konusu. PDF içinde aramaları kolaylaştırmak için kullanılacaktır</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="174"/>
        <source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. RFC2045,RFC2046 for MIME types are also useful here</source>
        <translation>Belgenin fiziksel veya dijital özellikleri. Örneğin kağıt boyutu, çözünürlük, MIME türü gibi bilgiler</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="177"/>
        <source>The language in which the content of the document is written, usually a ISO-639 language code optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source>
        <translation>Belgenin yazıldığı dil. Genelde şu biçimdedir:en-GB,tr-TR,en-EN gibi</translation>
    </message>
</context>
<context>
    <name>DocSections</name>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="72"/>
        <source>Add a page numbering section to the document. The new section will be added after the currently selected section.</source>
        <translation>Belgeye sayfa numaralandırma kısmı ekler. Yeni kısım, seçtiğinizden yerden hemen sonra eklenir.</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="73"/>
        <source>Delete the currently selected section.</source>
        <translation>Şu an seçili bölümü sil.</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="87"/>
        <source>1, 2, 3, ...</source>
        <translation>1, 2, 3, ...</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="87"/>
        <source>i, ii, iii, ...</source>
        <translation>i, ii, iii, ...</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="87"/>
        <source>I, II, III, ...</source>
        <translation>I, II, III, ...</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="87"/>
        <source>a, b, c, ...</source>
        <translation>a, b, c, ...</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="87"/>
        <source>A, B, C, ...</source>
        <translation>A, B, C, ...</translation>
    </message>
    <message>
        <source>Name: Optional name for section eg. Index&lt;br/&gt;Shown: Select to show the page numbers in this section if there is one or more text frames setup to do so.&lt;br/&gt;From: The page index for this section to start at.&lt;br/&gt;To: The page index for this section to stop at.&lt;br/&gt;Style: Select the page number style to be used.&lt;br/&gt;Start: The index within the Style&apos;s range to star at. Eg. If Start=2 and Style=a,b,c, ..., the numbers will begin at b.</source>
        <translation type="obsolete">Name: Optional name for section eg. Index&lt;br/&gt;Shown: Select to show the page numbers in this section if there is one or more text frames setup to do so.&lt;br/&gt;From: The page index for this section to start at.&lt;br/&gt;To: The page index for this section to stop at.&lt;br/&gt;Style: Select the page number style to be used.&lt;br/&gt;Start: The index within the Style&apos;s range to star at. Eg. If Start=2 and Style=a,b,c, ..., the numbers will begin at b.</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="74"/>
        <source>&lt;b&gt;Name:&lt;/b&gt; Optional name for section eg. Index&lt;br/&gt;&lt;b&gt;Shown:&lt;/b&gt; Select to show the page numbers in this section if there is one or more text frames setup to do so.&lt;br/&gt;&lt;b&gt;From:&lt;/b&gt; The page index for this section to start at.&lt;br/&gt;&lt;b&gt;To:&lt;/b&gt; The page index for this section to stop at.&lt;br/&gt;&lt;b&gt;Style:&lt;/b&gt; Select the page number style to be used.&lt;br/&gt;&lt;b&gt;Start:&lt;/b&gt; The index within the Style&apos;s range to star at. Eg. If Start=2 and Style=a,b,c, ..., the numbers will begin at b. For the first section in the document this replaces the older First Page Number in the new file window.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="201"/>
        <source>Page Number Out Of Bounds</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="201"/>
        <source>The value you have entered is outside the range of page numbers in the current document (%1-%2).</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="13"/>
        <source>Document Sections</source>
        <translation type="unfinished">Belge Bölümleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="83"/>
        <source>&amp;Add</source>
        <translation type="unfinished">&amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="86"/>
        <source>Alt+A</source>
        <translation type="unfinished">Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="93"/>
        <source>&amp;Delete</source>
        <translation type="unfinished">&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="96"/>
        <source>Alt+D</source>
        <translation type="unfinished">Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="32"/>
        <source>Name</source>
        <translation type="unfinished">İsim</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="37"/>
        <source>Shown</source>
        <translation type="unfinished">Gösterilen</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="42"/>
        <source>From</source>
        <translation type="unfinished">Buradan</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="47"/>
        <source>To</source>
        <translation type="unfinished">Buraya</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="52"/>
        <source>Style</source>
        <translation type="unfinished">Stil</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="57"/>
        <source>Start</source>
        <translation type="unfinished">Başlangıç</translation>
    </message>
</context>
<context>
    <name>DocSectionsBase</name>
    <message>
        <source>Document Sections</source>
        <translation type="obsolete">Belge Bölümleri</translation>
    </message>
    <message>
        <source>Name</source>
        <translation type="obsolete">İsim</translation>
    </message>
    <message>
        <source>From</source>
        <translation type="obsolete">Buradan</translation>
    </message>
    <message>
        <source>To</source>
        <translation type="obsolete">Buraya</translation>
    </message>
    <message>
        <source>Style</source>
        <translation type="obsolete">Stil</translation>
    </message>
    <message>
        <source>Start</source>
        <translation type="obsolete">Başlangıç</translation>
    </message>
    <message>
        <source>&amp;Add</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <source>&amp;Delete</source>
        <translation type="obsolete">&amp;Sil</translation>
    </message>
    <message>
        <source>Alt+D</source>
        <translation type="obsolete">Alt+D</translation>
    </message>
    <message>
        <source>Shown</source>
        <translation type="obsolete">Gösterilen</translation>
    </message>
</context>
<context>
    <name>DocumentItemAttributes</name>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Relates To</source>
        <translation>İlgilidir</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Is Parent Of</source>
        <translation type="unfinished">Is Parent Of</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Is Child Of</source>
        <translation type="unfinished">Is Child Of</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>Text Frames</source>
        <translation>Metin Çerçeveleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>Image Frames</source>
        <translation>Resim Çerçeveleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Boolean</source>
        <translation>Bool</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Integer</source>
        <translation>Tamsayı</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>String</source>
        <translation>Katar</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Real Number</source>
        <translation>Gerçek Sayı</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>None</source>
        <comment>relationship</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>None</source>
        <comment>auto add</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>None</source>
        <comment>types</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="13"/>
        <source>Document Item Attributes</source>
        <translation type="unfinished">Belge Öğesi Nitelikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="82"/>
        <source>&amp;Add</source>
        <translation type="unfinished">&amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="85"/>
        <source>Alt+A</source>
        <translation type="unfinished">Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="92"/>
        <source>&amp;Copy</source>
        <translation type="unfinished">K&amp;opyala</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="95"/>
        <source>Alt+C</source>
        <translation type="unfinished">Alt+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="102"/>
        <source>&amp;Delete</source>
        <translation type="unfinished">&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="105"/>
        <source>Alt+D</source>
        <translation type="unfinished">Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="112"/>
        <source>C&amp;lear</source>
        <translation type="unfinished">&amp;Temizle</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="115"/>
        <source>Alt+L</source>
        <translation type="unfinished">Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="26"/>
        <source>Name</source>
        <translation type="unfinished">İsim</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="31"/>
        <source>Type</source>
        <translation type="unfinished">Tip</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="36"/>
        <source>Value</source>
        <translation type="unfinished">Değer</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="41"/>
        <source>Parameter</source>
        <translation type="unfinished">Parametre</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="46"/>
        <source>Relationship</source>
        <translation type="unfinished">İlişki</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="51"/>
        <source>Relationship To</source>
        <translation type="unfinished">İlişkili</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="56"/>
        <source>Auto Add To</source>
        <translation type="unfinished">Otomatik Ekle</translation>
    </message>
</context>
<context>
    <name>DocumentItemAttributesBase</name>
    <message>
        <source>Document Item Attributes</source>
        <translation type="obsolete">Belge Öğesi Nitelikleri</translation>
    </message>
    <message>
        <source>Name</source>
        <translation type="obsolete">İsim</translation>
    </message>
    <message>
        <source>Type</source>
        <translation type="obsolete">Tip</translation>
    </message>
    <message>
        <source>Value</source>
        <translation type="obsolete">Değer</translation>
    </message>
    <message>
        <source>Parameter</source>
        <translation type="obsolete">Parametre</translation>
    </message>
    <message>
        <source>Relationship</source>
        <translation type="obsolete">İlişki</translation>
    </message>
    <message>
        <source>Relationship To</source>
        <translation type="obsolete">İlişkili</translation>
    </message>
    <message>
        <source>Auto Add To</source>
        <translation type="obsolete">Otomatik Ekle</translation>
    </message>
    <message>
        <source>&amp;Add</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <source>&amp;Copy</source>
        <translation type="obsolete">K&amp;opyala</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <translation type="obsolete">Alt+C</translation>
    </message>
    <message>
        <source>&amp;Delete</source>
        <translation type="obsolete">&amp;Sil</translation>
    </message>
    <message>
        <source>Alt+D</source>
        <translation type="obsolete">Alt+D</translation>
    </message>
    <message>
        <source>C&amp;lear</source>
        <translation type="obsolete">&amp;Temizle</translation>
    </message>
    <message>
        <source>Alt+L</source>
        <translation type="obsolete">Alt+L</translation>
    </message>
</context>
<context>
    <name>DownloadDictionaries</name>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.ui" line="14"/>
        <location filename="../../../scribus/ui/downloaddictionaries.ui" line="56"/>
        <source>Download Dictionaries</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.ui" line="20"/>
        <source>Available Dictionary Downloads</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.ui" line="49"/>
        <source>Update Dictionary List</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.ui" line="63"/>
        <source>Close</source>
        <translation type="unfinished">Kapat</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.cpp" line="116"/>
        <source>Language</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.cpp" line="116"/>
        <source>Code</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/downloaddictionaries.cpp" line="116"/>
        <source>Location</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>EPSPlug</name>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="486"/>
        <source>Importing File:
%1
failed!</source>
        <translation>Dosya alınıyor:
%1
Başarısız oldu!</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="487"/>
        <source>Fatal Error</source>
        <translation>Kritik Hata</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="84"/>
        <source>Analyzing PostScript:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="492"/>
        <source>Generating Items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="847"/>
        <source>Converting of %1 images failed!</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="848"/>
        <source>Error</source>
        <translation type="unfinished">Hata</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="279"/>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="716"/>
        <source>Group%1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="81"/>
        <source>Importing: %1</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>EditStyle</name>
    <message>
        <source>Edit Style</source>
        <translation type="obsolete">Stilleri Düzenle</translation>
    </message>
    <message>
        <source>Character</source>
        <translation type="obsolete">Karakter</translation>
    </message>
    <message>
        <source> pt</source>
        <translation type="obsolete"> pt</translation>
    </message>
    <message>
        <source>None</source>
        <translation type="obsolete">Yok</translation>
    </message>
    <message>
        <source>Line Spacing</source>
        <translation type="obsolete">Satır Boşluğu</translation>
    </message>
    <message>
        <source>Name of your paragraph style</source>
        <translation type="obsolete">Paragraf stilinizin adı</translation>
    </message>
    <message>
        <source>Font of selected text or object</source>
        <translation type="obsolete">Seçili nesne ya da metnin yazıtipi</translation>
    </message>
    <message>
        <source>Font Size</source>
        <translation type="obsolete">Yazıtipi ölçüsü</translation>
    </message>
    <message>
        <source>Color of text fill</source>
        <translation type="obsolete">Doldurma Metni Rengi</translation>
    </message>
    <message>
        <source>Color of text stroke</source>
        <translation type="obsolete">Metin vurgusu rengi</translation>
    </message>
    <message>
        <source>Determines the overall height, in line numbers, of the Drop Caps</source>
        <translation type="obsolete">Determines the overall height, in line numbers, of the Drop Caps</translation>
    </message>
    <message>
        <source>Spacing above the paragraph</source>
        <translation type="obsolete">Paragrafın üzerinden boşluk</translation>
    </message>
    <message>
        <source>Spacing below the paragraph</source>
        <translation type="obsolete">Paragrafın altından boşluk</translation>
    </message>
    <message>
        <source>Tabulators and Indentation</source>
        <translation type="obsolete">Cetvelleyici ve Girintileyiciler</translation>
    </message>
    <message>
        <source>&amp;Name:</source>
        <translation type="obsolete">İ&amp;sim:</translation>
    </message>
    <message>
        <source>&amp;Lines:</source>
        <translation type="obsolete">&amp;Satırlar:</translation>
    </message>
    <message>
        <source> %</source>
        <translation type="obsolete"> %</translation>
    </message>
    <message>
        <source>Distances</source>
        <translation type="obsolete">Mesafeler</translation>
    </message>
    <message>
        <source>Fixed Linespacing</source>
        <translation type="obsolete">Sabit Satır Boşluğu</translation>
    </message>
    <message>
        <source>Automatic Linespacing</source>
        <translation type="obsolete">Otomatik Satır Boşluğu</translation>
    </message>
    <message>
        <source>Align to Baseline Grid</source>
        <translation type="obsolete">Align to Baseline Grid</translation>
    </message>
    <message>
        <source>Drop Caps</source>
        <translation type="obsolete">Drop Caps</translation>
    </message>
    <message>
        <source>Distance from Text:</source>
        <translation type="obsolete">Metinden Uzaklık:</translation>
    </message>
    <message>
        <source>Preview of the Paragraph Style</source>
        <translation type="obsolete">Paragraf Stilinin Önizlemesi</translation>
    </message>
    <message>
        <source>Determines the gap between the DropCaps and the Text</source>
        <translation type="obsolete">Determines the gap between the DropCaps and the Text</translation>
    </message>
    <message>
        <source>Toggles sample text of this paragraph style</source>
        <translation type="obsolete">Toggles sample text of this paragraph style</translation>
    </message>
    <message>
        <source>Name of the style is not unique</source>
        <translation type="obsolete">Stil adı zaten bulunuyor</translation>
    </message>
    <message>
        <source>Background</source>
        <translation type="obsolete">Arkaplan</translation>
    </message>
    <message>
        <source>Auto</source>
        <translation type="obsolete">Otomatik</translation>
    </message>
</context>
<context>
    <name>EditToolBar</name>
    <message>
        <location filename="../../../scribus/ui/edittoolbar.cpp" line="29"/>
        <source>Edit</source>
        <translation type="unfinished">Düzenle</translation>
    </message>
</context>
<context>
    <name>Editor</name>
    <message>
        <location filename="../../../scribus/editor.cpp" line="34"/>
        <source>Editor</source>
        <translation>Editor</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="40"/>
        <source>&amp;New</source>
        <translation>Y&amp;eni</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="43"/>
        <source>&amp;Open...</source>
        <translation>&amp;Aç...</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="45"/>
        <source>Save &amp;As...</source>
        <translation>&amp;Farklı kaydet...</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="47"/>
        <source>&amp;Save and Exit</source>
        <translation>Kaydet ve Ç&amp;ık</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="49"/>
        <source>&amp;Exit without Saving</source>
        <translation>Kayde&amp;tmeden çık</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="51"/>
        <source>&amp;Undo</source>
        <translation>Geri &amp;Al</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="54"/>
        <source>&amp;Redo</source>
        <translation>&amp;Yinele</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="56"/>
        <source>Cu&amp;t</source>
        <translation>&amp;Kes</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="59"/>
        <source>&amp;Copy</source>
        <translation>K&amp;opyala</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="62"/>
        <source>&amp;Paste</source>
        <translation>&amp;Yapıştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="65"/>
        <source>C&amp;lear</source>
        <translation>&amp;Temizle</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="67"/>
        <source>&amp;Get Field Names</source>
        <translation>Alan adla&amp;rını al</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="69"/>
        <source>&amp;File</source>
        <translation>&amp;Dosya</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="76"/>
        <source>&amp;Edit</source>
        <translation>Düzen&amp;le</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="100"/>
        <source>OK</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="104"/>
        <source>Cancel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="132"/>
        <location filename="../../../scribus/editor.cpp" line="148"/>
        <source>JavaScripts (*.js);;All Files (*)</source>
        <translation>JavaScript (*.js);;Tüm dosyalar (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="41"/>
        <source>Ctrl+N</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="52"/>
        <source>Ctrl+Z</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="57"/>
        <source>Ctrl+X</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="60"/>
        <source>Ctrl+C</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="63"/>
        <source>Ctrl-V</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>EffectsDialog</name>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="45"/>
        <source>Image Effects</source>
        <translation>Resim Efektleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="82"/>
        <source>Options:</source>
        <translation>Seçenekler:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="99"/>
        <source>Color:</source>
        <translation>Renk:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="110"/>
        <source>Shade:</source>
        <translation>Ton:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="126"/>
        <source>Brightness:</source>
        <translation>Parlaklık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="148"/>
        <source>Contrast:</source>
        <translation>Kontrast:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="170"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="199"/>
        <source>Radius:</source>
        <translation>Radius:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="181"/>
        <source>Value:</source>
        <translation>Değer:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="217"/>
        <source>Posterize:</source>
        <translation>Posterise:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="456"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="473"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="501"/>
        <source>Available Effects</source>
        <translation>Mevcut Efektler</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="460"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="542"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="779"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="841"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1296"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1418"/>
        <source>Blur</source>
        <translation>Bulanıklaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="461"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="527"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="764"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="835"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1247"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1396"/>
        <source>Brightness</source>
        <translation>Parlaklık</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="462"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="518"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="759"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="845"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="900"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="987"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1387"/>
        <source>Colorize</source>
        <translation>Renklendir</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="466"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="532"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="769"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="837"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1263"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1402"/>
        <source>Contrast</source>
        <translation>Kontrast</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="467"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="513"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="754"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="833"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="983"/>
        <source>Grayscale</source>
        <translation>Gri Tonlama</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="469"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="508"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="749"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="831"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="985"/>
        <source>Invert</source>
        <translation>Invert</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="470"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="552"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="787"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="843"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1308"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1431"/>
        <source>Posterize</source>
        <translation>Posterise</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="471"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="537"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="774"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="839"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1279"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1408"/>
        <source>Sharpen</source>
        <translation>Keskinleştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="483"/>
        <source>&gt;&gt;</source>
        <translation>&gt;&gt;</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="487"/>
        <source>&lt;&lt;</source>
        <translation>&lt;&lt;</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="498"/>
        <source>Effects in use</source>
        <translation>Kullanılan Efektler</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="617"/>
        <source>OK</source>
        <translation>Tamam</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="621"/>
        <source>Cancel</source>
        <translation>İptal</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="236"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="286"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="352"/>
        <source>Color 1:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="257"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="306"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="372"/>
        <source>Color 2:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="326"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="392"/>
        <source>Color 3:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="412"/>
        <source>Color 4:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="463"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="557"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="792"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="856"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="900"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1004"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1437"/>
        <source>Duotone</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="464"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="566"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="797"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="867"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="900"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1062"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1473"/>
        <source>Tritone</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="465"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="575"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="802"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="878"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="900"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1143"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1524"/>
        <source>Quadtone</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="468"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="584"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="807"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="889"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1324"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="1590"/>
        <source>Curves</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ExportBitmap</name>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="203"/>
        <source>File exists. Overwrite?</source>
        <translation type="unfinished">Dosya mevcut. Üzerine yazılsın mı?</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="204"/>
        <source>exists already. Overwrite?</source>
        <translation type="unfinished">zaten mevcut. Üzerine yazılsın mı?</translation>
    </message>
    <message>
        <source>All</source>
        <translation type="obsolete">Tümü</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="190"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="217"/>
        <source>Save as Image</source>
        <translation type="unfinished">Resim olarak Kaydet</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="190"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="191"/>
        <source>Insufficient memory for this image size.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="217"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="218"/>
        <source>Error writing the output file(s).</source>
        <translation type="unfinished">Çıktı dosyası yazarken hata oluştu.</translation>
    </message>
</context>
<context>
    <name>ExportForm</name>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="224"/>
        <source>&amp;All pages</source>
        <translation>&amp;Tüm sayfalar</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="127"/>
        <source>Change the output directory</source>
        <translation>Çıktı dizinini değiştir</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="126"/>
        <source>The output directory - the place to store your images.
Name of the export file will be &apos;documentname-pagenumber.filetype&apos;</source>
        <translation>Çıktı dizini-resimlerin kaydedileceği yer.
Dosya adı &apos;belgeadı-sayfano.dosyatipi&apos; şeklinde olacaktır</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="120"/>
        <source>Export only the current page</source>
        <translation>Sadece kullanılan sayfayı ihraç et</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="125"/>
        <source>Available export formats</source>
        <translation>Mevcut ihraç biçimleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="80"/>
        <source>Choose a Export Directory</source>
        <translation>Dizin Seçin</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="166"/>
        <source>C&amp;hange...</source>
        <translation>D&amp;eğiştir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="153"/>
        <source>&amp;Export to Directory:</source>
        <translation>Dizine ihraç &amp;et:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="54"/>
        <source>Image &amp;Type:</source>
        <translation>Resim &amp;Türü:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="64"/>
        <source>&amp;Quality:</source>
        <translation>&amp;Kalite:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="13"/>
        <source>Export as Image(s)</source>
        <translation>Resim olarak ihraç et</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="25"/>
        <source>Options</source>
        <translation>Seçenekler</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="74"/>
        <source>&amp;Resolution:</source>
        <translation>&amp;Çözünürlük:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="94"/>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="126"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="110"/>
        <source> dpi</source>
        <translation> dpi</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="175"/>
        <source>Range</source>
        <translation>Aralık</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="197"/>
        <source>&amp;Current page</source>
        <translation>&amp;Mevcut sayfa</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="217"/>
        <source>&amp;Range</source>
        <translation>&amp;Aralık</translation>
    </message>
    <message>
        <source>C</source>
        <translation type="obsolete">C</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="117"/>
        <source>Export a range of pages</source>
        <translation>Belli aralıktaki sayfaları ihraç et</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="118"/>
        <source>Insert a comma separated list of tokens where
a token can be * for all the pages, 1-5 for
a range of pages or a single page number.</source>
        <translation>* tüm sayfalar için. Örneğin 1-5,birinci ile beşinci
sayfalar arasındaki sayfalar. Sayfa numaralarını
vigülle ayırarak (1,4,5 gibi) de verebilirsiniz.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="119"/>
        <source>Export all pages</source>
        <translation>Tüm sayfaları ihraç et</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="121"/>
        <source>Resolution of the Images
Use 72 dpi for Images intended for the Screen</source>
        <translation>Resimlerin çözünürlüğü
Sadece ekranda görüntülenecekse 72 dpi yeterlidir</translation>
    </message>
    <message>
        <source>The quality of your images - 100% is the best, 1% the lowest quality</source>
        <translation type="obsolete">Resimlerin kalitesi - %100 en iyi, %1 en düşük kalite</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="84"/>
        <source>&amp;Size:</source>
        <translation>Ö&amp;lçü:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="122"/>
        <source>Size of the images. 100% for no changes, 200% for two times larger etc.</source>
        <translation>Resimlerin boyutu. %100 değişiklik yok; %50 yarısı, %200 2 katı vs.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="44"/>
        <source>Image size in Pixels</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="37"/>
        <source>TextLabel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="123"/>
        <source>The compression ratio of your images - 100% is no compression, 0% highest compression. If in doubt, use &apos;Automatic&apos;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="124"/>
        <source>Automatic</source>
        <translation type="unfinished">Otomatik</translation>
    </message>
</context>
<context>
    <name>ExtImageProps</name>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="40"/>
        <source>Extended Image Properties</source>
        <translation>Genişletilmiş Resim Özellikleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="58"/>
        <location filename="../../../scribus/extimageprops.cpp" line="76"/>
        <location filename="../../../scribus/extimageprops.cpp" line="110"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="59"/>
        <location filename="../../../scribus/extimageprops.cpp" line="77"/>
        <location filename="../../../scribus/extimageprops.cpp" line="111"/>
        <source>Darken</source>
        <translation>Karanlıklaştır</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="60"/>
        <location filename="../../../scribus/extimageprops.cpp" line="78"/>
        <location filename="../../../scribus/extimageprops.cpp" line="112"/>
        <source>Lighten</source>
        <translation>Aydınlat</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="61"/>
        <location filename="../../../scribus/extimageprops.cpp" line="79"/>
        <location filename="../../../scribus/extimageprops.cpp" line="113"/>
        <source>Hue</source>
        <translation type="unfinished">Hue</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="62"/>
        <location filename="../../../scribus/extimageprops.cpp" line="80"/>
        <location filename="../../../scribus/extimageprops.cpp" line="114"/>
        <source>Saturation</source>
        <translation>Doygunluk</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="63"/>
        <location filename="../../../scribus/extimageprops.cpp" line="81"/>
        <location filename="../../../scribus/extimageprops.cpp" line="115"/>
        <source>Color</source>
        <translation>Renk</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="64"/>
        <location filename="../../../scribus/extimageprops.cpp" line="82"/>
        <location filename="../../../scribus/extimageprops.cpp" line="116"/>
        <source>Luminosity</source>
        <translation type="unfinished">Luminosity</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="65"/>
        <location filename="../../../scribus/extimageprops.cpp" line="83"/>
        <location filename="../../../scribus/extimageprops.cpp" line="117"/>
        <source>Multiply</source>
        <translation type="unfinished">Multiply</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="66"/>
        <location filename="../../../scribus/extimageprops.cpp" line="84"/>
        <location filename="../../../scribus/extimageprops.cpp" line="118"/>
        <source>Screen</source>
        <translation type="unfinished">Screen</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="67"/>
        <location filename="../../../scribus/extimageprops.cpp" line="85"/>
        <location filename="../../../scribus/extimageprops.cpp" line="119"/>
        <source>Dissolve</source>
        <translation type="unfinished">Dissolve</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="68"/>
        <location filename="../../../scribus/extimageprops.cpp" line="86"/>
        <location filename="../../../scribus/extimageprops.cpp" line="120"/>
        <source>Overlay</source>
        <translation type="unfinished">Overlay</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="69"/>
        <location filename="../../../scribus/extimageprops.cpp" line="87"/>
        <location filename="../../../scribus/extimageprops.cpp" line="121"/>
        <source>Hard Light</source>
        <translation>Sert Işık</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="70"/>
        <location filename="../../../scribus/extimageprops.cpp" line="88"/>
        <location filename="../../../scribus/extimageprops.cpp" line="122"/>
        <source>Soft Light</source>
        <translation>Yumuşak Işık</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="71"/>
        <location filename="../../../scribus/extimageprops.cpp" line="89"/>
        <location filename="../../../scribus/extimageprops.cpp" line="123"/>
        <source>Difference</source>
        <translation>Fark</translation>
    </message>
    <message>
        <source>Exlusion</source>
        <translation type="obsolete">Exclusion</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="73"/>
        <location filename="../../../scribus/extimageprops.cpp" line="91"/>
        <location filename="../../../scribus/extimageprops.cpp" line="125"/>
        <source>Color Dodge</source>
        <translation type="unfinished">Colour Dodge</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="74"/>
        <location filename="../../../scribus/extimageprops.cpp" line="92"/>
        <location filename="../../../scribus/extimageprops.cpp" line="126"/>
        <source>Color Burn</source>
        <translation type="unfinished">Colour Burn</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="106"/>
        <source>Blend Mode:</source>
        <translation type="unfinished">Blend Mode:</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="129"/>
        <source>Opacity:</source>
        <translation>Opaklık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="136"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="142"/>
        <source>Name</source>
        <translation>İsim</translation>
    </message>
    <message>
        <source>Background</source>
        <translation type="obsolete">Arkaplan</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="220"/>
        <source>Layers</source>
        <translation>Katmanlar</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="273"/>
        <source>Don&apos;t use any Path</source>
        <translation>Don&apos;t use any Path</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="275"/>
        <source>Paths</source>
        <translation>Paths</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="72"/>
        <location filename="../../../scribus/extimageprops.cpp" line="90"/>
        <location filename="../../../scribus/extimageprops.cpp" line="124"/>
        <source>Exclusion</source>
        <translation>Exclusion</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="282"/>
        <source>Live Preview</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>FDialogPreview</name>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="196"/>
        <source>Size:</source>
        <translation>Ölçü:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="214"/>
        <source>Title:</source>
        <translation>Başlık:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="217"/>
        <source>No Title</source>
        <translation>Başlık Yok</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="219"/>
        <source>Author:</source>
        <translation>Yazar:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="200"/>
        <location filename="../../../scribus/customfdialog.cpp" line="222"/>
        <location filename="../../../scribus/customfdialog.cpp" line="227"/>
        <source>Unknown</source>
        <translation>Bilinmeyen</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="229"/>
        <source>Scribus Document</source>
        <translation>Scribus Belgesi</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="197"/>
        <source>Resolution:</source>
        <translation>Çözünürlük:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="197"/>
        <source>DPI</source>
        <translation>DPI</translation>
    </message>
    <message>
        <source>RGB</source>
        <translation type="obsolete">RGB</translation>
    </message>
    <message>
        <source>CMYK</source>
        <translation type="obsolete">CMYK</translation>
    </message>
    <message>
        <source>Grayscale</source>
        <translation type="obsolete">Gri Tonlama</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="203"/>
        <source>Colorspace:</source>
        <translation type="unfinished">Colourspace:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="224"/>
        <source>File Format:</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>FileLoader</name>
    <message>
        <location filename="../../../scribus/fileloader.cpp" line="401"/>
        <source>Some fonts used by this document have been substituted:</source>
        <translation>Bu belgedeki bazı yazitipleri değiştirildi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fileloader.cpp" line="405"/>
        <source> was replaced by: </source>
        <translation>bununla değişti:</translation>
    </message>
</context>
<context>
    <name>FileToolBar</name>
    <message>
        <location filename="../../../scribus/ui/filetoolbar.cpp" line="31"/>
        <source>File</source>
        <translation type="unfinished">Dosya</translation>
    </message>
</context>
<context>
    <name>FontComboH</name>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="148"/>
        <source>Family:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="149"/>
        <source>Style:</source>
        <translation type="unfinished">Stil:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="151"/>
        <source>Font Family of Selected Text or Text Frame</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="152"/>
        <source>Font Style of Selected Text or Text Frame</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>FontListModel</name>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="63"/>
        <source>Font Name</source>
        <translation type="unfinished">Yazıtipi Adı</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="65"/>
        <source>Use Font</source>
        <translation type="unfinished">Kullanılacak Yazıtipi</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="67"/>
        <source>Family</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="69"/>
        <source>Style</source>
        <translation type="unfinished">Stil</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="71"/>
        <source>Variant</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="73"/>
        <source>Type</source>
        <translation type="unfinished">Tip</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="75"/>
        <source>Format</source>
        <translation type="unfinished">Biçim</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="77"/>
        <source>Embed in PostScript</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="79"/>
        <source>Subset</source>
        <translation type="unfinished">Subset</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="81"/>
        <source>Access</source>
        <translation type="unfinished">Erişim</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="83"/>
        <source>Used in Doc</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="85"/>
        <source>Path to Font File</source>
        <translation type="unfinished">Path to Font File</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="144"/>
        <source>Unknown</source>
        <comment>font type</comment>
        <translation type="unfinished">Bilinmeyen</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="157"/>
        <source>Unknown</source>
        <comment>font format</comment>
        <translation type="unfinished">Bilinmeyen</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="164"/>
        <source>User</source>
        <comment>font preview</comment>
        <translation type="unfinished">Kullanıcı</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="165"/>
        <source>System</source>
        <comment>font preview</comment>
        <translation type="unfinished">Sistem</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="190"/>
        <source>Click to change the value</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>FontPrefs</name>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Available Fonts</source>
        <translation>Mevcut Yazıtipleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Font Substitutions</source>
        <translation>Yazıtipi Karşılıkları</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Additional Paths</source>
        <translation>Diğer yerler</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="66"/>
        <source>Font Name</source>
        <translation>Yazıtipi Adı</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="67"/>
        <source>Replacement</source>
        <translation>Muadili</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="229"/>
        <location filename="../../../scribus/fontprefs.cpp" line="254"/>
        <source>Choose a Directory</source>
        <translation>Dizin Seçin</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="58"/>
        <source>&amp;Available Fonts</source>
        <translation>&amp;Mevcut Yazıtipleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="88"/>
        <source>Font &amp;Substitutions</source>
        <translation>&amp;Yazıtipi Karşılıkları</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="135"/>
        <source>Additional &amp;Paths</source>
        <translation>&amp;Diğer yerler</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="82"/>
        <source>&amp;Delete</source>
        <translation>&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="107"/>
        <source>C&amp;hange...</source>
        <translation>D&amp;eğiştir...</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="109"/>
        <source>A&amp;dd...</source>
        <translation>E&amp;kle...</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="111"/>
        <source>&amp;Remove</source>
        <translation>Ka&amp;ldır</translation>
    </message>
    <message>
        <source>Font Name</source>
        <comment>font preview</comment>
        <translation type="obsolete">Yazıtipi Adı</translation>
    </message>
    <message>
        <source>Use Font</source>
        <comment>font preview</comment>
        <translation type="obsolete">Kullanılacak Yazıtipi</translation>
    </message>
    <message>
        <source>Embed in:</source>
        <comment>font preview</comment>
        <translation type="obsolete">Bunun içine göm:</translation>
    </message>
    <message>
        <source>Subset</source>
        <comment>font preview</comment>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Path to Font File</source>
        <comment>font preview</comment>
        <translation type="obsolete">Path to Font File</translation>
    </message>
    <message>
        <source>PostScript</source>
        <translation type="obsolete">PostScript</translation>
    </message>
    <message>
        <source>Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit-&gt;Settings to change the font search path.</source>
        <translation type="obsolete">Font search paths can only be set in Preferences, and only when there is no document currently open. Close any open documents, then use Edit-&gt;Settings to change the font search path.</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="128"/>
        <source>Font search paths can only be set in File &gt; Preferences, and only when there is no document currently open. Close any open documents, then use File &gt; Preferences &gt; Fonts to change the font search path.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <source>Use Font</source>
        <translation type="obsolete">Kullanılacak Yazıtipi</translation>
    </message>
    <message>
        <source>Subset</source>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Path to Font File</source>
        <translation type="obsolete">Path to Font File</translation>
    </message>
</context>
<context>
    <name>FontPreview</name>
    <message>
        <source>Font Name</source>
        <comment>font preview</comment>
        <translation type="obsolete">Yazıtipi Adı</translation>
    </message>
    <message>
        <source>Doc</source>
        <comment>font preview</comment>
        <translation type="obsolete">Doc</translation>
    </message>
    <message>
        <source>Type</source>
        <comment>font preview</comment>
        <translation type="obsolete">Tip</translation>
    </message>
    <message>
        <source>Subset</source>
        <comment>font preview</comment>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Access</source>
        <comment>font preview</comment>
        <translation type="obsolete">Erişim</translation>
    </message>
    <message>
        <source>Font Size:</source>
        <translation type="obsolete">Yazıtipi ölçüsü:</translation>
    </message>
    <message>
        <source>Fonts Preview</source>
        <comment>font preview</comment>
        <translation type="obsolete">Yazıtipi Önizleme</translation>
    </message>
    <message>
        <source>Alt+O</source>
        <comment>font preview</comment>
        <translation type="obsolete">Alt+O</translation>
    </message>
    <message>
        <source>Quick Search: </source>
        <translation type="obsolete">Hızlı Arama:</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Ara</translation>
    </message>
    <message>
        <source>&amp;Close</source>
        <comment>font preview</comment>
        <translation type="obsolete">&amp;Kapat</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <comment>font preview</comment>
        <translation type="obsolete">Alt+C</translation>
    </message>
    <message>
        <source>Append selected font into Style, Font menu</source>
        <comment>font preview</comment>
        <translation type="obsolete">Append selected font into Style, Font menu</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="111"/>
        <source>Leave preview</source>
        <comment>font preview</comment>
        <translation>Önizlemeyi kapat</translation>
    </message>
    <message>
        <source>Typing the text here provides quick searching in the font names. E.g. &apos;bold&apos; shows all fonts with Bold in name. Searching is case insensitive.</source>
        <translation type="obsolete">Buraya bir metin yazarak hızlı arama yapabilirsiniz. Örneğin; Nimbus yazarak Nimbus ile başlayan tüm fontları listelersiniz. Aramada küçük büyük harf farkı gözetilmez.</translation>
    </message>
    <message>
        <source>Start searching</source>
        <translation type="obsolete">Aramaya başla</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="113"/>
        <source>Size of the selected font</source>
        <translation>Seçili yazıtipinin büyüklüğü</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="44"/>
        <source>Woven silk pyjamas exchanged for blue quartz</source>
        <comment>font preview</comment>
        <translation>Scribus, Pozitif PC tarafından Türkçeye çevrildi..www.pozitifpc.com</translation>
    </message>
    <message>
        <source>User</source>
        <comment>font preview</comment>
        <translation type="obsolete">Kullanıcı</translation>
    </message>
    <message>
        <source>System</source>
        <comment>font preview</comment>
        <translation type="obsolete">Sistem</translation>
    </message>
    <message>
        <source>&amp;Append</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>Font Name</source>
        <translation type="obsolete">Yazıtipi Adı</translation>
    </message>
    <message>
        <source>Doc</source>
        <translation type="obsolete">Doc</translation>
    </message>
    <message>
        <source>Type</source>
        <translation type="obsolete">Tip</translation>
    </message>
    <message>
        <source>Subset</source>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Access</source>
        <translation type="obsolete">Erişim</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="13"/>
        <source>Fonts Preview</source>
        <translation type="unfinished">Yazıtipi Önizleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="19"/>
        <source>&amp;Quick Search:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="80"/>
        <source>&amp;Font Size:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="103"/>
        <source>Text</source>
        <translation type="unfinished">Metin</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="113"/>
        <source>Sample text to display</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="123"/>
        <source>Se&amp;t</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="126"/>
        <source>Alt+T</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="133"/>
        <source>Reset the text</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="167"/>
        <source>&amp;Close</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="170"/>
        <source>Alt+C</source>
        <translation type="unfinished">Alt+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="112"/>
        <source>Typing the text here provides quick searching in the font names. Searching is case insensitive. The given text is taken as substring.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="136"/>
        <source>&amp;Default</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="35"/>
        <source>Show Extended Font Information</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="120"/>
        <source>Set the preview text</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>FontPreviewBase</name>
    <message>
        <source>Fonts Preview</source>
        <translation type="obsolete">Yazıtipi Önizleme</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Ara</translation>
    </message>
    <message>
        <source>Font Name</source>
        <translation type="obsolete">Yazıtipi Adı</translation>
    </message>
    <message>
        <source>Doc</source>
        <translation type="obsolete">Doc</translation>
    </message>
    <message>
        <source>Type</source>
        <translation type="obsolete">Tip</translation>
    </message>
    <message>
        <source>Subset</source>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Access</source>
        <translation type="obsolete">Erişim</translation>
    </message>
    <message>
        <source>Text</source>
        <translation type="obsolete">Metin</translation>
    </message>
    <message>
        <source>&amp;Append</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <source>Alt+C</source>
        <translation type="obsolete">Alt+C</translation>
    </message>
</context>
<context>
    <name>FontPreviewPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="49"/>
        <source>&amp;Font Preview...</source>
        <translation>Yazıtipi Ön&amp;izleme...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="66"/>
        <source>Font Preview dialog</source>
        <translation>Yazıtipi Önizleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="67"/>
        <source>Sorting, searching and browsing available fonts.</source>
        <translation>Mevcut yazıtiplerini arama,sıralama ve tarama.</translation>
    </message>
</context>
<context>
    <name>FontReplaceDialog</name>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="30"/>
        <source>Font Substitution</source>
        <translation>Yazıtipi Değişimi</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="45"/>
        <source>Original Font</source>
        <translation>Orjinal Yazıtipi</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="46"/>
        <source>Substitution Font</source>
        <translation>Yerine geçen yazıtipi</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="72"/>
        <source>Make these substitutions permanent</source>
        <translation>Bu değişiklikler kalıcı olsun</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="84"/>
        <source>Enabling this tells Scribus to use these replacements for missing fonts permanently in all future layouts. This can be reverted or changed in File &gt; Preferences &gt; Fonts.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="40"/>
        <source>This document contains some fonts that are not installed on your system, please choose a suitable replacement for them. Cancel will stop the document from loading.</source>
        <translation>Bu belge, sisteminizde olmayan bazı yazıtipleri içeriyor. Lütfen bunların yerine uygun yazıtiplerini seçin. İptal&apos;i seçmek belgenin yüklenmesini durduracaktır.</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="83"/>
        <source>Cancels these font substitutions and stops loading the document.</source>
        <translation>Bu yazıtipi değişikliklerini iptal et ve belgenin yüklenmesini durdur.</translation>
    </message>
    <message>
        <source>Enabling this tells Scribus to use these replacements for missing fonts permanently in all future layouts. This can be reverted or changed in Edit &gt; Preferences &gt; Fonts.</source>
        <translation type="obsolete">Bunu etkin hale getirmek, gelecekteki yeni mizanpajlarda bu değişimlerin kullanılmasına neden olur. Özellikleri Düzenle&gt;Tercihler&gt;Yazıtiplerinden değiştirebilirsiniz.</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="85"/>
        <source>If you select OK, then save, these substitutions are made permanent in the document.</source>
        <translation>Eğer Tamam&apos;ı seçip kaydederseniz, bu değişiklikler belgeniz içinde kalıcı hale gelecektir.</translation>
    </message>
</context>
<context>
    <name>GradientEditor</name>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="332"/>
        <source>Position:</source>
        <translation>Konum:</translation>
    </message>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="333"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <source>Here you can add, change or remove Color-Stops.</source>
        <translation type="obsolete">Here you can add, change or remove Colour-Stops.</translation>
    </message>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="341"/>
        <source>Add, change or remove color stops here</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>GradientVectorDialog</name>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="100"/>
        <source>Gradient Vector</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>GuideManager</name>
    <message>
        <source>Manage Guides</source>
        <translation type="obsolete">Kılavuz Yönetimi</translation>
    </message>
    <message>
        <source>Horizontal Guides</source>
        <translation type="obsolete">Yatay Kılavuzlar</translation>
    </message>
    <message>
        <source>Vertical Guides</source>
        <translation type="obsolete">Dikey Kılavuzlar</translation>
    </message>
    <message>
        <source>&amp;Y-Pos:</source>
        <translation type="obsolete">&amp;Y-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="53"/>
        <location filename="../../../scribus/guidemanager.cpp" line="236"/>
        <source>&amp;Add</source>
        <translation type="unfinished">&amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="63"/>
        <location filename="../../../scribus/guidemanager.cpp" line="237"/>
        <source>D&amp;elete</source>
        <translation type="unfinished">&amp;Sil</translation>
    </message>
    <message>
        <source>&amp;X-Pos:</source>
        <translation type="obsolete">&amp;X-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="92"/>
        <location filename="../../../scribus/guidemanager.cpp" line="238"/>
        <source>A&amp;dd</source>
        <translation type="unfinished">E&amp;kle</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="102"/>
        <location filename="../../../scribus/guidemanager.cpp" line="239"/>
        <source>De&amp;lete</source>
        <translation type="unfinished">&amp;Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="117"/>
        <location filename="../../../scribus/guidemanager.cpp" line="240"/>
        <source>&amp;Lock Guides</source>
        <translation type="unfinished">Kılavuzları &amp;kilitle</translation>
    </message>
    <message>
        <source>&amp;Rows:</source>
        <translation type="obsolete">S&amp;atırlar:</translation>
    </message>
    <message>
        <source>C&amp;olumns:</source>
        <translation type="obsolete">Süt&amp;unlar:</translation>
    </message>
    <message>
        <source>Refer to:</source>
        <translation type="obsolete">Refer to:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="192"/>
        <location filename="../../../scribus/guidemanager.ui" line="279"/>
        <location filename="../../../scribus/guidemanager.cpp" line="250"/>
        <location filename="../../../scribus/guidemanager.cpp" line="253"/>
        <source>&amp;Page</source>
        <translation type="unfinished">S&amp;ayfa</translation>
    </message>
    <message>
        <source>&amp;Margins</source>
        <translation type="obsolete">&amp;Kenarlıklar</translation>
    </message>
    <message>
        <source>&amp;Selection</source>
        <translation type="obsolete">&amp;Seçim</translation>
    </message>
    <message>
        <source>&amp;Close</source>
        <translation type="obsolete">&amp;Kapat</translation>
    </message>
    <message>
        <source>Rows and Columns - Automatic Guides</source>
        <translation type="obsolete">Satır ve Sütunlar - Otomatik Kılavuzlar</translation>
    </message>
    <message>
        <source>Row &amp;Gap</source>
        <translation type="obsolete">Sa&amp;tır Boşluğu</translation>
    </message>
    <message>
        <source>Colum&amp;n Gap</source>
        <translation type="obsolete">Sütun B&amp;oşluğu</translation>
    </message>
    <message>
        <source>&amp;Update</source>
        <translation type="obsolete">&amp;Güncelle</translation>
    </message>
    <message>
        <source>Set the guides in document. Guide manager is still opened but the changes are persistant</source>
        <comment>guide manager</comment>
        <translation type="obsolete">Set the guides in document. Guide manager is still opened but the changes are persistant</translation>
    </message>
    <message>
        <source>&amp;Apply to All Pages</source>
        <translation type="obsolete">&amp;Tüm Sayfalara Uygula</translation>
    </message>
    <message>
        <source>Guide</source>
        <translation type="obsolete">Kılavuz</translation>
    </message>
    <message>
        <source>Unit</source>
        <translation type="obsolete">Birim</translation>
    </message>
    <message>
        <source>Preview</source>
        <translation type="obsolete">Önizleme</translation>
    </message>
    <message>
        <source>There is empty (0.0) guide already</source>
        <translation type="obsolete">Zaten boş bir kılavuz var(0,0)</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="29"/>
        <location filename="../../../scribus/guidemanager.cpp" line="231"/>
        <source>&amp;Single</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="37"/>
        <location filename="../../../scribus/guidemanager.ui" line="144"/>
        <location filename="../../../scribus/guidemanager.cpp" line="234"/>
        <location filename="../../../scribus/guidemanager.cpp" line="242"/>
        <source>Horizontals</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="56"/>
        <location filename="../../../scribus/guidemanager.ui" line="208"/>
        <location filename="../../../scribus/guidemanager.ui" line="295"/>
        <location filename="../../../scribus/guidemanager.ui" line="354"/>
        <source>Alt+A</source>
        <translation type="unfinished">Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="66"/>
        <location filename="../../../scribus/guidemanager.ui" line="218"/>
        <location filename="../../../scribus/guidemanager.ui" line="305"/>
        <source>Alt+E</source>
        <translation type="unfinished">Alt+E</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="76"/>
        <location filename="../../../scribus/guidemanager.ui" line="231"/>
        <location filename="../../../scribus/guidemanager.cpp" line="235"/>
        <location filename="../../../scribus/guidemanager.cpp" line="243"/>
        <source>Verticals</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="95"/>
        <source>Alt+D</source>
        <translation type="unfinished">Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="105"/>
        <location filename="../../../scribus/guidemanager.ui" line="120"/>
        <source>Alt+L</source>
        <translation type="unfinished">Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="127"/>
        <location filename="../../../scribus/guidemanager.ui" line="318"/>
        <location filename="../../../scribus/guidemanager.cpp" line="241"/>
        <location filename="../../../scribus/guidemanager.cpp" line="256"/>
        <source>Appl&amp;y to All Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="130"/>
        <location filename="../../../scribus/guidemanager.ui" line="321"/>
        <source>Alt+Y</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="138"/>
        <location filename="../../../scribus/guidemanager.cpp" line="232"/>
        <source>&amp;Column/Row</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="150"/>
        <location filename="../../../scribus/guidemanager.cpp" line="244"/>
        <source>&amp;Number:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="173"/>
        <location filename="../../../scribus/guidemanager.cpp" line="246"/>
        <source>U&amp;se Gap:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="176"/>
        <source>Alt+S</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="195"/>
        <location filename="../../../scribus/guidemanager.ui" line="282"/>
        <location filename="../../../scribus/guidemanager.ui" line="341"/>
        <source>Alt+P</source>
        <translation type="unfinished">Alt+P</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="205"/>
        <location filename="../../../scribus/guidemanager.ui" line="292"/>
        <location filename="../../../scribus/guidemanager.cpp" line="251"/>
        <location filename="../../../scribus/guidemanager.cpp" line="254"/>
        <source>M&amp;argins</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="215"/>
        <location filename="../../../scribus/guidemanager.ui" line="302"/>
        <location filename="../../../scribus/guidemanager.cpp" line="252"/>
        <location filename="../../../scribus/guidemanager.cpp" line="255"/>
        <source>S&amp;election</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="237"/>
        <location filename="../../../scribus/guidemanager.cpp" line="245"/>
        <source>Nu&amp;mber:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="260"/>
        <location filename="../../../scribus/guidemanager.cpp" line="247"/>
        <source>Use &amp;Gap:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="263"/>
        <source>Alt+G</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="329"/>
        <location filename="../../../scribus/guidemanager.cpp" line="233"/>
        <source>&amp;Misc</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="335"/>
        <source>Delete all guides from the current page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="338"/>
        <location filename="../../../scribus/guidemanager.cpp" line="257"/>
        <source>Delete Guides from Current &amp;Page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="348"/>
        <source>Delete all guides from the current document</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="351"/>
        <location filename="../../../scribus/guidemanager.cpp" line="258"/>
        <source>Delete Guides from &amp;All Pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="16"/>
        <location filename="../../../scribus/guidemanager.cpp" line="230"/>
        <source>Guide Manager</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="260"/>
        <source>Add a new horizontal guide</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="261"/>
        <source>Delete the selected horizontal guide</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="262"/>
        <source>Add a new vertical guide</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="263"/>
        <source>Delete the selected vertical guide</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="264"/>
        <source>Lock the guides</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="265"/>
        <source>Apply to all pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="266"/>
        <source>Number of horizontal guides to create</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="267"/>
        <source>Number of vertical guides to create</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="268"/>
        <source>Create rows with guides, with an additional gap between the rows</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="269"/>
        <source>Create columns with guides, with an additional gap between the columns</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="270"/>
        <source>Create the selected number of horizontal guides relative to the current page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="271"/>
        <source>Create the selected number of horizontal guides relative to the current page&apos;s margins</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="272"/>
        <source>Create the selected number of horizontal guides relative to the current selection of items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="273"/>
        <source>Create the selected number of vertical guides relative to the current page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="274"/>
        <source>Create the selected number of vertical guides relative to the current page&apos;s margins</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="275"/>
        <source>Create the selected number of vertical guides relative to the current selection of items</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="276"/>
        <source>Apply the shown guides to all pages in the document</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="277"/>
        <source>Delete all guides shown on the current page</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="278"/>
        <source>Delete all guides from all pages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="186"/>
        <location filename="../../../scribus/guidemanager.ui" line="273"/>
        <location filename="../../../scribus/guidemanager.cpp" line="248"/>
        <location filename="../../../scribus/guidemanager.cpp" line="249"/>
        <source>Refer to</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>GuideManagerBase</name>
    <message>
        <source>Manage Guides</source>
        <translation type="obsolete">Kılavuz Yönetimi</translation>
    </message>
    <message>
        <source>Guide</source>
        <translation type="obsolete">Kılavuz</translation>
    </message>
    <message>
        <source>&amp;Add</source>
        <translation type="obsolete">&amp;Ekle</translation>
    </message>
    <message>
        <source>Alt+A</source>
        <translation type="obsolete">Alt+A</translation>
    </message>
    <message>
        <source>D&amp;elete</source>
        <translation type="obsolete">&amp;Sil</translation>
    </message>
    <message>
        <source>Alt+E</source>
        <translation type="obsolete">Alt+E</translation>
    </message>
    <message>
        <source>A&amp;dd</source>
        <translation type="obsolete">E&amp;kle</translation>
    </message>
    <message>
        <source>Alt+D</source>
        <translation type="obsolete">Alt+D</translation>
    </message>
    <message>
        <source>De&amp;lete</source>
        <translation type="obsolete">&amp;Sil</translation>
    </message>
    <message>
        <source>Alt+L</source>
        <translation type="obsolete">Alt+L</translation>
    </message>
    <message>
        <source>&amp;Lock Guides</source>
        <translation type="obsolete">Kılavuzları &amp;kilitle</translation>
    </message>
    <message>
        <source>&amp;Page</source>
        <translation type="obsolete">S&amp;ayfa</translation>
    </message>
    <message>
        <source>Alt+P</source>
        <translation type="obsolete">Alt+P</translation>
    </message>
</context>
<context>
    <name>HelpBrowser</name>
    <message>
        <source>Sorry, no manual available! Please see: http://docs.scribus.net for updated docs
and www.scribus.net for downloads.</source>
        <translation type="obsolete">Üzgünüz; kullanım kılavuzu yok! Güncel dokümanlar için www.pozitifpc.com
adresini ziyaret edin.</translation>
    </message>
    <message>
        <source>Contents</source>
        <translation type="obsolete">İçerik</translation>
    </message>
    <message>
        <source>Link</source>
        <translation type="obsolete">Link</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="286"/>
        <source>Scribus Online Help</source>
        <translation>Scribus Çevrimiçi Yardım</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="31"/>
        <source>&amp;Contents</source>
        <translation>&amp;İçerik</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="60"/>
        <source>&amp;Search</source>
        <translation>&amp;Ara</translation>
    </message>
    <message>
        <source>unknown</source>
        <translation type="obsolete">bilinmiyor</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="377"/>
        <source>Find</source>
        <translation>Bul</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="377"/>
        <source>Search Term:</source>
        <translation>Terimi Ara:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="45"/>
        <source>Se&amp;arch</source>
        <translation>&amp;Ara</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="96"/>
        <source>&amp;New</source>
        <translation>Y&amp;eni</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="103"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="178"/>
        <location filename="../../../scribus/helpbrowser.cpp" line="298"/>
        <source>&amp;Delete</source>
        <translation>&amp;Sil</translation>
    </message>
    <message>
        <source>De&amp;lete All</source>
        <translation type="obsolete">Tü&amp;münü Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="79"/>
        <source>Book&amp;marks</source>
        <translation>&amp;Yer imleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="148"/>
        <location filename="../../../scribus/helpbrowser.cpp" line="292"/>
        <source>&amp;Print...</source>
        <translation>&amp;Yazdır...</translation>
    </message>
    <message>
        <source>E&amp;xit</source>
        <translation type="obsolete">Çı&amp;k</translation>
    </message>
    <message>
        <source>Searching is case unsensitive</source>
        <translation type="obsolete">Aramada küçük-büyük harf ayrımı gözetilmiyor</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="409"/>
        <source>New Bookmark</source>
        <translation>Yeni yer imi</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="409"/>
        <source>New Bookmark&apos;s Title:</source>
        <translation>Yeni Yer İminin Başlığı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="288"/>
        <source>&amp;File</source>
        <translation>&amp;Dosya</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="158"/>
        <location filename="../../../scribus/helpbrowser.cpp" line="294"/>
        <source>&amp;Find...</source>
        <translation>&amp;Bul...</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="295"/>
        <source>Find &amp;Next</source>
        <translation>So&amp;nrakini Bul</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="296"/>
        <source>Find &amp;Previous</source>
        <translation>Ön&amp;cekini Bul</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="289"/>
        <source>&amp;Edit</source>
        <translation>Düzen&amp;le</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="297"/>
        <source>&amp;Add Bookmark</source>
        <translation>Yer imi &amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="110"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="183"/>
        <location filename="../../../scribus/helpbrowser.cpp" line="299"/>
        <source>D&amp;elete All</source>
        <translation>Tü&amp;münü Sil</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="290"/>
        <source>&amp;Bookmarks</source>
        <translation>&amp;Yer imleri</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="13"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="137"/>
        <source>Scribus Help</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="53"/>
        <source>Searching is case insensitive</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="70"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="86"/>
        <source>1</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="153"/>
        <source>&amp;Exit</source>
        <translation type="unfinished">&amp;Exit</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="163"/>
        <source>Find &amp;Next...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="168"/>
        <source>Find &amp;Previous...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="173"/>
        <source>&amp;Add</source>
        <translation type="unfinished">&amp;Ekle</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="293"/>
        <source>&amp;Quit</source>
        <translation type="unfinished">Çı&amp;k</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="718"/>
        <source>&lt;h2&gt;&lt;p&gt;Sorry, no manual is installed!&lt;/p&gt;&lt;p&gt;Please see:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;http://docs.scribus.net for updated documentation&lt;/li&gt;&lt;li&gt;http://www.scribus.net for downloads&lt;/li&gt;&lt;/ul&gt;&lt;/h2&gt;</source>
        <comment>HTML message for no documentation available to show</comment>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>HelpBrowser2</name>
    <message>
        <source>&amp;Contents</source>
        <translation type="obsolete">&amp;İçerik</translation>
    </message>
    <message>
        <source>Se&amp;arch</source>
        <translation type="obsolete">&amp;Ara</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Ara</translation>
    </message>
    <message>
        <source>Book&amp;marks</source>
        <translation type="obsolete">&amp;Yer imleri</translation>
    </message>
</context>
<context>
    <name>HunspellDialog</name>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialog.cpp" line="80"/>
        <source>Spelling check complete</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>HunspellDialogBase</name>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="14"/>
        <source>Check Spelling</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="22"/>
        <source>Text Language:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="47"/>
        <source>Not in dictionary</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="61"/>
        <source>Ignore Once</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="68"/>
        <source>Ignore All</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="92"/>
        <source>Suggestions</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="106"/>
        <source>Change</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspelldialogbase.ui" line="113"/>
        <source>Change All</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>HunspellPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspellplugin.cpp" line="33"/>
        <source>Check Spelling...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspellplugin.cpp" line="64"/>
        <source>Hunspell-based spell checker</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/hunspellcheck/hunspellplugin.cpp" line="65"/>
        <source>Spell Checker based on the Hunspell libraries</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>HyAsk</name>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="48"/>
        <source>Possible Hyphenation</source>
        <translation>Muhtemel Tireleme</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="68"/>
        <source>Accept</source>
        <translation>Kabul Et</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="89"/>
        <source>Skip</source>
        <translation>Atla</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="107"/>
        <source>Cancel</source>
        <translation>İptal</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="77"/>
        <source>Add to the
Exception List</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="97"/>
        <source>Add to the
Ignore List</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>HySettings</name>
    <message>
        <source>Length of the smallest word to be hyphenated.</source>
        <translation type="obsolete">Tirelenebilecek en küçük kelimenin uzunluğu.</translation>
    </message>
    <message>
        <source>Maximum number of Hyphenations following each other.
A value of 0 means unlimited hyphenations.</source>
        <translation type="obsolete">Birbirini takip eden maksimum tireleme sayısı.
Limitsiz için 0 verin.</translation>
    </message>
    <message>
        <source>&amp;Language:</source>
        <translation type="obsolete">&amp;Dil:</translation>
    </message>
    <message>
        <source>&amp;Smallest Word:</source>
        <translation type="obsolete">&amp;En Küçük Kelime:</translation>
    </message>
    <message>
        <source>&amp;Hyphenation Suggestions</source>
        <translation type="obsolete">&amp;Tireleme Önerileri</translation>
    </message>
    <message>
        <source>Hyphenate Text Automatically &amp;During Typing</source>
        <translation type="obsolete">Metni Yazarken Otomatik Olarak &amp;Tirele</translation>
    </message>
    <message>
        <source>A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</source>
        <translation type="obsolete">A dialog box showing all possible hyphens for each word will show up when you use the Extras, Hyphenate Text option.</translation>
    </message>
    <message>
        <source>Enables automatic hyphenation of your text while typing.</source>
        <translation type="obsolete">Metin yazarken otomatik tirelenmesini sağlar.</translation>
    </message>
    <message>
        <source>Consecutive Hyphenations &amp;Allowed:</source>
        <translation type="obsolete">Arka &amp;arkaya izin verilen tirelemeler:</translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="91"/>
        <location filename="../../../scribus/hysettings.cpp" line="103"/>
        <source>Ignore List</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="91"/>
        <location filename="../../../scribus/hysettings.cpp" line="132"/>
        <source>Add a new Entry</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="103"/>
        <location filename="../../../scribus/hysettings.cpp" line="144"/>
        <source>Edit Entry</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="132"/>
        <location filename="../../../scribus/hysettings.cpp" line="144"/>
        <source>Exception List</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="253"/>
        <location filename="../../../scribus/hysettings.cpp" line="413"/>
        <source>Language</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="253"/>
        <location filename="../../../scribus/hysettings.cpp" line="413"/>
        <source>Code</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="253"/>
        <source>Location</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="413"/>
        <source>Installed</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="413"/>
        <source>Download</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ImageInfoDialog</name>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="23"/>
        <source>Image Info</source>
        <translation>Resim Bilgisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="30"/>
        <source>General Info</source>
        <translation>Genel Bilgi</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="34"/>
        <source>Date / Time:</source>
        <translation>Tarih / Saat:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="38"/>
        <source>Has Embedded Profile:</source>
        <translation>Gömülü profili var mı:</translation>
    </message>
    <message>
        <source>Yes</source>
        <translation type="obsolete">Evet</translation>
    </message>
    <message>
        <source>No</source>
        <translation type="obsolete">Hayır</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="46"/>
        <source>Profile Name:</source>
        <translation>Profil Adı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="50"/>
        <source>Has Embedded Paths:</source>
        <translation>Gömülü dosya yolu varmı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="58"/>
        <source>Has Layers:</source>
        <translation>Katman varmı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="69"/>
        <source>EXIF Info</source>
        <translation>EXIF Bilgisi</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="84"/>
        <source>Artist:</source>
        <translation>Sanatçı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="126"/>
        <source>Comment:</source>
        <translation>Yorum:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="127"/>
        <source>User Comment:</source>
        <translation>Kullanıcı Yorumu:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="128"/>
        <source>Camera Model:</source>
        <translation>Kamera Modeli:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="129"/>
        <source>Camera Manufacturer:</source>
        <translation>Kamera Üreticisi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="135"/>
        <source>Description:</source>
        <translation>Tanım:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="136"/>
        <source>Copyright:</source>
        <translation>Yayın Hakkı:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="137"/>
        <source>Scanner Model:</source>
        <translation>Tarayıcı Modeli:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="138"/>
        <source>Scanner Manufacturer:</source>
        <translation>Tarayıcı Üreticisi:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="130"/>
        <source>Exposure time</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="131"/>
        <source>Aperture:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="132"/>
        <source>ISO equiv.:</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ImportAIPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="58"/>
        <source>Import AI...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="79"/>
        <source>Imports Illustrator Files</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="80"/>
        <source>Imports most Illustrator files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="162"/>
        <source>The file could not be imported</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ImportCvgPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvgplugin.cpp" line="58"/>
        <source>Import Cvg...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvgplugin.cpp" line="79"/>
        <source>Imports Cvg Files</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvgplugin.cpp" line="80"/>
        <source>Imports most Cvg files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvgplugin.cpp" line="126"/>
        <source>All Supported Formats</source>
        <translation type="unfinished">Desteklenen tüm dosya türleri</translation>
    </message>
</context>
<context>
    <name>ImportDialog</name>
    <message>
        <source>Choose Styles</source>
        <translation type="obsolete">Stilleri Seç</translation>
    </message>
    <message>
        <source>Available Styles</source>
        <translation type="obsolete">Mevcut Stiller</translation>
    </message>
</context>
<context>
    <name>ImportPSPlugin</name>
    <message>
        <source>Import &amp;EPS/PS...</source>
        <translation type="obsolete">&amp;EPS/PS al...</translation>
    </message>
    <message>
        <source>Imports EPS Files</source>
        <translation type="obsolete">EPS dosyalarını alır</translation>
    </message>
    <message>
        <source>Imports most EPS files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="obsolete">Mevcut belgeye EPS dosyalarını alır ve vektör 
bilgilerini Scribus nesnesine dönüştürür.</translation>
    </message>
    <message>
        <source>PostScript</source>
        <translation type="obsolete">PostScript</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importpsplugin.cpp" line="57"/>
        <source>Import PostScript...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importpsplugin.cpp" line="78"/>
        <source>Imports PostScript Files</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importpsplugin.cpp" line="79"/>
        <source>Imports most PostScript files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>ImportPctPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/import/pct/importpctplugin.cpp" line="51"/>
        <source>Import Pict...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/pct/importpctplugin.cpp" line="72"/>
        <source>Imports Pict Files</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/pct/importpctplugin.cpp" line="73"/>
        <source>Imports most Mac Pict files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/pct/importpctplugin.cpp" line="119"/>
        <source>All Supported Formats</source>
        <translation type="unfinished">Desteklenen tüm dosya türleri</translation>
    </message>
</context>
<context>
    <name>ImportXfigPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/import/xfig/importxfigplugin.cpp" line="58"/>
        <source>Import Xfig...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/xfig/importxfigplugin.cpp" line="79"/>
        <source>Imports Xfig Files</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/xfig/importxfigplugin.cpp" line="80"/>
        <source>Imports most Xfig files into the current document,
converting their vector data into Scribus objects.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/xfig/importxfigplugin.cpp" line="126"/>
        <source>All Supported Formats</source>
        <translation type="unfinished">Desteklenen tüm dosya türleri</translation>
    </message>
</context>
<context>
    <name>Imposition</name>
    <message>
        <location filename="../../../scribus/plugins/imposition/imposition.cpp" line="72"/>
        <source>Portrait</source>
        <translation type="unfinished">Dikey</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/imposition.cpp" line="73"/>
        <source>Landscape</source>
        <translation type="unfinished">Yatay</translation>
    </message>
</context>
<context>
    <name>ImpositionBase</name>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="19"/>
        <source>Imposition</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="44"/>
        <source>Gri&amp;d</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="102"/>
        <source>Copies</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="157"/>
        <source>Do&amp;uble sided</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="160"/>
        <source>Alt+U</source>
        <translation type="unfinished">Alt+U</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/imposition/impositionbase.ui" line="186"/>
        <source>Front side</source>
        <translation type="unfinished"></translation>
    </message>
    <messag