Subversion Repositories Scribus

Rev

Rev 14890 | Rev 15097 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="en_GB">
<context>
    <name></name>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="27"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="41"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="56"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="70"/>
        <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 = Yellow 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>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 = Yellow 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="83"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="100"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="28"/>
        <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
optional 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>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
optional 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="56"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="95"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="107"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="16"/>
        <source>newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder, numPages) -&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).

numPage = Number of pages to be created.

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, 1)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</source>
        <translation>newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder, numPages) -&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).

numPage = Number of pages to be created.

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, 1)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="62"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="103"/>
        <source>closeDoc()

Closes the current document without prompting to save.

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

Closes the current document without prompting to save.

May throw NoDocOpenError if there is no document to close
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="114"/>
        <source>haveDoc() -&gt; bool

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

Returns true if there is a document open.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="123"/>
        <source>openDoc(&quot;name&quot;)

Opens the document &quot;name&quot;.

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

Opens the document &quot;name&quot;.

May raise ScribusError if the document could not be opened.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="134"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="146"/>
        <source>getDocName() -&gt; string

Returns the name the document was saved under.
If the document was not saved before the name is empty.
</source>
        <translation>getDocName() -&gt; string

Returns the name the document was saved under.
If the document was not saved before the name is empty.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="156"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="168"/>
        <source>setInfo(&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>setInfo(&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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="178"/>
        <source>setMargins(lr, rr, tr, br)

Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</source>
        <translation>setMargins(lr, rr, tr, br)

Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="189"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="201"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="212"/>
        <source>loadStylesFromFile(&quot;filename&quot;)

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

Loads paragraph styles from the Scribus document at &quot;filename&quot; into the
current document.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="222"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="232"/>
        <source>closeMasterPage()

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

Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="240"/>
        <source>masterPageNames()

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

Returns a list of the names of all master pages in the document.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="247"/>
        <source>editMasterPage(pageName)

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

Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="255"/>
        <source>createMasterPage(pageName)

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

Creates a new master page named pageName and opens it for
editing.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="263"/>
        <source>deleteMasterPage(pageName)

Delete the named master page.
</source>
        <translation>deleteMasterPage(pageName)

Delete the named master page.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="17"/>
        <source>getObjectType([&quot;name&quot;]) -&gt; string

Get type of object &quot;name&quot; as a string.
</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="26"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="36"/>
        <source>getFillTransparency([&quot;name&quot;]) -&gt; float

Returns the fill transparency of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</source>
        <translation>getFillTransparency([&quot;name&quot;]) -&gt; float

Returns the fill transparency of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="46"/>
        <source>getFillBlendmode([&quot;name&quot;]) -&gt; integer

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

Returns the fill blendmode of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="56"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="66"/>
        <source>getLineTransparency([&quot;name&quot;]) -&gt; float

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

Returns the line transparency of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="76"/>
        <source>getLineBlendmode([&quot;name&quot;]) -&gt; integer

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

Returns the line blendmode of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="86"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="96"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="106"/>
        <source>getLineJoin([&quot;name&quot;]) -&gt; integer (see constants)

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>getLineJoin([&quot;name&quot;]) -&gt; integer (see constants)

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="117"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="128"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="139"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="149"/>
        <source>getCornerRadius([&quot;name&quot;]) -&gt; integer

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

Returns 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.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="160"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="170"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="180"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="192"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="204"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="215"/>
        <source>getAllObjects() -&gt; list

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

Returns a list containing the names of all objects on the current page.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="77"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="96"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="123"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="158"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="29"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="41"/>
        <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 vertex 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>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 vertex 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="54"/>
        <source>rotateObjectAbs(rot [, &quot;name&quot;])

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

Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
selected item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="65"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="75"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="86"/>
        <source>selectionCount() -&gt; integer

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

Returns the number of selected objects.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="95"/>
        <source>selectObject(&quot;name&quot;)

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

Selects the object with the given &quot;name&quot;.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="104"/>
        <source>deselectAll()

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

Deselects all objects in the whole document.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="113"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="124"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="132"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="147"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="186"/>
        <source>setImageOffset(x, y [, &quot;name&quot;])

Sets the position of the picture in the image frame &quot;name&quot;.
If &quot;name&quot; is not given the currently selected item is used.
The specified offset values are equal to the values shown on 
properties palette when point unit is used.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation type="unfinished"></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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="201"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="212"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="221"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="19"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="30"/>
        <source>getFontNames() -&gt; list

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

Returns a list with the names of all available fonts.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="39"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="52"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="68"/>
        <source>getLayers() -&gt; list

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

Returns a list with the names of all defined layers.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="77"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="89"/>
        <source>getActiveLayer() -&gt; string

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

Returns the name of the current active layer.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="98"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="111"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="124"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="137"/>
        <source>setLayerLocked(&quot;layer&quot;, locked)

Sets the layer &quot;layer&quot; to be locked or not. If locked is set to
true the layer will be locked.

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

Sets the layer &quot;layer&quot; to be locked or not. If locked is set to
true the layer will be locked.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="150"/>
        <source>setLayerOutlined(&quot;layer&quot;, outline)

Sets the layer &quot;layer&quot; to be locked or not. If outline is set to
true the layer will be displayed outlined.

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

Sets the layer &quot;layer&quot; to be locked or not. If outline is set to
true the layer will be displayed outlined.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="163"/>
        <source>setLayerFlow(&quot;layer&quot;, flow)

Sets the layers &quot;layer&quot;  flowcontrol to flow. If flow is set to
true text in layers above this one will flow around objects on this layer.

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

Sets the layers &quot;layer&quot;  flowcontrol to flow. If flow is set to
true text in layers above this one will flow around objects on this layer.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="176"/>
        <source>setLayerBlendmode(&quot;layer&quot;, blend)

Sets the layers &quot;layer&quot;  blendmode to blend.

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

Sets the layers &quot;layer&quot;  blendmode to blend.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="188"/>
        <source>setLayerTransparency(&quot;layer&quot;, trans)

Sets the layers &quot;layer&quot;  transparency to trans.

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

Sets the layers &quot;layer&quot;  transparency to trans.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="200"/>
        <source>isLayerVisible(&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>isLayerVisible(&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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="214"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="228"/>
        <source>isLayerLocked(&quot;layer&quot;) -&gt; bool

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

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

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

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="242"/>
        <source>isLayerOutlined(&quot;layer&quot;) -&gt; bool

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

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

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

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="256"/>
        <source>isLayerFlow(&quot;layer&quot;) -&gt; bool

Returns whether text flows around objects on layer &quot;layer&quot;, a value of True means
that text flows around, a value of False means that the text does not flow around.

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

Returns whether text flows around objects on layer &quot;layer&quot;, a value of True means
that text flows around, a value of False means that the text does not flow around.

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="269"/>
        <source>getLayerBlendmode(&quot;layer&quot;) -&gt; int

Returns the &quot;layer&quot; layer blendmode,

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

Returns the &quot;layer&quot; layer blendmode,

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="281"/>
        <source>getLayerTransparency(&quot;layer&quot;) -&gt; float

Returns the &quot;layer&quot; layer transparency,

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

Returns the &quot;layer&quot; layer transparency,

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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="293"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="306"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="317"/>
        <source>fileQuit()

Quit Scribus.
</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="326"/>
        <source>getGuiLanguage() -&gt; string

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

Returns a string with the -lang value.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="335"/>
        <source>moveSelectionToFront()

Moves current selection to front.
</source>
        <translation>moveSelectionToFront()Moves current selection to front.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="344"/>
        <source>moveSelectionToFront()

Moves current selection to back.
</source>
        <translation>moveSelectionToFront()Moves current selection to back.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="34"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="51"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="66"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="81"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="96"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="114"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="134"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="155"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="173"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="184"/>
        <source>textFlowMode(&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 int &quot;state&quot; (0 &lt;= state &lt;= 3).
Setting &quot;state&quot; to 0 will disable text flow.
Setting &quot;state&quot; to 1 will make text flow around object frame.
Setting &quot;state&quot; to 2 will make text flow around bounding box.
Setting &quot;state&quot; to 3 will make text flow around contour line.
If &quot;state&quot; is not passed, text flow is toggled.
</source>
        <translation>textFlowMode(&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 int &quot;state&quot; (0 &lt;= state &lt;= 3).
Setting &quot;state&quot; to 0 will disable text flow.
Setting &quot;state&quot; to 1 will make text flow around object frame.
Setting &quot;state&quot; to 2 will make text flow around bounding box.
Setting &quot;state&quot; to 3 will make text flow around contour line.
If &quot;state&quot; is not passed, text flow is toggled.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="206"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="223"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="237"/>
        <source>getAllStyles() -&gt; list

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

Return a list of the names of all paragraph styles in the current document.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="249"/>
        <source>duplicateObject([&quot;name&quot;]) -&gt; string

creates a Duplicate of the selected Object (or Selection Group).
</source>
        <translation>duplicateObject([&quot;name&quot;]) -&gt; string

creates a Duplicate of the selected Object (or Selection Group).
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="32"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="42"/>
        <source>redrawAll()

Redraws all pages.
</source>
        <translation>redrawAll()

Redraws all pages.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="51"/>
        <source>getPageType() -&gt; integer

Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page
</source>
        <translation>getPageType() -&gt; integer

Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="60"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="71"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="84"/>
        <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 (currently) 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>gotoPage(nr)

Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn&apos;t (currently) 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="97"/>
        <source>pageCount() -&gt; integer

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

Returns the number of pages in the document.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="106"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="116"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="129"/>
        <source>getVGuides()

See getHGuides.
</source>
        <translation>getVGuides()

See getHGuides.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="138"/>
        <source>setVGuides()

See setHGuides.
</source>
        <translation>setVGuides()

See setHGuides.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="147"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="161"/>
        <source>getPageNSize() -&gt; tuple

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

Returns a tuple with a particular page&apos;s size measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="174"/>
        <source>getPageNMargins() -&gt; tuple

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

Returns a tuple with a particular page&apos;s margins measured in the document&apos;s current units.
See UNIT_&lt;type&gt; constants and getPageMargins()</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="187"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="203"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="216"/>
        <source>importPage(&quot;fromDoc&quot;, (pageList), [create, imortwhere, importwherePage])

Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the &quot;Page-&gt;Import&quot; dropdown menu function.
fromDoc: string; the filename of the document to import pages from
pageList: tuple with page numbers of pages to import
create: number; 0 to replace existing pages, 1 (default) to insert new pages
importWhere: number; the page number (of the current document) at which import the pages
importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document
</source>
        <translation>importPage(&quot;fromDoc&quot;, (pageList), [create, imortwhere, importwherePage])Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the &quot;Page-&gt;Import&quot; dropdown menu function.fromDoc: string; the filename of the document to import pages frompageList: tuple with page numbers of pages to importcreate: number; 0 to replace existing pages, 1 (default) to insert new pagesimportWhere: number; the page number (of the current document) at which import the pagesimportWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="17"/>
        <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>setGradientFill(type, &quot;colour1&quot;, shade1, &quot;colour2&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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="39"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="50"/>
        <source>setFillTransparency(transparency, [&quot;name&quot;])

Sets the fill transparency of the object &quot;name&quot; to transparency
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation>setFillTransparency(transparency, [&quot;name&quot;])

Sets the fill transparency of the object &quot;name&quot; to transparency
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="60"/>
        <source>setFillBlendmode(blendmode, [&quot;name&quot;])

Sets the fill blendmode of the object &quot;name&quot; to blendmode
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation>setFillBlendmode(blendmode, [&quot;name&quot;])

Sets the fill blendmode of the object &quot;name&quot; to blendmode
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="70"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="80"/>
        <source>setLineTransparency(transparency, [&quot;name&quot;])

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

Sets the line transparency of the object &quot;name&quot; to transparency
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="90"/>
        <source>setLineBlendmode(blendmode, [&quot;name&quot;])

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

Sets the line blendmode of the object &quot;name&quot; to blendmode
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="100"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="113"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="127"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="138"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="149"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="160"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="174"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="186"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="22"/>
        <source>createParagraphStyle(...)

Creates a paragraph style. This function takes the following keyword parameters:

&quot;name&quot; [required] -&gt; specifies the name of the paragraphstyle to create

linespacingmode [optional] -&gt; specifies the linespacing mode; possible modes are:

fixed linespacing:          0

automatic linespacing:      1

baseline grid linespacing:  2

linespacing [optional] -&gt; specifies the linespacing if using fixed linespacing

alignment [optional] -&gt; specifies the alignment of the paragraph

-&gt; left:     0

-&gt; center:   1

-&gt; right:    2

-&gt; justify:  3

-&gt; extend:   4

leftmargin [optional], rightmargin [optional] -&gt; specify the margin

gapbefore [optional], gapafter [optional] -&gt; specify the gaps to the heading and following paragraphs

firstindent [optional] -&gt; the indent of the first line

hasdropcap [optional] -&gt; specifies if there are caps (1 = yes, 0 = no)

dropcaplines [optional] -&gt; height (in lines) of the caps if used

dropcapoffset [optional] -&gt; offset of the caps if used

&quot;charstyle&quot; [optional] -&gt; char style to use

</source>
        <translation>createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:&quot;name&quot; [required] -&gt; specifies the name of the paragraphstyle to createlinespacingmode [optional] -&gt; specifies the linespacing mode; possible modes are:fixed linespacing:          0automatic linespacing:      1baseline grid linespacing:  2linespacing [optional] -&gt; specifies the linespacing if using fixed linespacingalignment [optional] -&gt; specifies the alignment of the paragraph-&gt; left:     0-&gt; center:   1-&gt; right:    2-&gt; justify:  3-&gt; extend:   4leftmargin [optional], rightmargin [optional] -&gt; specify the margingapbefore [optional], gapafter [optional] -&gt; specify the gaps to the heading and following paragraphsfirstindent [optional] -&gt; the indent of the first linehasdropcap [optional] -&gt; specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -&gt; height (in lines) of the caps if useddropcapoffset [optional] -&gt; offset of the caps if used&quot;charstyle&quot; [optional] -&gt; char style to use</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="52"/>
        <source>createCharStyle(...)

Creates a character style. This function takes the following keyword parameters:

&quot;name&quot; [required] -&gt; name of the char style to create

&quot;font&quot; [optional] -&gt; name of the font to use

fontsize [optional] -&gt; font size to set (double)

&quot;features&quot; [optional] -&gt; nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):

-&gt; inherit

-&gt; bold

-&gt; italic

-&gt; underline

-&gt; underlinewords

-&gt; strike

-&gt; superscript

-&gt; subscript

-&gt; outline

-&gt; shadowed

-&gt; allcaps

-&gt; smallcaps

&quot;fillcolor&quot; [optional], &quot;fillshade&quot; [optional] -&gt; specify fill options

&quot;strokecolor&quot; [optional], &quot;strokeshade&quot; [optional] -&gt; specify stroke options

baselineoffset [optional] -&gt; offset of the baseline

shadowxoffset [optional], shadowyoffset [optional] -&gt; offset of the shadow if used

outlinewidth [optional] -&gt; width of the outline if used

underlineoffset [optional], underlinewidth [optional] -&gt; underline options if used

strikethruoffset [optional], strikethruwidth [optional] -&gt; strikethru options if used

scaleh [optional], scalev [optional] -&gt; scale of the chars

tracking [optional] -&gt; tracking of the text

&quot;language&quot; [optional] -&gt; language code

</source>
        <translation>createCharStyle(...)Creates a character style. This function takes the following keyword parameters:&quot;name&quot; [required] -&gt; name of the char style to create&quot;font&quot; [optional] -&gt; name of the font to usefontsize [optional] -&gt; font size to set (double)&quot;features&quot; [optional] -&gt; nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-&gt; inherit-&gt; bold-&gt; italic-&gt; underline-&gt; underlinewords-&gt; strike-&gt; superscript-&gt; subscript-&gt; outline-&gt; shadowed-&gt; allcaps-&gt; smallcaps&quot;fillcolour&quot; [optional], &quot;fillshade&quot; [optional] -&gt; specify fill options&quot;strokecolour&quot; [optional], &quot;strokeshade&quot; [optional] -&gt; specify stroke optionsbaselineoffset [optional] -&gt; offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -&gt; offset of the shadow if usedoutlinewidth [optional] -&gt; width of the outline if usedunderlineoffset [optional], underlinewidth [optional] -&gt; underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -&gt; strikethru options if usedscaleh [optional], scalev [optional] -&gt; scale of the charstracking [optional] -&gt; tracking of the text&quot;language&quot; [optional] -&gt; language code</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="29"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="41"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="51"/>
        <source>getTextLines([&quot;name&quot;]) -&gt; integer

Returns the number of lines 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>getTextLines([&quot;name&quot;]) -&gt; integer

Returns the number of lines 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="61"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="73"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="85"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="95"/>
        <source>getTextDistances([&quot;name&quot;]) -&gt; tuple

Returns the text distances of the text frame &quot;name&quot; expressed in points. The
distances are returned as a tuple like (left, right, top, bottom). If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation>getTextDistances([&quot;name&quot;]) -&gt; tupleReturns the text distances of the text frame &quot;name&quot; expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If &quot;name&quot;is not given the currently selected item is used.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="106"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="116"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="126"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="138"/>
        <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 text at position -1 appends it 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>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 text at position -1 appends it 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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="152"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="165"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="179"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="192"/>
        <source>setTextDistances(left, right, top, bottom, [&quot;name&quot;])

Sets the text distances of the text frame &quot;name&quot; to the values &quot;left&quot;
&quot;right&quot;, &quot;top&quot; and &quot;bottom&quot;. If &quot;name&quot; is not given the currently
selected item is used.

May throw ValueError if any of the distances are out of bounds (must be positive).
</source>
        <translation>setTextDistances(left, right, top, bottom, [&quot;name&quot;])Sets the text distances of the text frame &quot;name&quot; to the values &quot;left&quot;&quot;right&quot;, &quot;top&quot; and &quot;bottom&quot;. If &quot;name&quot; is not given the currentlyselected item is used.May throw ValueError if any of the distances are out of bounds (must be positive).</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="205"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="217"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="229"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="242"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="256"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="267"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="278"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="308"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="321"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="338"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="355"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="366"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="379"/>
        <source>hyphenateText([&quot;name&quot;]) -&gt; bool

Does hyphenation on text 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 a text frame
</source>
        <translation>hyphenateText([&quot;name&quot;]) -&gt; boolDoes hyphenation on text 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 a text frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="393"/>
        <source>dehyphenateText([&quot;name&quot;]) -&gt; bool

Does dehyphenation on text 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 a text frame
</source>
        <translation>dehyphenateText([&quot;name&quot;]) -&gt; boolDoes dehyphenation on text 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 a text frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="408"/>
        <source>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])

Sets whether (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>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])

Sets whether (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>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="420"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="17"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="30"/>
        <source>progressReset()

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

Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="43"/>
        <source>progressTotal(max)

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

Sets the progress bar&apos;s maximum steps value to the specified number.
See progressSet.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="52"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="66"/>
        <source>setCursor()

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

[UNSUPPORTED!] This might break things, so steer clear for now.
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="78"/>
        <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>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>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="91"/>
        <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>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>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="103"/>
        <source>scrollDocument(x,y)

Scroll the document in main GUI window by x and y.
</source>
        <translation>scrollDocument(x,y)Scroll the document in main GUI window by x and y.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="15"/>
        <source>placeSVG(&quot;filename&quot;, x, y)

Places the SVG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SVG placed on the page

If loading was successful, the selection contains the imported SVG
</source>
        <translation>placeSVG(&quot;filename&quot;, x, y)

Places the SVG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SVG placed on the page

If loading was successful, the selection contains the imported SVG
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="27"/>
        <source>placeEPS(&quot;filename&quot;, x, y)

Places the EPS &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the EPS placed on the page

If loading was successful, the selection contains the imported EPS
</source>
        <translation>placeEPS(&quot;filename&quot;, x, y)

Places the EPS &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the EPS placed on the page

If loading was successful, the selection contains the imported EPS
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="39"/>
        <source>placeSXD(&quot;filename&quot;, x, y)

Places the SXD &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SXD placed on the page

If loading was successful, the selection contains the imported SXD
</source>
        <translation>placeSXD(&quot;filename&quot;, x, y)

Places the SXD &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SXD placed on the page

If loading was successful, the selection contains the imported SXD
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="51"/>
        <source>placeODG(&quot;filename&quot;, x, y)

Places the ODG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the ODG placed on the page

If loading was successful, the selection contains the imported ODG
</source>
        <translation>placeODG(&quot;filename&quot;, x, y)

Places the ODG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the ODG placed on the page

If loading was successful, the selection contains the imported ODG
</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="113"/>
        <source>isSpotColor(&quot;name&quot;) -&gt; bool

Returns True if the color &quot;name&quot; is a spot color.
See also setSpotColor()

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="128"/>
        <source>setSpotColor(&quot;name&quot;, spot)

Set the color &quot;name&quot; as a spot color if spot parameter is True.
See also isSpotColor()

May raise NotFoundError if a named color wasn&apos;t found.
May raise ValueError if an invalid color name is specified.
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="159"/>
        <source>scaleImage(x, y [, &quot;name&quot;])

Sets the internal 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 %. Internal scaling factors are different from the values shown on 
properties palette. Note : deprecated, use setImageScale() instead.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="173"/>
        <source>setImageScale(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 %. Scaling factors are equal to the values shown on properties palette.

May raise WrongFrameTypeError if the target frame is not an image frame
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="28"/>
        <source>setGradientStop(&quot;color&quot;, shade, opacity, ramppoint, [&quot;name&quot;])

Set or add a gradient stop to the gradient fill of the object &quot;name&quot; at position ramppoint.
Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill()
must have been called previously for the gradient fill to be visible.
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="288"/>
        <source>setTextScalingV(scale, [&quot;name&quot;])

Sets the vertical character scaling of the object &quot;name&quot; to &quot;scale&quot; in percent.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="298"/>
        <source>setTextScalingH(scale, [&quot;name&quot;])

Sets the horizontal character scaling of the object &quot;name&quot; to &quot;scale&quot; in percent.
If &quot;name&quot; is not given the currently selected item is used.
</source>
        <translation></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;colour1&quot;, shade1, &quot;colour2&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>newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder, numPages) -&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).

numPage = Number of pages to be created.

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, 1)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</source>
        <translation type="obsolete">newDocument(size, margins, orientation, firstPageNumber,
                        unit, pagesType, firstPageOrder, numPages) -&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).

numPage = Number of pages to be created.

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, 1)

May raise ScribusError if is firstPageOrder bigger than allowed by pagesType.
</translation>
    </message>
    <message>
        <source>placeSVG(&quot;filename&quot;, x, y)

Places the SVG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SVG placed on the page

If loading was successful, the selection contains the imported SVG
</source>
        <translation type="obsolete">placeSVG(&quot;filename&quot;, x, y)

Places the SVG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SVG placed on the page

If loading was successful, the selection contains the imported SVG
</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>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>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>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>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>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>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>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>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>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>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>
    <message>
        <source>getFillTransparency([&quot;name&quot;]) -&gt; float

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

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

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

Returns the fill blendmode of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <source>getLineTransparency([&quot;name&quot;]) -&gt; float

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

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

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

Returns the line blendmode of the object &quot;name&quot;. If &quot;name&quot;
is not given the currently selected Item is used.
</translation>
    </message>
    <message>
        <source>setLayerLocked(&quot;layer&quot;, locked)

Sets the layer &quot;layer&quot; to be locked or not. If locked is set to
true the layer will be locked.

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">setLayerLocked(&quot;layer&quot;, locked)

Sets the layer &quot;layer&quot; to be locked or not. If locked is set to
true the layer will be locked.

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>isLayerLocked(&quot;layer&quot;) -&gt; bool

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

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">isLayerLocked(&quot;layer&quot;) -&gt; bool

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

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>isLayerOutlined(&quot;layer&quot;) -&gt; bool

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

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">isLayerOutlined(&quot;layer&quot;) -&gt; bool

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

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>isLayerFlow(&quot;layer&quot;) -&gt; bool

Returns whether text flows around objects on layer &quot;layer&quot;, a value of True means
that text flows around, a value of False means that the text does not flow around.

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">isLayerFlow(&quot;layer&quot;) -&gt; bool

Returns whether text flows around objects on layer &quot;layer&quot;, a value of True means
that text flows around, a value of False means that the text does not flow around.

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>getLayerBlendmode(&quot;layer&quot;) -&gt; int

Returns the &quot;layer&quot; layer blendmode,

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">getLayerBlendmode(&quot;layer&quot;) -&gt; int

Returns the &quot;layer&quot; layer blendmode,

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>getLayerTransparency(&quot;layer&quot;) -&gt; float

Returns the &quot;layer&quot; layer transparency,

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">getLayerTransparency(&quot;layer&quot;) -&gt; float

Returns the &quot;layer&quot; layer transparency,

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>textFlowMode(&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 int &quot;state&quot; (0 &lt;= state &lt;= 3).
Setting &quot;state&quot; to 0 will disable text flow.
Setting &quot;state&quot; to 1 will make text flow around object frame.
Setting &quot;state&quot; to 2 will make text flow around bounding box.
Setting &quot;state&quot; to 3 will make text flow around contour line.
If &quot;state&quot; is not passed, text flow is toggled.
</source>
        <translation type="obsolete">textFlowMode(&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 int &quot;state&quot; (0 &lt;= state &lt;= 3).
Setting &quot;state&quot; to 0 will disable text flow.
Setting &quot;state&quot; to 1 will make text flow around object frame.
Setting &quot;state&quot; to 2 will make text flow around bounding box.
Setting &quot;state&quot; to 3 will make text flow around contour line.
If &quot;state&quot; is not passed, text flow is toggled.
</translation>
    </message>
    <message>
        <source>duplicateObject([&quot;name&quot;]) -&gt; string

creates a Duplicate of the selected Object (or Selection Group).
</source>
        <translation type="obsolete">duplicateObject([&quot;name&quot;]) -&gt; string

creates a Duplicate of the selected Object (or Selection Group).
</translation>
    </message>
    <message>
        <source>setInfo(&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">setInfo(&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>getPageType() -&gt; integer

Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page
</source>
        <translation type="obsolete">getPageType() -&gt; integer

Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page
</translation>
    </message>
    <message>
        <source>getTextLines([&quot;name&quot;]) -&gt; integer

Returns the number of lines 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">getTextLines([&quot;name&quot;]) -&gt; integer

Returns the number of lines 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>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 = Yellow 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 = Yellow 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>getCornerRadius([&quot;name&quot;]) -&gt; integer

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

Returns 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.
</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>rotateObjectAbs(rot [, &quot;name&quot;])

Sets the rotation of the object &quot;name&quot; to &quot;rot&quot;. Positive 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;. Positive values
mean counter clockwise rotation. If &quot;name&quot; is not given the currently
selected item is used.
</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>isLayerVisible(&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">isLayerVisible(&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>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 text at position -1 appends it 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 text at position -1 appends it 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>setMargins(lr, rr, tr, br)

Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(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, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br)
margins are given in the measurement units of the document - see UNIT_&lt;type&gt;
constants.
</translation>
    </message>
    <message>
        <source>setLayerOutlined(&quot;layer&quot;, outline)

Sets the layer &quot;layer&quot; to be locked or not. If outline is set to
true the layer will be displayed outlined.

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">setLayerOutlined(&quot;layer&quot;, outline)

Sets the layer &quot;layer&quot; to be locked or not. If outline is set to
true the layer will be displayed outlined.

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>setLayerFlow(&quot;layer&quot;, flow)

Sets the layers &quot;layer&quot;  flowcontrol to flow. If flow is set to
true text in layers above this one will flow around objects on this layer.

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">setLayerFlow(&quot;layer&quot;, flow)

Sets the layers &quot;layer&quot;  flowcontrol to flow. If flow is set to
true text in layers above this one will flow around objects on this layer.

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>setLayerBlendmode(&quot;layer&quot;, blend)

Sets the layers &quot;layer&quot;  blendmode to blend.

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">setLayerBlendmode(&quot;layer&quot;, blend)

Sets the layers &quot;layer&quot;  blendmode to blend.

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>setLayerTransparency(&quot;layer&quot;, trans)

Sets the layers &quot;layer&quot;  transparency to trans.

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">setLayerTransparency(&quot;layer&quot;, trans)

Sets the layers &quot;layer&quot;  transparency to trans.

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>setFillTransparency(transparency, [&quot;name&quot;])

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

Sets the fill transparency of the object &quot;name&quot; to transparency
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setFillBlendmode(blendmode, [&quot;name&quot;])

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

Sets the fill blendmode of the object &quot;name&quot; to blendmode
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>setLineTransparency(transparency, [&quot;name&quot;])

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

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

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

Sets the line blendmode of the object &quot;name&quot; to blendmode
If &quot;name&quot; is not given the currently selected item is used.
</translation>
    </message>
    <message>
        <source>placeEPS(&quot;filename&quot;, x, y)

Places the EPS &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the EPS placed on the page

If loading was successful, the selection contains the imported EPS
</source>
        <translation type="obsolete">placeEPS(&quot;filename&quot;, x, y)

Places the EPS &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the EPS placed on the page

If loading was successful, the selection contains the imported EPS
</translation>
    </message>
    <message>
        <source>placeSXD(&quot;filename&quot;, x, y)

Places the SXD &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SXD placed on the page

If loading was successful, the selection contains the imported SXD
</source>
        <translation type="obsolete">placeSXD(&quot;filename&quot;, x, y)

Places the SXD &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the SXD placed on the page

If loading was successful, the selection contains the imported SXD
</translation>
    </message>
    <message>
        <source>placeODG(&quot;filename&quot;, x, y)

Places the ODG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the ODG placed on the page

If loading was successful, the selection contains the imported ODG
</source>
        <translation type="obsolete">placeODG(&quot;filename&quot;, x, y)

Places the ODG &quot;filename&quot; onto the current page,
x and y specify the coordinate of the topleft corner of the ODG placed on the page

If loading was successful, the selection contains the imported ODG
</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
optional 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
optional 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>getLineJoin([&quot;name&quot;]) -&gt; integer (see constants)

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 constants)

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>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 vertex 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 vertex 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>gotoPage(nr)

Moves to the page &quot;nr&quot; (that is, makes the current page &quot;nr&quot;). Note that
gotoPage doesn&apos;t (currently) 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 (currently) 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>setPDFBookmark(&quot;toggle&quot;, [&quot;name&quot;])

Sets whether (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 whether (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>moveSelectionToFront()

Moves current selection to front.
</source>
        <translation type="obsolete">moveSelectionToFront()Moves current selection to front.</translation>
    </message>
    <message>
        <source>moveSelectionToFront()

Moves current selection to back.
</source>
        <translation type="obsolete">moveSelectionToFront()Moves current selection to back.</translation>
    </message>
    <message>
        <source>importPage(&quot;fromDoc&quot;, (pageList), [create, imortwhere, importwherePage])

Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the &quot;Page-&gt;Import&quot; dropdown menu function.
fromDoc: string; the filename of the document to import pages from
pageList: tuple with page numbers of pages to import
create: number; 0 to replace existing pages, 1 (default) to insert new pages
importWhere: number; the page number (of the current document) at which import the pages
importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document
</source>
        <translation type="obsolete">importPage(&quot;fromDoc&quot;, (pageList), [create, imortwhere, importwherePage])Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the &quot;Page-&gt;Import&quot; dropdown menu function.fromDoc: string; the filename of the document to import pages frompageList: tuple with page numbers of pages to importcreate: number; 0 to replace existing pages, 1 (default) to insert new pagesimportWhere: number; the page number (of the current document) at which import the pagesimportWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document</translation>
    </message>
    <message>
        <source>createCharStyle(...)

Creates a character style. This function takes the following keyword parameters:

&quot;name&quot; [required] -&gt; name of the char style to create

&quot;font&quot; [optional] -&gt; name of the font to use

fontsize [optional] -&gt; font size to set (double)

&quot;features&quot; [optional] -&gt; nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):

-&gt; inherit

-&gt; bold

-&gt; italic

-&gt; underline

-&gt; underlinewords

-&gt; strike

-&gt; superscript

-&gt; subscript

-&gt; outline

-&gt; shadowed

-&gt; allcaps

-&gt; smallcaps

&quot;fillcolor&quot; [optional], &quot;fillshade&quot; [optional] -&gt; specify fill options

&quot;strokecolor&quot; [optional], &quot;strokeshade&quot; [optional] -&gt; specify stroke options

baselineoffset [optional] -&gt; offset of the baseline

shadowxoffset [optional], shadowyoffset [optional] -&gt; offset of the shadow if used

outlinewidth [optional] -&gt; width of the outline if used

underlineoffset [optional], underlinewidth [optional] -&gt; underline options if used

strikethruoffset [optional], strikethruwidth [optional] -&gt; strikethru options if used

scaleh [optional], scalev [optional] -&gt; scale of the chars

tracking [optional] -&gt; tracking of the text

&quot;language&quot; [optional] -&gt; language code

</source>
        <translation type="obsolete">createCharStyle(...)Creates a character style. This function takes the following keyword parameters:&quot;name&quot; [required] -&gt; name of the char style to create&quot;font&quot; [optional] -&gt; name of the font to usefontsize [optional] -&gt; font size to set (double)&quot;features&quot; [optional] -&gt; nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-&gt; inherit-&gt; bold-&gt; italic-&gt; underline-&gt; underlinewords-&gt; strike-&gt; superscript-&gt; subscript-&gt; outline-&gt; shadowed-&gt; allcaps-&gt; smallcaps&quot;fillcolour&quot; [optional], &quot;fillshade&quot; [optional] -&gt; specify fill options&quot;strokecolour&quot; [optional], &quot;strokeshade&quot; [optional] -&gt; specify stroke optionsbaselineoffset [optional] -&gt; offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -&gt; offset of the shadow if usedoutlinewidth [optional] -&gt; width of the outline if usedunderlineoffset [optional], underlinewidth [optional] -&gt; underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -&gt; strikethru options if usedscaleh [optional], scalev [optional] -&gt; scale of the charstracking [optional] -&gt; tracking of the text&quot;language&quot; [optional] -&gt; language code</translation>
    </message>
    <message>
        <source>hyphenateText([&quot;name&quot;]) -&gt; bool

Does hyphenation on text 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 a text frame
</source>
        <translation type="obsolete">hyphenateText([&quot;name&quot;]) -&gt; boolDoes hyphenation on text 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 a text frame</translation>
    </message>
    <message>
        <source>dehyphenateText([&quot;name&quot;]) -&gt; bool

Does dehyphenation on text 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 a text frame
</source>
        <translation type="obsolete">dehyphenateText([&quot;name&quot;]) -&gt; boolDoes dehyphenation on text 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 a text frame</translation>
    </message>
    <message>
        <source>scrollDocument(x,y)

Scroll the document in main GUI window by x and y.
</source>
        <translation type="obsolete">scrollDocument(x,y)Scroll the document in main GUI window by x and y.</translation>
    </message>
    <message>
        <source>createParagraphStyle(...)

Creates a paragraph style. This function takes the following keyword parameters:

&quot;name&quot; [required] -&gt; specifies the name of the paragraphstyle to create

linespacingmode [optional] -&gt; specifies the linespacing mode; possible modes are:

fixed linespacing:          0

automatic linespacing:      1

baseline grid linespacing:  2

linespacing [optional] -&gt; specifies the linespacing if using fixed linespacing

alignment [optional] -&gt; specifies the alignment of the paragraph

-&gt; left:     0

-&gt; center:   1

-&gt; right:    2

-&gt; justify:  3

-&gt; extend:   4

leftmargin [optional], rightmargin [optional] -&gt; specify the margin

gapbefore [optional], gapafter [optional] -&gt; specify the gaps to the heading and following paragraphs

firstindent [optional] -&gt; the indent of the first line

hasdropcap [optional] -&gt; specifies if there are caps (1 = yes, 0 = no)

dropcaplines [optional] -&gt; height (in lines) of the caps if used

dropcapoffset [optional] -&gt; offset of the caps if used

&quot;charstyle&quot; [optional] -&gt; char style to use

</source>
        <translation type="obsolete">createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:&quot;name&quot; [required] -&gt; specifies the name of the paragraphstyle to createlinespacingmode [optional] -&gt; specifies the linespacing mode; possible modes are:fixed linespacing:          0automatic linespacing:      1baseline grid linespacing:  2linespacing [optional] -&gt; specifies the linespacing if using fixed linespacingalignment [optional] -&gt; specifies the alignment of the paragraph-&gt; left:     0-&gt; center:   1-&gt; right:    2-&gt; justify:  3-&gt; extend:   4leftmargin [optional], rightmargin [optional] -&gt; specify the margingapbefore [optional], gapafter [optional] -&gt; specify the gaps to the heading and following paragraphsfirstindent [optional] -&gt; the indent of the first linehasdropcap [optional] -&gt; specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -&gt; height (in lines) of the caps if useddropcapoffset [optional] -&gt; offset of the caps if used&quot;charstyle&quot; [optional] -&gt; char style to use</translation>
    </message>
    <message>
        <source>getTextDistances([&quot;name&quot;]) -&gt; tuple

Returns the text distances of the text frame &quot;name&quot; expressed in points. The
distances are returned as a tuple like (left, right, top, bottom). If &quot;name&quot;
is not given the currently selected item is used.
</source>
        <translation type="obsolete">getTextDistances([&quot;name&quot;]) -&gt; tupleReturns the text distances of the text frame &quot;name&quot; expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If &quot;name&quot;is not given the currently selected item is used.</translation>
    </message>
    <message>
        <source>setTextDistances(left, right, top, bottom, [&quot;name&quot;])

Sets the text distances of the text frame &quot;name&quot; to the values &quot;left&quot;
&quot;right&quot;, &quot;top&quot; and &quot;bottom&quot;. If &quot;name&quot; is not given the currently
selected item is used.

May throw ValueError if any of the distances are out of bounds (must be positive).
</source>
        <translation type="obsolete">setTextDistances(left, right, top, bottom, [&quot;name&quot;])Sets the text distances of the text frame &quot;name&quot; to the values &quot;left&quot;&quot;right&quot;, &quot;top&quot; and &quot;bottom&quot;. If &quot;name&quot; is not given the currentlyselected item is used.May throw ValueError if any of the distances are out of bounds (must be positive).</translation>
    </message>
</context>
<context>
    <name>AIPlug</name>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="125"/>
        <source>Importing: %1</source>
        <translation>Importing: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="128"/>
        <source>Analyzing File:</source>
        <translation>Analysing File:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="265"/>
        <source>Group%1</source>
        <translation>Group%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importai.cpp" line="2483"/>
        <source>Generating Items</source>
        <translation>Generating Items</translation>
    </message>
</context>
<context>
    <name>About</name>
    <message>
        <location filename="../../../scribus/about.cpp" line="305"/>
        <source>Contributions from:</source>
        <translation>Contributions from:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="188"/>
        <source>&amp;About</source>
        <translation>&amp;About</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="201"/>
        <source>A&amp;uthors</source>
        <translation>A&amp;uthors</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="215"/>
        <source>&amp;Translations</source>
        <translation>&amp;Translations</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="226"/>
        <source>&amp;Online</source>
        <translation>&amp;Online</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="265"/>
        <source>&amp;Close</source>
        <translation>&amp;Close</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="297"/>
        <source>Development Team:</source>
        <translation>Development Team:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="307"/>
        <source>Official Documentation:</source>
        <translation>Official Documentation:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="311"/>
        <source>Other Documentation:</source>
        <translation>Other Documentation:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="345"/>
        <source>Homepage</source>
        <translation>Homepage</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="347"/>
        <source>Online Reference</source>
        <translation>Online Reference</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="351"/>
        <source>Bugs and Feature Requests</source>
        <translation>Bugs and Feature Requests</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="355"/>
        <source>Mailing List</source>
        <translation>Mailing List</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="329"/>
        <source>Official Translations and Translators:</source>
        <translation>Official Translations and Translators:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="331"/>
        <source>Previous Translation Contributors:</source>
        <translation>Previous Translation Contributors:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="97"/>
        <source>About Scribus %1</source>
        <translation>About Scribus %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="349"/>
        <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>Using Ghostscript version %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="185"/>
        <source>No Ghostscript version available</source>
        <translation>No Ghostscript version available</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="186"/>
        <source>Build ID:</source>
        <translation>Build ID:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="299"/>
        <source>Mac OS&amp;#174; X Aqua Port:</source>
        <translation>Mac OS&amp;#174; X Aqua Port:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="303"/>
        <source>Windows&amp;#174; Port:</source>
        <translation>Windows&amp;#174; Port:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="317"/>
        <source>Tango Project Icons:</source>
        <translation>Tango Project Icons:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="229"/>
        <source>&amp;Updates</source>
        <translation>&amp;Updates</translation>
    </message>
    <message>
        <source>Check for &amp;Updates</source>
        <translation type="obsolete">Check for &amp;Updates</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="277"/>
        <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source>
        <translation>Check for updates to Scribus. No data from your machine will be transferred off it.</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="301"/>
        <source>OS/2&amp;#174;/eComStation&amp;#8482; Port:</source>
        <translation>OS/2&amp;#174;/eComStation&amp;#8482; Port:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="315"/>
        <source>Splash Screen:</source>
        <translation>Splash Screen:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="273"/>
        <source>This panel shows the version, build date and compiled in library support in Scribus.</source>
        <translation>This panel shows the version, build date and compiled in library support in Scribus.</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="274"/>
        <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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="275"/>
        <source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
        <translation>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="276"/>
        <source>The Windows version does not use fontconfig or CUPS libraries.</source>
        <translation>The Windows version does not use fontconfig or CUPS libraries.</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>&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;</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="186"/>
        <source>Scribus Version</source>
        <translation>Scribus Version</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="233"/>
        <location filename="../../../scribus/about.cpp" line="649"/>
        <source>Check for Updates</source>
        <translation>Check for Updates</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="647"/>
        <source>Abort Update Check</source>
        <translation>Abort Update Check</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="353"/>
        <source>Developer Blog</source>
        <translation>Developer Blog</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="240"/>
        <source>&amp;Licence</source>
        <translation>&amp;Licence</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>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="309"/>
        <source>Doc Translators:</source>
        <translation>Doc Translators:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="313"/>
        <source>Webmasters:</source>
        <translation>Webmasters:</translation>
    </message>
    <message>
        <location filename="../../../scribus/about.cpp" line="447"/>
        <location filename="../../../scribus/about.cpp" line="559"/>
        <location filename="../../../scribus/about.cpp" line="625"/>
        <source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source>
        <translation>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</translation>
    </message>
</context>
<context>
    <name>AboutPlugins</name>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="68"/>
        <source>Filename:</source>
        <translation>Filename:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="69"/>
        <source>Version:</source>
        <translation>Version:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="72"/>
        <source>Enabled:</source>
        <translation>Enabled:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="73"/>
        <source>Release Date:</source>
        <translation>Release Date:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="80"/>
        <source>Description:</source>
        <translation>Description:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="81"/>
        <source>Author(s):</source>
        <translation>Author(s):</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="82"/>
        <source>Copyright:</source>
        <translation>Copyright:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.cpp" line="83"/>
        <source>License:</source>
        <translation>License:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aboutplugins.ui" line="13"/>
        <source>Scribus: About Plug-ins</source>
        <translation>Scribus: About Plug-ins</translation>
    </message>
</context>
<context>
    <name>ActionManager</name>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1336"/>
        <source>&amp;Image Effects</source>
        <translation>&amp;Image Effects</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1337"/>
        <source>&amp;Tabulators...</source>
        <translation>&amp;Tabulators...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1257"/>
        <source>&amp;New</source>
        <translation>&amp;New</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1259"/>
        <source>&amp;Open...</source>
        <translation>&amp;Open...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1260"/>
        <source>&amp;Close</source>
        <translation>&amp;Close</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1261"/>
        <source>&amp;Save</source>
        <translation>&amp;Save</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1262"/>
        <source>Save &amp;As...</source>
        <translation>Save &amp;As...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1263"/>
        <source>Re&amp;vert to Saved</source>
        <translation>Re&amp;vert to Saved</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1264"/>
        <source>Collect for O&amp;utput...</source>
        <translation>Collect for O&amp;utput...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1265"/>
        <source>Get Text...</source>
        <translation>Get Text...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1266"/>
        <source>Append &amp;Text...</source>
        <translation>Append &amp;Text...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1267"/>
        <source>Get Image...</source>
        <translation>Get Image...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1270"/>
        <source>Save &amp;Text...</source>
        <translation>Save &amp;Text...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1272"/>
        <source>Save as P&amp;DF...</source>
        <translation>Save as P&amp;DF...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1273"/>
        <source>Document &amp;Setup...</source>
        <translation>Document &amp;Setup...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1275"/>
        <source>&amp;Print...</source>
        <translation>&amp;Print...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1277"/>
        <source>&amp;Quit</source>
        <translation>&amp;Quit</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1279"/>
        <source>&amp;Undo</source>
        <translation>&amp;Undo</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1280"/>
        <source>&amp;Redo</source>
        <translation>&amp;Redo</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1281"/>
        <source>&amp;Item Action Mode</source>
        <translation>&amp;Item Action Mode</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1282"/>
        <source>Cu&amp;t</source>
        <translation>Cu&amp;t</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1283"/>
        <location filename="../../../scribus/actionmanager.cpp" line="1285"/>
        <source>&amp;Copy</source>
        <translation>&amp;Copy</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1284"/>
        <location filename="../../../scribus/actionmanager.cpp" line="1286"/>
        <source>&amp;Paste</source>
        <translation>&amp;Paste</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1289"/>
        <source>Select &amp;All</source>
        <translation>Select &amp;All</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1291"/>
        <source>&amp;Deselect All</source>
        <translation>&amp;Deselect All</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1292"/>
        <source>&amp;Search/Replace...</source>
        <translation>&amp;Search/Replace...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1295"/>
        <source>C&amp;olors...</source>
        <translation>C&amp;olours...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1299"/>
        <source>&amp;Master Pages...</source>
        <translation>&amp;Master Pages...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1274"/>
        <source>P&amp;references...</source>
        <translation>P&amp;references...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1307"/>
        <source>%1 pt</source>
        <translation>%1 pt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1309"/>
        <source>&amp;Other...</source>
        <translation>&amp;Other...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1310"/>
        <source>&amp;Left</source>
        <translation>&amp;Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1311"/>
        <source>&amp;Center</source>
        <translation>&amp;Centre</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1312"/>
        <source>&amp;Right</source>
        <translation>&amp;Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1313"/>
        <source>&amp;Block</source>
        <translation>&amp;Block</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1314"/>
        <source>&amp;Forced</source>
        <translation>&amp;Forced</translation>
    </message>
    <message>
        <source>&amp;%1 %</source>
        <translation type="obsolete">&amp;%1 %</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1325"/>
        <source>&amp;Normal</source>
        <translation>&amp;Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1326"/>
        <source>&amp;Underline</source>
        <translation>&amp;Underline</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1327"/>
        <source>Underline &amp;Words</source>
        <translation>Underline &amp;Words</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1328"/>
        <source>&amp;Strike Through</source>
        <translation>&amp;Strike Through</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1329"/>
        <source>&amp;All Caps</source>
        <translation>&amp;All Caps</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1330"/>
        <source>Small &amp;Caps</source>
        <translation>Small &amp;Caps</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1331"/>
        <source>Su&amp;perscript</source>
        <translation>Su&amp;perscript</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1332"/>
        <source>Su&amp;bscript</source>
        <translation>Su&amp;bscript</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1340"/>
        <source>D&amp;uplicate</source>
        <translation>D&amp;uplicate</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1341"/>
        <source>&amp;Multiple Duplicate</source>
        <translation>&amp;Multiple Duplicate</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1342"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1343"/>
        <source>&amp;Group</source>
        <translation>&amp;Group</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1344"/>
        <source>&amp;Ungroup</source>
        <translation>&amp;Ungroup</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1345"/>
        <source>Is &amp;Locked</source>
        <translation>Is &amp;Locked</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1346"/>
        <source>Si&amp;ze is Locked</source>
        <translation>Si&amp;ze is Locked</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1350"/>
        <source>Lower to &amp;Bottom</source>
        <translation>Lower to &amp;Bottom</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1351"/>
        <source>Raise to &amp;Top</source>
        <translation>Raise to &amp;Top</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1352"/>
        <source>&amp;Lower</source>
        <translation>&amp;Lower</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1353"/>
        <source>&amp;Raise</source>
        <translation>&amp;Raise</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1354"/>
        <source>Send to S&amp;crapbook</source>
        <translation>Send to S&amp;crapbook</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1356"/>
        <source>&amp;Attributes...</source>
        <translation>&amp;Attributes...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1358"/>
        <source>I&amp;mage Visible</source>
        <translation>I&amp;mage Visible</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1366"/>
        <source>Is PDF &amp;Bookmark</source>
        <translation>Is PDF &amp;Bookmark</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1367"/>
        <source>Is PDF A&amp;nnotation</source>
        <translation>Is PDF A&amp;nnotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1368"/>
        <source>Annotation P&amp;roperties</source>
        <translation>Annotation P&amp;roperties</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1369"/>
        <source>Field P&amp;roperties</source>
        <translation>Field P&amp;roperties</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1370"/>
        <source>&amp;Edit Shape...</source>
        <translation>&amp;Edit Shape...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1371"/>
        <source>&amp;Attach Text to Path</source>
        <translation>&amp;Attach Text to Path</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1372"/>
        <source>&amp;Detach Text from Path</source>
        <translation>&amp;Detach Text from Path</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1373"/>
        <source>&amp;Combine Polygons</source>
        <translation>&amp;Combine Polygons</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1374"/>
        <source>Split &amp;Polygons</source>
        <translation>Split &amp;Polygons</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1375"/>
        <source>&amp;Bezier Curve</source>
        <translation>&amp;Bezier Curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1376"/>
        <source>&amp;Image Frame</source>
        <translation>&amp;Image Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1378"/>
        <source>&amp;Polygon</source>
        <translation>&amp;Polygon</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1379"/>
        <source>&amp;Text Frame</source>
        <translation>&amp;Text Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1383"/>
        <source>&amp;Glyph...</source>
        <translation>&amp;Glyph...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1384"/>
        <source>Sample Text</source>
        <translation>Sample Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1388"/>
        <source>&amp;Insert...</source>
        <translation>&amp;Insert...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1389"/>
        <source>Im&amp;port...</source>
        <translation>Im&amp;port...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1390"/>
        <source>&amp;Delete...</source>
        <translation>&amp;Delete...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1391"/>
        <source>&amp;Copy...</source>
        <translation>&amp;Copy...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1392"/>
        <source>&amp;Move...</source>
        <translation>&amp;Move...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1393"/>
        <source>&amp;Apply Master Page...</source>
        <translation>&amp;Apply Master Page...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1395"/>
        <source>Manage &amp;Guides...</source>
        <translation>Manage &amp;Guides...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1401"/>
        <source>&amp;50%</source>
        <translation>&amp;50%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1402"/>
        <source>&amp;75%</source>
        <translation>&amp;75%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1403"/>
        <source>&amp;100%</source>
        <translation>&amp;100%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1404"/>
        <source>&amp;200%</source>
        <translation>&amp;200%</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1407"/>
        <source>Show &amp;Margins</source>
        <translation>Show &amp;Margins</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1409"/>
        <source>Show &amp;Frames</source>
        <translation>Show &amp;Frames</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1411"/>
        <source>Show &amp;Images</source>
        <translation>Show &amp;Images</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1412"/>
        <source>Show &amp;Grid</source>
        <translation>Show &amp;Grid</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1413"/>
        <source>Show G&amp;uides</source>
        <translation>Show G&amp;uides</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1415"/>
        <source>Show &amp;Baseline Grid</source>
        <translation>Show &amp;Baseline Grid</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1416"/>
        <source>Show &amp;Text Chain</source>
        <translation>Show &amp;Text Chain</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1420"/>
        <source>Sn&amp;ap to Grid</source>
        <translation>Sn&amp;ap to Grid</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1421"/>
        <source>Sna&amp;p to Guides</source>
        <translation>Sna&amp;p to Guides</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1426"/>
        <source>&amp;Properties</source>
        <translation>&amp;Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1428"/>
        <source>&amp;Scrapbook</source>
        <translation>&amp;Scrapbook</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1429"/>
        <source>&amp;Layers</source>
        <translation>&amp;Layers</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1431"/>
        <source>&amp;Bookmarks</source>
        <translation>&amp;Bookmarks</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1432"/>
        <source>&amp;Measurements</source>
        <translation>&amp;Measurements</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1433"/>
        <source>Action &amp;History</source>
        <translation>Action &amp;History</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1434"/>
        <source>Preflight &amp;Verifier</source>
        <translation>Preflight &amp;Verifier</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1436"/>
        <source>&amp;Tools</source>
        <translation>&amp;Tools</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1437"/>
        <source>P&amp;DF Tools</source>
        <translation>P&amp;DF Tools</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1440"/>
        <source>Select Item</source>
        <translation>Select Item</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1441"/>
        <source>Rotate Item</source>
        <translation>Rotate Item</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1442"/>
        <source>Zoom in or out</source>
        <translation>Zoom in or out</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1443"/>
        <source>Zoom in</source>
        <translation>Zoom in</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1444"/>
        <source>Zoom out</source>
        <translation>Zoom out</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1445"/>
        <source>Edit Contents of Frame</source>
        <translation>Edit Contents of Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1447"/>
        <source>Link Text Frames</source>
        <translation>Link Text Frames</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1448"/>
        <source>Unlink Text Frames</source>
        <translation>Unlink Text Frames</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1449"/>
        <source>&amp;Eye Dropper</source>
        <translation>&amp;Eye Dropper</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1450"/>
        <source>Copy Item Properties</source>
        <translation>Copy Item Properties</translation>
    </message>
    <message>
        <source>&amp;Manage Pictures</source>
        <translation type="obsolete">&amp;Manage Pictures</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1473"/>
        <source>&amp;Hyphenate Text</source>
        <translation>&amp;Hyphenate Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1475"/>
        <source>&amp;Generate Table Of Contents</source>
        <translation>&amp;Generate Table Of Contents</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1482"/>
        <source>&amp;About Scribus</source>
        <translation>&amp;About Scribus</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1484"/>
        <source>About &amp;Qt</source>
        <translation>About &amp;Qt</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1485"/>
        <source>Toolti&amp;ps</source>
        <translation>Toolti&amp;ps</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1487"/>
        <source>Scribus &amp;Manual...</source>
        <translation>Scribus &amp;Manual...</translation>
    </message>
    <message>
        <source>Smart &amp;Hyphen</source>
        <translation type="obsolete">Smart &amp;Hyphen</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1507"/>
        <source>Non Breaking &amp;Space</source>
        <translation>Non Breaking &amp;Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1508"/>
        <source>Page &amp;Number</source>
        <translation>Page &amp;Number</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1515"/>
        <source>Copyright</source>
        <translation>Copyright</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1516"/>
        <source>Registered Trademark</source>
        <translation>Registered Trademark</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1517"/>
        <source>Trademark</source>
        <translation>Trademark</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1519"/>
        <source>Bullet</source>
        <translation>Bullet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1521"/>
        <source>Em Dash</source>
        <translation>Em Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1522"/>
        <source>En Dash</source>
        <translation>En Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1523"/>
        <source>Figure Dash</source>
        <translation>Figure Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1524"/>
        <source>Quotation Dash</source>
        <translation>Quotation Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1495"/>
        <source>Toggle Palettes</source>
        <translation>Toggle Palettes</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1334"/>
        <source>S&amp;hadow</source>
        <translation>S&amp;hadow</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1363"/>
        <source>&amp;Low Resolution</source>
        <translation>&amp;Low Resolution</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1364"/>
        <source>&amp;Normal Resolution</source>
        <translation>&amp;Normal Resolution</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1365"/>
        <source>&amp;Full Resolution</source>
        <translation>&amp;Full Resolution</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1293"/>
        <source>Edit Image...</source>
        <translation>Edit Image...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1359"/>
        <source>&amp;Update Image</source>
        <translation>&amp;Update Image</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1360"/>
        <source>Adjust Frame to Image</source>
        <translation>Adjust Frame to Image</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1362"/>
        <source>Extended Image Properties</source>
        <translation>Extended Image Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1417"/>
        <source>Show Control Characters</source>
        <translation>Show Control Characters</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1435"/>
        <source>&amp;Align and Distribute</source>
        <translation>&amp;Align and Distribute</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1446"/>
        <source>Edit Text...</source>
        <translation>Edit Text...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1510"/>
        <source>New Line</source>
        <translation>New Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1511"/>
        <source>Frame Break</source>
        <translation>Frame Break</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1512"/>
        <source>Column Break</source>
        <translation>Column Break</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1506"/>
        <source>Non Breaking Dash</source>
        <translation>Non Breaking Dash</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1496"/>
        <source>Toggle Guides</source>
        <translation>Toggle Guides</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1430"/>
        <source>&amp;Arrange Pages</source>
        <translation>&amp;Arrange Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1474"/>
        <source>Dehyphenate Text</source>
        <translation>Dehyphenate Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1396"/>
        <source>Manage Page Properties...</source>
        <translation>Manage Page Properties...</translation>
    </message>
    <message>
        <source>Rulers relative to Page</source>
        <translation type="obsolete">Rulers relative to Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1276"/>
        <source>Print Previe&amp;w</source>
        <translation>Print Previe&amp;w</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1300"/>
        <source>&amp;JavaScripts...</source>
        <translation>&amp;JavaScripts...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1394"/>
        <source>Convert to Master Page...</source>
        <translation>Convert to Master Page...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1478"/>
        <source>&amp;Cascade</source>
        <translation>&amp;Cascade</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1479"/>
        <source>&amp;Tile</source>
        <translation>&amp;Tile</translation>
    </message>
    <message>
        <source>&amp;About Plug-ins</source>
        <translation type="obsolete">&amp;About Plug-ins</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1357"/>
        <source>More Info...</source>
        <translation>More Info...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1347"/>
        <source>&amp;Printing Enabled</source>
        <translation>&amp;Printing Enabled</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1348"/>
        <source>&amp;Flip Horizontally</source>
        <translation>&amp;Flip Horizontally</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1349"/>
        <source>&amp;Flip Vertically</source>
        <translation>&amp;Flip Vertically</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1418"/>
        <source>Show Rulers</source>
        <translation>Show Rulers</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1427"/>
        <source>&amp;Outline</source>
        <comment>Document Outline Palette</comment>
        <translation>&amp;Outline</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1518"/>
        <source>Solidus</source>
        <translation>Solidus</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1520"/>
        <source>Middle Dot</source>
        <translation>Middle Dot</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1545"/>
        <source>En Space</source>
        <translation>En Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1546"/>
        <source>Em Space</source>
        <translation>Em Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1547"/>
        <source>Thin Space</source>
        <translation>Thin Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1548"/>
        <source>Thick Space</source>
        <translation>Thick Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1549"/>
        <source>Mid Space</source>
        <translation>Mid Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1550"/>
        <source>Hair Space</source>
        <translation>Hair Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1562"/>
        <source>ff</source>
        <translation>ff</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1563"/>
        <source>fi</source>
        <translation>fi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1564"/>
        <source>fl</source>
        <translation>fl</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1565"/>
        <source>ffi</source>
        <translation>ffi</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1566"/>
        <source>ffl</source>
        <translation>ffl</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1567"/>
        <source>ft</source>
        <translation>ft</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1568"/>
        <source>st</source>
        <translation>st</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1298"/>
        <source>S&amp;tyles...</source>
        <translation>S&amp;tyles...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1333"/>
        <source>&amp;Outline</source>
        <comment>type effect</comment>
        <translation>&amp;Outline</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1377"/>
        <source>&amp;Outlines</source>
        <comment>Convert to oulines</comment>
        <translation>&amp;Outlines</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1287"/>
        <source>Paste (&amp;Absolute)</source>
        <translation>Paste (&amp;Absolute)</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1288"/>
        <source>C&amp;lear</source>
        <translation>C&amp;lear</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1462"/>
        <source>Insert PDF Push Button</source>
        <translation>Insert PDF Push Button</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1463"/>
        <source>Insert PDF Text Field</source>
        <translation>Insert PDF Text Field</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1464"/>
        <source>Insert PDF Check Box</source>
        <translation>Insert PDF Check Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1465"/>
        <source>Insert PDF Combo Box</source>
        <translation>Insert PDF Combo Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1466"/>
        <source>Insert PDF List Box</source>
        <translation>Insert PDF List Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1467"/>
        <source>Insert Text Annotation</source>
        <translation>Insert Text Annotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1468"/>
        <source>Insert Link Annotation</source>
        <translation>Insert Link Annotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1271"/>
        <source>Save as &amp;EPS...</source>
        <translation>Save as &amp;EPS...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1414"/>
        <source>Show Text Frame Columns</source>
        <translation>Show Text Frame Columns</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1382"/>
        <source>&amp;Frame...</source>
        <translation>&amp;Frame...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1406"/>
        <source>Preview Mode</source>
        <translation>Preview Mode</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1410"/>
        <source>Show Layer Indicators</source>
        <translation>Show Layer Indicators</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1297"/>
        <source>Patterns...</source>
        <translation>Patterns...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1355"/>
        <source>Send to Patterns</source>
        <translation>Send to Patterns</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1385"/>
        <source>Sticky Tools</source>
        <translation>Sticky Tools</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1399"/>
        <source>&amp;Fit to Height</source>
        <translation>&amp;Fit to Height</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1400"/>
        <source>Fit to Width</source>
        <translation>Fit to Width</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1408"/>
        <source>Show Bleeds</source>
        <translation>Show Bleeds</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1505"/>
        <source>Soft &amp;Hyphen</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1513"/>
        <source>&amp;Zero Width Space</source>
        <translation>&amp;Zero Width Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1514"/>
        <source>Zero Width NB Space</source>
        <translation>Zero Width NB Space</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1526"/>
        <source>Apostrophe</source>
        <comment>Unicode 0x0027</comment>
        <translation>Apostrophe</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1527"/>
        <source>Straight Double</source>
        <comment>Unicode 0x0022</comment>
        <translation>Straight Double</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1528"/>
        <source>Single Left</source>
        <comment>Unicode 0x2018</comment>
        <translation>Single Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1529"/>
        <source>Single Right</source>
        <comment>Unicode 0x2019</comment>
        <translation>Single Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1530"/>
        <source>Double Left</source>
        <comment>Unicode 0x201C</comment>
        <translation>Double Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1531"/>
        <source>Double Right</source>
        <comment>Unicode 0x201D</comment>
        <translation>Double Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1532"/>
        <source>Single Reversed</source>
        <comment>Unicode 0x201B</comment>
        <translation>Single Reversed</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1533"/>
        <source>Double Reversed</source>
        <comment>Unicode 0x201F</comment>
        <translation>Double Reversed</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1534"/>
        <source>Single Left Guillemet</source>
        <comment>Unicode 0x2039</comment>
        <translation>Single Left Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1535"/>
        <source>Single Right Guillemet</source>
        <comment>Unicode 0x203A</comment>
        <translation>Single Right Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1536"/>
        <source>Double Left Guillemet</source>
        <comment>Unicode 0x00AB</comment>
        <translation>Double Left Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1537"/>
        <source>Double Right Guillemet</source>
        <comment>Unicode 0x00BB</comment>
        <translation>Double Right Guillemet</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1538"/>
        <source>Low Single Comma</source>
        <comment>Unicode 0x201A</comment>
        <translation>Low Single Comma</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1539"/>
        <source>Low Double Comma</source>
        <comment>Unicode 0x201E</comment>
        <translation>Low Double Comma</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1540"/>
        <source>CJK Single Left</source>
        <comment>Unicode 0x300C</comment>
        <translation>CJK Single Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1541"/>
        <source>CJK Single Right</source>
        <comment>Unicode 0x300D</comment>
        <translation>CJK Single Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1542"/>
        <source>CJK Double Left</source>
        <comment>Unicode 0x300E</comment>
        <translation>CJK Double Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1543"/>
        <source>CJK Double Right</source>
        <comment>Unicode 0x300F</comment>
        <translation>CJK Double Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1405"/>
        <source>&amp;400%</source>
        <translation>&amp;400%</translation>
    </message>
    <message>
        <source>Edit Latex Source...</source>
        <translation type="obsolete">Edit Latex Source...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1452"/>
        <source>Insert &amp;Text Frame</source>
        <translation>Insert &amp;Text Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1453"/>
        <source>Insert &amp;Image Frame</source>
        <translation>Insert &amp;Image Frame</translation>
    </message>
    <message>
        <source>Insert &amp;Latex Frame</source>
        <translation type="obsolete">Insert &amp;Latex Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1455"/>
        <source>Insert T&amp;able</source>
        <translation>Insert T&amp;able</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1456"/>
        <source>Insert &amp;Shape</source>
        <translation>Insert &amp;Shape</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1457"/>
        <source>Insert &amp;Polygon</source>
        <translation>Insert &amp;Polygon</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1458"/>
        <source>Insert &amp;Line</source>
        <translation>Insert &amp;Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1459"/>
        <source>Insert &amp;Bezier Curve</source>
        <translation>Insert &amp;Bezier Curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1460"/>
        <source>Insert &amp;Freehand Line</source>
        <translation>Insert &amp;Freehand Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1488"/>
        <source>Scribus Homepage</source>
        <translation>Scribus Homepage</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1489"/>
        <source>Scribus Online Documentation</source>
        <translation>Scribus Online Documentation</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1490"/>
        <source>Scribus Wiki</source>
        <translation>Scribus Wiki</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1491"/>
        <source>Getting Started with Scribus</source>
        <translation>Getting Started with Scribus</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1422"/>
        <source>Show Context Menu</source>
        <translation>Show Context Menu</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1472"/>
        <source>&amp;Manage Images</source>
        <translation>&amp;Manage Images</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1483"/>
        <source>&amp;About Plugins</source>
        <translation>&amp;About Plugins</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1497"/>
        <source>Insert Unicode Character Begin Sequence</source>
        <translation>Insert Unicode Character Begin Sequence</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1268"/>
        <source>Get Vector File...</source>
        <translation>Get Vector File...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1290"/>
        <source>Advanced Select All...</source>
        <translation>Advanced Select All...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1294"/>
        <source>Edit Source...</source>
        <translation>Edit Source...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1296"/>
        <source>Replace Colors...</source>
        <translation>Replace Colours...</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1419"/>
        <source>Rulers Relative to Page</source>
        <translation>Rulers Relative to Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1454"/>
        <source>Insert &amp;Render Frame</source>
        <translation>Insert &amp;Render Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1492"/>
        <source>Check for Updates</source>
        <translation>Check for Updates</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1509"/>
        <source>Number of Pages</source>
        <translation>Number of Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1361"/>
        <source>Adjust Image to Frame</source>
        <translation>Adjust Image to Frame</translation>
    </message>
    <message>
        <source>Move/Resize value indicator</source>
        <translation type="obsolete">Move/Resize value indicator</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1690"/>
        <source>File</source>
        <translation>File</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1690"/>
        <source>&amp;File</source>
        <translation>&amp;File</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1692"/>
        <source>Edit</source>
        <translation>Edit</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1692"/>
        <source>&amp;Edit</source>
        <translation>&amp;Edit</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1694"/>
        <source>Style</source>
        <translation>Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1694"/>
        <source>&amp;Style</source>
        <translation>&amp;Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1696"/>
        <source>Item</source>
        <translation>Item</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1696"/>
        <source>&amp;Item</source>
        <translation>&amp;Item</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1698"/>
        <source>Insert</source>
        <translation>Insert</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1698"/>
        <source>I&amp;nsert</source>
        <translation>I&amp;nsert</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1700"/>
        <source>Page</source>
        <translation>Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1700"/>
        <source>&amp;Page</source>
        <translation>&amp;Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1702"/>
        <source>View</source>
        <translation>View</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1702"/>
        <source>&amp;View</source>
        <translation>&amp;View</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1704"/>
        <source>Extras</source>
        <translation>Extras</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1704"/>
        <source>E&amp;xtras</source>
        <translation>E&amp;xtras</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1706"/>
        <source>Windows</source>
        <translation>Windows</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1706"/>
        <source>&amp;Windows</source>
        <translation>&amp;Windows</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1708"/>
        <source>Help</source>
        <translation>Help</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1708"/>
        <source>&amp;Help</source>
        <translation>&amp;Help</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1876"/>
        <source>Plugin Menu Items</source>
        <translation>Plugin Menu Items</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1878"/>
        <source>Others</source>
        <translation>Others</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1880"/>
        <source>Unicode Characters</source>
        <translation>Unicode Characters</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1486"/>
        <source>Move/Resize Value Indicator</source>
        <translation>Move/Resize Value Indicator</translation>
    </message>
    <message>
        <location filename="../../../scribus/actionmanager.cpp" line="1258"/>
        <source>New &amp;from Template...</source>
        <translation>New &amp;from Template...</translation>
    </message>
</context>
<context>
    <name>AdjustCmsDialog</name>
    <message>
        <location filename="../../../scribus/adjustcmsdialog.cpp" line="16"/>
        <source>CMS Settings</source>
        <translation>CMS Settings</translation>
    </message>
</context>
<context>
    <name>AlignDistribute</name>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="35"/>
        <source>Align</source>
        <translation>Align</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="79"/>
        <source>&amp;Selected Guide:</source>
        <translation>&amp;Selected Guide:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="92"/>
        <source>&amp;Relative To:</source>
        <translation>&amp;Relative To:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="163"/>
        <location filename="../../../scribus/aligndistribute.ui" line="170"/>
        <location filename="../../../scribus/aligndistribute.ui" line="177"/>
        <location filename="../../../scribus/aligndistribute.ui" line="184"/>
        <location filename="../../../scribus/aligndistribute.ui" line="191"/>
        <location filename="../../../scribus/aligndistribute.ui" line="198"/>
        <location filename="../../../scribus/aligndistribute.ui" line="205"/>
        <location filename="../../../scribus/aligndistribute.ui" line="212"/>
        <location filename="../../../scribus/aligndistribute.ui" line="219"/>
        <location filename="../../../scribus/aligndistribute.ui" line="226"/>
        <location filename="../../../scribus/aligndistribute.ui" line="314"/>
        <location filename="../../../scribus/aligndistribute.ui" line="321"/>
        <location filename="../../../scribus/aligndistribute.ui" line="328"/>
        <location filename="../../../scribus/aligndistribute.ui" line="335"/>
        <location filename="../../../scribus/aligndistribute.ui" line="342"/>
        <location filename="../../../scribus/aligndistribute.ui" line="352"/>
        <location filename="../../../scribus/aligndistribute.ui" line="359"/>
        <location filename="../../../scribus/aligndistribute.ui" line="369"/>
        <location filename="../../../scribus/aligndistribute.ui" line="376"/>
        <location filename="../../../scribus/aligndistribute.ui" line="386"/>
        <location filename="../../../scribus/aligndistribute.ui" line="393"/>
        <location filename="../../../scribus/aligndistribute.ui" line="400"/>
        <location filename="../../../scribus/aligndistribute.ui" line="410"/>
        <location filename="../../../scribus/aligndistribute.ui" line="417"/>
        <location filename="../../../scribus/aligndistribute.ui" line="424"/>
        <location filename="../../../scribus/aligndistribute.ui" line="431"/>
        <source>...</source>
        <translation>...</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="270"/>
        <source>Distribute</source>
        <translation>Distribute</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.ui" line="490"/>
        <source>&amp;Distance:</source>
        <translation>&amp;Distance:</translation>
    </message>
</context>
<context>
    <name>AlignDistributePalette</name>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="90"/>
        <source>Align and Distribute</source>
        <translation>Align and Distribute</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="93"/>
        <source>&amp;Relative to:</source>
        <translation>&amp;Relative to:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="96"/>
        <source>First Selected</source>
        <translation>First Selected</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="97"/>
        <source>Last Selected</source>
        <translation>Last Selected</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="98"/>
        <source>Page</source>
        <translation>Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="99"/>
        <source>Margins</source>
        <translation>Margins</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="101"/>
        <source>Selection</source>
        <translation>Selection</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="111"/>
        <source>Align bottoms</source>
        <translation>Align bottoms</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="113"/>
        <source>Align right sides</source>
        <translation>Align right sides</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="117"/>
        <source>Center on vertical axis</source>
        <translation>Centre on vertical axis</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="119"/>
        <source>Align left sides</source>
        <translation>Align left sides</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="121"/>
        <source>Center on horizontal axis</source>
        <translation>Centre on horizontal axis</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="125"/>
        <source>Align tops</source>
        <translation>Align tops</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="145"/>
        <source>Distribute left sides equidistantly</source>
        <translation>Distribute left sides equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="137"/>
        <source>Distribute bottoms equidistantly</source>
        <translation>Distribute bottoms equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="139"/>
        <source>Distribute centers equidistantly horizontally</source>
        <translation>Distribute centres equidistantly horizontally</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="147"/>
        <source>Distribute centers equidistantly vertically</source>
        <translation>Distribute centres equidistantly vertically</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="149"/>
        <source>Distribute tops equidistantly</source>
        <translation>Distribute tops equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="135"/>
        <source>Distribute right sides equidistantly</source>
        <translation>Distribute right sides equidistantly</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="100"/>
        <source>Guide</source>
        <translation>Guide</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="127"/>
        <source>&amp;Selected Guide:</source>
        <translation>&amp;Selected Guide:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="159"/>
        <source>&amp;Distance:</source>
        <translation>&amp;Distance:</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="160"/>
        <source>Distribute the items with the distance specified</source>
        <translation>Distribute the items with the distance specified</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="162"/>
        <source>None Selected</source>
        <translation>None Selected</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="440"/>
        <source>Y: %1%2</source>
        <translation>Y: %1%2</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="448"/>
        <source>X: %1%2</source>
        <translation>X: %1%2</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="107"/>
        <source>Align right sides of items to left side of anchor</source>
        <translation>Align right sides of items to left side of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="109"/>
        <source>Align left sides of items to right side of anchor</source>
        <translation>Align left sides of items to right side of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="115"/>
        <source>Align tops of items to bottom of anchor</source>
        <translation>Align tops of items to bottom of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="123"/>
        <source>Align bottoms of items to top of anchor</source>
        <translation>Align bottoms of items to top of anchor</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="130"/>
        <source>Make horizontal gaps between items equal</source>
        <translation>Make horizontal gaps between items equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="132"/>
        <source>Make horizontal gaps between items equal to the value specified</source>
        <translation>Make horizontal gaps between items equal to the value specified</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="141"/>
        <source>Make vertical gaps between items equal</source>
        <translation>Make vertical gaps between items equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="143"/>
        <source>Make vertical gaps between items equal to the value specified</source>
        <translation>Make vertical gaps between items equal to the value specified</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="151"/>
        <source>Make horizontal gaps between items and sides of page equal</source>
        <translation>Make horizontal gaps between items and sides of page equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="157"/>
        <source>Make vertical gaps between items and the top and bottom of page margins equal</source>
        <translation>Make vertical gaps between items and the top and bottom of page margins equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="155"/>
        <source>Make horizontal gaps between items and sides of page margins equal</source>
        <translation>Make horizontal gaps between items and sides of page margins equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="153"/>
        <source>Make vertical gaps between items and the top and bottom of page equal</source>
        <translation>Make vertical gaps between items and the top and bottom of page equal</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="91"/>
        <source>Align</source>
        <translation>Align</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="92"/>
        <source>Distribute</source>
        <translation>Distribute</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>&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;</translation>
    </message>
    <message>
        <location filename="../../../scribus/aligndistribute.cpp" line="105"/>
        <source>The location of the selected guide to align to</source>
        <translation>The location of the selected guide to align to</translation>
    </message>
</context>
<context>
    <name>AlignSelect</name>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="110"/>
        <source>Align Text Left</source>
        <translation>Align Text Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="111"/>
        <source>Align Text Right</source>
        <translation>Align Text Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="112"/>
        <source>Align Text Center</source>
        <translation>Align Text Centre</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="113"/>
        <source>Align Text Justified</source>
        <translation>Align Text Justified</translation>
    </message>
    <message>
        <location filename="../../../scribus/alignselect.cpp" line="114"/>
        <source>Align Text Forced Justified</source>
        <translation>Align Text Forced Justified</translation>
    </message>
</context>
<context>
    <name>Annot</name>
    <message>
        <location filename="../../../scribus/annot.cpp" line="61"/>
        <source>Field Properties</source>
        <translation>Field Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="92"/>
        <location filename="../../../scribus/annot.cpp" line="533"/>
        <source>Type:</source>
        <translation>Type:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="96"/>
        <source>Button</source>
        <translation>Button</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="96"/>
        <source>Text Field</source>
        <translation>Text Field</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="96"/>
        <source>Check Box</source>
        <translation>Check Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="96"/>
        <source>Combo Box</source>
        <translation>Combo Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="96"/>
        <source>List Box</source>
        <translation>List Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="111"/>
        <source>Properties</source>
        <translation>Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="121"/>
        <source>Name:</source>
        <translation>Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="146"/>
        <location filename="../../../scribus/annot.cpp" line="274"/>
        <source>Text</source>
        <translation>Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="176"/>
        <source>Border</source>
        <translation>Border</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="182"/>
        <source>Color:</source>
        <translation>Colour:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2110"/>
        <source>None</source>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="197"/>
        <source>Width:</source>
        <translation>Width:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="201"/>
        <source>Thin</source>
        <translation>Thin</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="201"/>
        <location filename="../../../scribus/annot.cpp" line="311"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="201"/>
        <source>Wide</source>
        <translation>Wide</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="209"/>
        <source>Style:</source>
        <translation>Style:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="213"/>
        <source>Solid</source>
        <translation>Solid</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="213"/>
        <source>Dashed</source>
        <translation>Dashed</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="213"/>
        <source>Underline</source>
        <translation>Underline</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="214"/>
        <source>Beveled</source>
        <translation>Beveled</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="214"/>
        <source>Inset</source>
        <translation>Inset</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="224"/>
        <source>Other</source>
        <translation>Other</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="230"/>
        <source>Read Only</source>
        <translation>Read Only</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="236"/>
        <source>Required</source>
        <translation>Required</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="248"/>
        <source>Visibility:</source>
        <translation>Visibility:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="252"/>
        <source>Visible</source>
        <translation>Visible</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="252"/>
        <source>Hidden</source>
        <translation>Hidden</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="252"/>
        <source>No Print</source>
        <translation>No Print</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="253"/>
        <source>No View</source>
        <translation>No View</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="262"/>
        <source>Appearance</source>
        <translation>Appearance</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="280"/>
        <source>Text for Button Down</source>
        <translation>Text for Button Down</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="283"/>
        <source>Text for Roll Over</source>
        <translation>Text for Roll Over</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="294"/>
        <source>Icons</source>
        <translation>Icons</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="300"/>
        <source>Use Icons</source>
        <translation>Use Icons</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="321"/>
        <location filename="../../../scribus/annot.cpp" line="339"/>
        <location filename="../../../scribus/annot.cpp" line="357"/>
        <source>Remove</source>
        <translation>Remove</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="329"/>
        <source>Pressed</source>
        <translation>Pressed</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="347"/>
        <source>Roll Over</source>
        <translation>Roll Over</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="366"/>
        <source>Icon Placement...</source>
        <translation>Icon Placement...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="414"/>
        <source>Highlight</source>
        <translation>Highlight</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="421"/>
        <source>Invert</source>
        <translation>Invert</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="421"/>
        <source>Outlined</source>
        <translation>Outlined</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="421"/>
        <source>Push</source>
        <translation>Push</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="438"/>
        <source>Multi-Line</source>
        <translation>Multi-Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="442"/>
        <source>Password</source>
        <translation>Password</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="449"/>
        <source>Limit of</source>
        <translation>Limit of</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="460"/>
        <source>Characters</source>
        <translation>Characters</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="466"/>
        <source>Do Not Scroll</source>
        <translation>Do Not Scroll</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="470"/>
        <source>Do Not Spell Check</source>
        <translation>Do Not Spell Check</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="485"/>
        <source>Check Style:</source>
        <translation>Check Style:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Check</source>
        <translation>Check</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Cross</source>
        <translation>Cross</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Diamond</source>
        <translation>Diamond</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Circle</source>
        <translation>Circle</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Star</source>
        <translation>Star</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="488"/>
        <source>Square</source>
        <translation>Square</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="502"/>
        <source>Default is Checked</source>
        <translation>Default is Checked</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="514"/>
        <source>Editable</source>
        <translation>Editable</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="521"/>
        <source>Options</source>
        <translation>Options</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="537"/>
        <location filename="../../../scribus/annot.cpp" line="2073"/>
        <source>Go To</source>
        <translation>Go To</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="538"/>
        <location filename="../../../scribus/annot.cpp" line="2074"/>
        <source>Submit Form</source>
        <translation>Submit Form</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="538"/>
        <location filename="../../../scribus/annot.cpp" line="2074"/>
        <source>Reset Form</source>
        <translation>Reset Form</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="538"/>
        <location filename="../../../scribus/annot.cpp" line="2074"/>
        <source>Import Data</source>
        <translation>Import Data</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="570"/>
        <source>Event:</source>
        <translation>Event:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="573"/>
        <location filename="../../../scribus/annot.cpp" line="2053"/>
        <source>Mouse Up</source>
        <translation>Mouse Up</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="573"/>
        <location filename="../../../scribus/annot.cpp" line="2053"/>
        <source>Mouse Down</source>
        <translation>Mouse Down</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="573"/>
        <location filename="../../../scribus/annot.cpp" line="2053"/>
        <source>Mouse Enter</source>
        <translation>Mouse Enter</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="574"/>
        <location filename="../../../scribus/annot.cpp" line="2054"/>
        <source>Mouse Exit</source>
        <translation>Mouse Exit</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="574"/>
        <location filename="../../../scribus/annot.cpp" line="2054"/>
        <source>On Focus</source>
        <translation>On Focus</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="574"/>
        <location filename="../../../scribus/annot.cpp" line="2054"/>
        <source>On Blur</source>
        <translation>On Blur</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="585"/>
        <source>Script:</source>
        <translation>Script:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="604"/>
        <location filename="../../../scribus/annot.cpp" line="933"/>
        <location filename="../../../scribus/annot.cpp" line="959"/>
        <location filename="../../../scribus/annot.cpp" line="1036"/>
        <location filename="../../../scribus/annot.cpp" line="1111"/>
        <source>Edit...</source>
        <translation>Edit...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="670"/>
        <source>Submit to URL:</source>
        <translation>Submit to URL:</translation>
    </message>
    <message>
        <source>Submit Data as HTML</source>
        <translation type="obsolete">Submit Data as HTML</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="707"/>
        <source>Import Data from:</source>
        <translation>Import Data from:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="610"/>
        <source>Destination</source>
        <translation>Destination</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="616"/>
        <source>To File:</source>
        <translation>To File:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="623"/>
        <source>Change...</source>
        <translation>Change...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="632"/>
        <source>Page:</source>
        <translation>Page:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="646"/>
        <source>X-Pos:</source>
        <translation>X-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="649"/>
        <location filename="../../../scribus/annot.cpp" line="658"/>
        <source> pt</source>
        <translation> pt</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="654"/>
        <source>Y-Pos:</source>
        <translation>Y-Pos:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="716"/>
        <source>Action</source>
        <translation>Action</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="747"/>
        <source>Field is formatted as:</source>
        <translation>Field is formatted as:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Plain</source>
        <translation>Plain</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Number</source>
        <translation>Number</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Percentage</source>
        <translation>Percentage</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Date</source>
        <translation>Date</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Time</source>
        <translation>Time</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="750"/>
        <source>Custom</source>
        <translation>Custom</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="768"/>
        <source>Number Format</source>
        <translation>Number Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="777"/>
        <location filename="../../../scribus/annot.cpp" line="836"/>
        <source>Decimals:</source>
        <translation>Decimals:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="791"/>
        <source>Use Currency Symbol</source>
        <translation>Use Currency Symbol</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="800"/>
        <source>Prepend Currency Symbol</source>
        <translation>Prepend Currency Symbol</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="804"/>
        <location filename="../../../scribus/annot.cpp" line="847"/>
        <source>Formatting</source>
        <translation>Formatting</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="827"/>
        <source>Percent Format</source>
        <translation>Percent Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="870"/>
        <source>Date Format</source>
        <translation>Date Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="896"/>
        <source>Time Format</source>
        <translation>Time Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="918"/>
        <source>Custom Scripts</source>
        <translation>Custom Scripts</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="930"/>
        <source>Format:</source>
        <translation>Format:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="956"/>
        <source>Keystroke:</source>
        <translation>Keystroke:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="980"/>
        <source>Format</source>
        <translation>Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="996"/>
        <source>Value is not validated</source>
        <translation>Value is not validated</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1005"/>
        <source>Value must be greater than or equal to:</source>
        <translation>Value must be greater than or equal to:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1009"/>
        <source>and less or equal to:</source>
        <translation>and less or equal to:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1020"/>
        <source>Custom validate script:</source>
        <translation>Custom validate script:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1041"/>
        <source>Validate</source>
        <translation>Validate</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1058"/>
        <source>Value is not calculated</source>
        <translation>Value is not calculated</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1067"/>
        <source>Value is the</source>
        <translation>Value is the</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1072"/>
        <source>sum</source>
        <translation>sum</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1072"/>
        <source>product</source>
        <translation>product</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1072"/>
        <source>average</source>
        <translation>average</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1072"/>
        <source>minimum</source>
        <translation>minimum</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1073"/>
        <source>maximum</source>
        <translation>maximum</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1080"/>
        <source>of the following fields:</source>
        <translation>of the following fields:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1090"/>
        <source>Pick...</source>
        <translation>Pick...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1095"/>
        <source>Custom calculation script:</source>
        <translation>Custom calculation script:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1115"/>
        <source>Calculate</source>
        <translation>Calculate</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1134"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1138"/>
        <source>Cancel</source>
        <translation>Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1191"/>
        <source>Enter a comma separated list of fields here</source>
        <translation>Enter a comma separated list of fields here</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1192"/>
        <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="1302"/>
        <location filename="../../../scribus/annot.cpp" line="1333"/>
        <location filename="../../../scribus/annot.cpp" line="1357"/>
        <location filename="../../../scribus/annot.cpp" line="2268"/>
        <source>Open</source>
        <translation>Open</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1475"/>
        <source>Example:</source>
        <translation>Example:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2102"/>
        <source>Selection Change</source>
        <translation>Selection Change</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="152"/>
        <source>Font for use with PDF 1.3:</source>
        <translation>Font for use with PDF 1.3:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1189"/>
        <location filename="../../../scribus/annot.cpp" line="1190"/>
        <source>Flag is ignored for PDF 1.3</source>
        <translation>Flag is ignored for PDF 1.3</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="2268"/>
        <source>PDF Files (*.pdf);;All Files (*)</source>
        <translation>PDF Files (*.pdf);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="537"/>
        <location filename="../../../scribus/annot.cpp" line="2073"/>
        <location filename="../../../scribus/annot.cpp" line="2111"/>
        <source>JavaScript</source>
        <translation>JavaScript</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="421"/>
        <source>None</source>
        <comment>highlight</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="537"/>
        <location filename="../../../scribus/annot.cpp" line="2073"/>
        <source>None</source>
        <comment>action</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="134"/>
        <source>Tooltip:</source>
        <translation>Tooltip:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="242"/>
        <source>Do Not Export Value</source>
        <translation>Do Not Export Value</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1334"/>
        <location filename="../../../scribus/annot.cpp" line="1358"/>
        <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source>
        <translation>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="1303"/>
        <source>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</source>
        <translation>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="625"/>
        <source>Export absolute Filename</source>
        <translation>Export absolute Filename</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="682"/>
        <source>Submit format:</source>
        <translation>Submit format:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="685"/>
        <source>FDF</source>
        <translation>FDF</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="685"/>
        <source>HTML</source>
        <translation>HTML</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="685"/>
        <source>XFDF</source>
        <translation>XFDF</translation>
    </message>
    <message>
        <location filename="../../../scribus/annot.cpp" line="685"/>
        <source>PDF</source>
        <translation>PDF</translation>
    </message>
</context>
<context>
    <name>Annota</name>
    <message>
        <location filename="../../../scribus/annota.cpp" line="47"/>
        <source>Annotation Properties</source>
        <translation>Annotation Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="77"/>
        <source>Text</source>
        <translation>Text</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>External Link</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="80"/>
        <source>External Web-Link</source>
        <translation>External Web-Link</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="118"/>
        <source>Destination</source>
        <translation>Destination</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>Open</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="82"/>
        <source>&amp;Type:</source>
        <translation>&amp;Type:</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="129"/>
        <source>C&amp;hange...</source>
        <translation>C&amp;hange...</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="147"/>
        <source>&amp;Page:</source>
        <translation>&amp;Page:</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>%1;;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/annota.cpp" line="131"/>
        <source>Export absolute Filename</source>
        <translation>Export absolute Filename</translation>
    </message>
</context>
<context>
    <name>ApplyMasterPageDialog</name>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="267"/>
        <source>Apply Master Page</source>
        <translation>Apply Master Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="268"/>
        <source>&amp;Master Page:</source>
        <translation>&amp;Master Page:</translation>
    </message>
    <message>
        <source>Apply To</source>
        <translation type="obsolete">Apply To</translation>
    </message>
    <message>
        <source>Current &amp;page</source>
        <translation type="obsolete">Current &amp;page</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">&amp;Even pages</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">O&amp;dd pages</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;All pages</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">&amp;Within range</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>
        <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>Apply the selected master page to even, odd or all pages within the following range</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="52"/>
        <source>Possible Hyphenation</source>
        <translation>Possible Hyphenation</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="269"/>
        <source>Apply to</source>
        <translation>Apply to</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="270"/>
        <source>Current &amp;Page</source>
        <translation>Current &amp;Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="272"/>
        <source>&amp;Even Pages</source>
        <translation>&amp;Even Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="274"/>
        <source>O&amp;dd Pages</source>
        <translation>O&amp;dd Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="276"/>
        <source>&amp;All Pages</source>
        <translation>&amp;All Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/applytemplatedialog.cpp" line="278"/>
        <source>&amp;Within Range</source>
        <translation>&amp;Within Range</translation>
    </message>
</context>
<context>
    <name>AspellPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="64"/>
        <source>Spell-checking support</source>
        <translation>Spell-checking support</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>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.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="70"/>
        <source>0.1</source>
        <translation>0.1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="32"/>
        <source>Spell Checker</source>
        <translation>Spell Checker</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="95"/>
        <source>Aspell Plugin Error</source>
        <translation>Aspell Plugin Error</translation>
    </message>
</context>
<context>
    <name>AspellPluginBase</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="13"/>
        <source>Spell Check</source>
        <translation>Spell Check</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="118"/>
        <source>Replacement:</source>
        <translation>Replacement:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="278"/>
        <source>&amp;Add Word</source>
        <translation>&amp;Add Word</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="306"/>
        <source>&amp;Change</source>
        <translation>&amp;Change</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>Not in Dictionary:</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>Word that was not found in the active dictionary</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>Replacement text for the current word that was not found in the dictionary</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="181"/>
        <source>Active Dictionary: </source>
        <translation>Active Dictionary: </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>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.</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>Ignore the current text not found in the active dictionary</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="228"/>
        <source>&amp;Ignore</source>
        <translation>&amp;Ignore</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>Ignore all occurrences of the current text not found in the active dictionary</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="250"/>
        <source>I&amp;gnore All</source>
        <translation>I&amp;gnore All</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>Add the current word to the your personal spelling dictionary for future use</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>Change the current word that was not found to that shown in the replacement entry field</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>Change all occurrences of the current word in the text that was not found to that shown in the replacement entry field</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="334"/>
        <source>Change A&amp;ll</source>
        <translation>Change A&amp;ll</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="372"/>
        <source>Close</source>
        <translation>Close</translation>
    </message>
</context>
<context>
    <name>AspellPluginImpl</name>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="37"/>
        <source>Loaded </source>
        <translation>Loaded </translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="37"/>
        <source>default </source>
        <translation>default </translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="37"/>
        <source> aspell dictionary.</source>
        <translation> aspell dictionary.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="82"/>
        <source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</source>
        <translation>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="89"/>
        <source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</source>
        <translation>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="358"/>
        <source>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of &quot;</source>
        <translation>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of &quot;</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="360"/>
        <source> by adding it to the session list.</source>
        <translation> by adding it to the session list.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="381"/>
        <source>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</source>
        <translation>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="235"/>
        <source>Spelling check complete</source>
        <translation>Spelling check complete</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="236"/>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="427"/>
        <source>Spell Checker</source>
        <translation>Spell Checker</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="62"/>
        <source>No available Aspell dictionaries found. Install some, please.</source>
        <translation>No available Aspell dictionaries found. Install some, please.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="428"/>
        <source>Do you want start from the beginning of the selection with new language selected?</source>
        <translation>Do you want start from the beginning of the selection with new language selected?</translation>
    </message>
</context>
<context>
    <name>AutoformButtonGroup</name>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="36"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1280"/>
        <source>Arrows</source>
        <translation>Arrows</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="44"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1281"/>
        <source>Flow Chart</source>
        <translation>Flow Chart</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="53"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1282"/>
        <source>Jigsaw</source>
        <translation>Jigsaw</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="66"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1283"/>
        <source>Specials</source>
        <translation>Specials</translation>
    </message>
    <message>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="21"/>
        <location filename="../../../scribus/autoformbuttongroup.cpp" line="1279"/>
        <source>Default Shapes</source>
        <translation>Default Shapes</translation>
    </message>
</context>
<context>
    <name>Barcode</name>
    <message>
        <source>&amp;Barcode Generator...</source>
        <translation type="obsolete">&amp;Barcode Generator...</translation>
    </message>
    <message>
        <source>Scribus frontend for Pure Postscript Barcode Writer</source>
        <translation type="obsolete">Scribus frontend for Pure Postscript Barcode Writer</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="22"/>
        <source>&amp;Barcode...</source>
        <translation>&amp;Barcode...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="39"/>
        <source>Scribus frontend for Pure PostScript Barcode Writer</source>
        <translation>Scribus frontend for Pure PostScript Barcode Writer</translation>
    </message>
</context>
<context>
    <name>BarcodeGenerator</name>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="315"/>
        <source>Error opening file: %1</source>
        <translation>Error opening file: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="41"/>
        <source>12 or 13 digits</source>
        <translation>12 or 13 digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="43"/>
        <source>8 digits</source>
        <translation>8 digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="45"/>
        <source>11 or 12 digits</source>
        <translation>11 or 12 digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="47"/>
        <source>7 or 8 digits</source>
        <translation>7 or 8 digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="49"/>
        <source>5 digits</source>
        <translation>5 digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="51"/>
        <source>2 digits</source>
        <translation>2 digits</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>Variable number of characters, digits and any of the symbols -. *$/+%.</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>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.</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>Variable number of digits and any of the symbols -$:/.+ABCD.</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>Variable number of digits. An ITF-14 is 14 characters and does not have a check digit</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>Variable number of digits</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="89"/>
        <source>Variable number of digits and capital letters</source>
        <translation>Variable number of digits and capital letters</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="98"/>
        <source>Variable number of hexadecimal characters</source>
        <translation>Variable number of hexadecimal characters</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="349"/>
        <source>Barcode incomplete</source>
        <translation>Barcode incomplete</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>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.)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="105"/>
        <source>Select Type</source>
        <translation>Select Type</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="145"/>
        <source>Select Barcode Type</source>
        <translation>Select Barcode Type</translation>
    </message>
</context>
<context>
    <name>BarcodeGeneratorBase</name>
    <message>
        <source>Barcode Creator</source>
        <translation type="obsolete">Barcode Creator</translation>
    </message>
    <message>
        <source>Barcode</source>
        <translation type="obsolete">Barcode</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="140"/>
        <source>&amp;Type:</source>
        <translation>&amp;Type:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="133"/>
        <source>Select one of the available barcode type here</source>
        <translation>Select one of the available barcode type here</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>The numeric representation of the code itself. See the help message below</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="103"/>
        <source>Reset the barcode samples</source>
        <translation>Reset the barcode samples</translation>
    </message>
    <message>
        <source>&amp;Include text in barcode</source>
        <translation type="obsolete">&amp;Include text in barcode</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="81"/>
        <source>Alt+I</source>
        <translation>Alt+I</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>If checked, there will be numbers in the barcode too</translation>
    </message>
    <message>
        <source>&amp;Guard whitespace</source>
        <translation type="obsolete">&amp;Guard whitespace</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="68"/>
        <source>Alt+G</source>
        <translation>Alt+G</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>Draw arrows to be sure of space next the code</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="156"/>
        <source>Colors</source>
        <translation>Colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="184"/>
        <source>&amp;Background</source>
        <translation>&amp;Background</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="187"/>
        <source>Alt+B</source>
        <translation>Alt+B</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="181"/>
        <source>Background color - under the code lines</source>
        <translation>Background colour - under the code lines</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="216"/>
        <source>&amp;Lines</source>
        <translation>&amp;Lines</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="219"/>
        <source>Alt+L</source>
        <translation>Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="213"/>
        <source>Color of the lines in barcode</source>
        <translation>Colour of the lines in barcode</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="248"/>
        <source>&amp;Text</source>
        <translation>&amp;Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="251"/>
        <source>Alt+T</source>
        <translation>Alt+T</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="245"/>
        <source>Color of the text and numbers</source>
        <translation>Colour of the text and numbers</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="280"/>
        <source>Hints and help is shown here</source>
        <translation>Hints and help is shown here</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="290"/>
        <source>Preview of the result. 72dpi sample.</source>
        <translation>Preview of the result. 72dpi sample.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="120"/>
        <source>Co&amp;de:</source>
        <translation>Co&amp;de:</translation>
    </message>
    <message>
        <source>I&amp;nclude checksum</source>
        <translation type="obsolete">I&amp;nclude checksum</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="55"/>
        <source>Alt+N</source>
        <translation>Alt+N</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="49"/>
        <source>Generate and include a checksum in barcode</source>
        <translation>Generate and include a checksum in barcode</translation>
    </message>
    <message>
        <source>Incl&amp;ude checksum digit</source>
        <translation type="obsolete">Incl&amp;ude checksum digit</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="42"/>
        <source>Alt+U</source>
        <translation>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>Include the checksum digit in the barcode text</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="15"/>
        <source>Insert Barcode</source>
        <translation>Insert Barcode</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="24"/>
        <source>Format</source>
        <translation>Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="39"/>
        <source>Incl&amp;ude Checksum Digit</source>
        <translation>Incl&amp;ude Checksum Digit</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="52"/>
        <source>I&amp;nclude Checksum</source>
        <translation>I&amp;nclude Checksum</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="65"/>
        <source>&amp;Guard Whitespace</source>
        <translation>&amp;Guard Whitespace</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="78"/>
        <source>&amp;Include Text in Barcode</source>
        <translation>&amp;Include Text in Barcode</translation>
    </message>
</context>
<context>
    <name>Biblio</name>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1444"/>
        <source>Scrapbook</source>
        <translation>Scrapbook</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="839"/>
        <source>Delete</source>
        <translation>Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1244"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1252"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1344"/>
        <source>Object</source>
        <translation>Object</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="914"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1257"/>
        <source>New Entry</source>
        <translation>New Entry</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="837"/>
        <source>Rename</source>
        <translation>Rename</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="914"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1113"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1257"/>
        <source>&amp;Name:</source>
        <translation>&amp;Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1120"/>
        <source>Name &quot;%1&quot; is not unique.
Please choose another.</source>
        <translation>Name &quot;%1&quot; is not unique.
Please choose another.</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="668"/>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="698"/>
        <source>Choose a Scrapbook Directory</source>
        <translation>Choose a Scrapbook Directory</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="759"/>
        <source>Choose a Directory</source>
        <translation>Choose a Directory</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="737"/>
        <source>Choose a scrapbook file to import</source>
        <translation>Choose a scrapbook file to import</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1445"/>
        <source>Create a new scrapbook page</source>
        <translation>Create a new scrapbook page</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1446"/>
        <source>Load an existing scrapbook</source>
        <translation>Load an existing scrapbook</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1447"/>
        <source>Save the selected scrapbook</source>
        <translation>Save the selected scrapbook</translation>
    </message>
    <message>
        <source>Import an scrapbook file from Scribus &lt;=1.3.2</source>
        <translation type="obsolete">Import an scrapbook file from Scribus &lt;=1.3.2</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1449"/>
        <source>Close the selected scrapbook</source>
        <translation>Close the selected scrapbook</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="844"/>
        <source>Copy To:</source>
        <translation>Copy To:</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="845"/>
        <source>Move To:</source>
        <translation>Move To:</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="560"/>
        <source>Main</source>
        <translation>Main</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="562"/>
        <source>Copied Items</source>
        <translation>Copied Items</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1113"/>
        <source>New Name</source>
        <translation>New Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="739"/>
        <source>Scrapbook (*.scs *.SCS)</source>
        <translation>Scrapbook (*.scs *.SCS)</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="833"/>
        <source>Paste to Page</source>
        <translation>Paste to Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="889"/>
        <source>Save as...</source>
        <translation>Save as...</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="892"/>
        <source>Close</source>
        <translation>Close</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="895"/>
        <source>Delete Contents</source>
        <translation>Delete Contents</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1068"/>
        <source>Do you really want to delete all entries?</source>
        <translation>Do you really want to delete all entries?</translation>
    </message>
    <message>
        <location filename="../../../scribus/scrapbookpalette.cpp" line="1448"/>
        <source>Import a scrapbook file from Scribus &lt;=1.3.2</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>BookPalette</name>
    <message>
        <location filename="../../../scribus/bookmarkpalette.cpp" line="51"/>
        <source>Bookmarks</source>
        <translation>Bookmarks</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>Layout:</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>Icon only</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Caption below Icon</source>
        <translation>Caption below Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="41"/>
        <source>Caption above Icon</source>
        <translation>Caption above Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption right to Icon</source>
        <translation>Caption right to Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption left to Icon</source>
        <translation>Caption left to Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="42"/>
        <source>Caption overlays Icon</source>
        <translation>Caption overlays Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="50"/>
        <source>Scale:</source>
        <translation>Scale:</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="55"/>
        <source>Always</source>
        <translation>Always</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="56"/>
        <source>When Icon is too big</source>
        <translation>When Icon is too big</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="56"/>
        <source>Never</source>
        <translation>Never</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="63"/>
        <source>Scale How:</source>
        <translation>Scale How:</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="66"/>
        <source>Proportional</source>
        <translation>Proportional</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="67"/>
        <source>Non Proportional</source>
        <translation>Non Proportional</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="90"/>
        <source>Icon</source>
        <translation>Icon</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="117"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="121"/>
        <source>Cancel</source>
        <translation>Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="124"/>
        <source>Reset</source>
        <translation>Reset</translation>
    </message>
    <message>
        <location filename="../../../scribus/buttonicon.cpp" line="55"/>
        <source>When Icon is too small</source>
        <translation>When Icon is too small</translation>
    </message>
</context>
<context>
    <name>CMSPrefs</name>
    <message>
        <source>System Profiles</source>
        <translation type="obsolete">System Profiles</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>Perceptual</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="69"/>
        <source>Relative Colorimetric</source>
        <translation>Relative Colourimetric</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="70"/>
        <source>Saturation</source>
        <translation>Saturation</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefs.cpp" line="70"/>
        <source>Absolute Colorimetric</source>
        <translation>Absolute Colourimetric</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>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">&amp;Activate Colour Management</translation>
    </message>
    <message>
        <source>&amp;Monitor:</source>
        <translation type="obsolete">&amp;Monitor:</translation>
    </message>
    <message>
        <source>P&amp;rinter:</source>
        <translation type="obsolete">P&amp;rinter:</translation>
    </message>
    <message>
        <source>Sim&amp;ulate Printer on the Screen</source>
        <translation type="obsolete">Sim&amp;ulate Printer on the Screen</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 Pictures:</translation>
    </message>
    <message>
        <source>&amp;CMYK Pictures:</source>
        <translation type="obsolete">&amp;CMYK Pictures:</translation>
    </message>
    <message>
        <source>Default color profile for imported CMYK images</source>
        <translation type="obsolete">Default colour profile for imported CMYK images</translation>
    </message>
    <message>
        <source>Default color profile for imported RGB images</source>
        <translation type="obsolete">Default colour profile for imported RGB images</translation>
    </message>
    <message>
        <source>&amp;RGB Solid Colors:</source>
        <translation type="obsolete">&amp;RGB Solid Colours:</translation>
    </message>
    <message>
        <source>&amp;CMYK Solid Colors:</source>
        <translation type="obsolete">&amp;CMYK Solid Colours:</translation>
    </message>
    <message>
        <source>Pictures:</source>
        <translation type="obsolete">Pictures:</translation>
    </message>
    <message>
        <source>Sol&amp;id Colors:</source>
        <translation type="obsolete">Sol&amp;id Colours:</translation>
    </message>
    <message>
        <source>Convert all colors to printer space</source>
        <translation type="obsolete">Convert all colours to printer space</translation>
    </message>
    <message>
        <source>Default color profile for solid RGB colors on the page</source>
        <translation type="obsolete">Default colour profile for solid RGB colours on the page</translation>
    </message>
    <message>
        <source>Default color profile for solid CMYK colors on the page</source>
        <translation type="obsolete">Default colour profile for solid CMYK colours on the page</translation>
    </message>
    <message>
        <source>Default rendering intent for solid colors. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="obsolete">Default rendering intent for solid colours. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
    </message>
    <message>
        <source>Default rendering intent for images. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
        <translation type="obsolete">Default rendering intent for images. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
    </message>
    <message>
        <source>Simulate a full color managed environment :
all colors, rgb or cmyk, are converted to printer color space.</source>
        <translation type="obsolete">Simulate a full colour managed environment :
all colours, rgb or cmyk, are converted to printer colour space.</translation>
    </message>
    <message>
        <source>Images:</source>
        <translation type="obsolete">Images:</translation>
    </message>
</context>
<context>
    <name>CMSPrefsBase</name>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="19"/>
        <source>Form</source>
        <translation>Form</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="40"/>
        <source>&amp;Activate Color Management</source>
        <translation>&amp;Activate Colour Management</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="50"/>
        <source>System Profiles</source>
        <translation>System Profiles</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="74"/>
        <source>&amp;RGB Images:</source>
        <translation>&amp;RGB Images:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="90"/>
        <source>Default color profile for imported RGB images</source>
        <translation>Default colour profile for imported RGB images</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="97"/>
        <source>&amp;CMYK Images:</source>
        <translation>&amp;CMYK Images:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="113"/>
        <source>Default color profile for imported CMYK images</source>
        <translation>Default colour profile for imported CMYK images</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="120"/>
        <source>&amp;RGB Solid Colors:</source>
        <translation>&amp;RGB Solid Colours:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="136"/>
        <source>Default color profile for solid RGB colors on the page</source>
        <translation>Default colour profile for solid RGB colours on the page</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="143"/>
        <source>&amp;CMYK Solid Colors:</source>
        <translation>&amp;CMYK Solid Colours:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="159"/>
        <source>Default color profile for solid CMYK colors on the page</source>
        <translation>Default colour profile for solid CMYK colours on the page</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="166"/>
        <source>&amp;Monitor:</source>
        <translation>&amp;Monitor:</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>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>P&amp;rinter:</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>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>Rendering Intents</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="244"/>
        <source>Images:</source>
        <translation>Images:</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>Default rendering intent for images. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="268"/>
        <source>Sol&amp;id Colors:</source>
        <translation>Sol&amp;id Colours:</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>Default rendering intent for solid colours. Unless you know why to change it,
Relative Colourimetric or Perceptual should be chosen.</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>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>Sim&amp;ulate Printer on the Screen</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>Simulate a full colour managed environment :
all colours, rgb or cmyk, are converted to printer colour space.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmsprefsbase.ui" line="333"/>
        <source>Convert all colors to printer space</source>
        <translation>Convert all colours to printer space</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>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>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>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>Use &amp;Blackpoint Compensation</translation>
    </message>
</context>
<context>
    <name>CMYKChoose</name>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="92"/>
        <source>Edit Color</source>
        <translation>Edit Colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="116"/>
        <location filename="../../../scribus/cmykfw.cpp" line="661"/>
        <location filename="../../../scribus/cmykfw.cpp" line="680"/>
        <location filename="../../../scribus/cmykfw.cpp" line="899"/>
        <location filename="../../../scribus/cmykfw.cpp" line="906"/>
        <source>CMYK</source>
        <translation>CMYK</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="117"/>
        <location filename="../../../scribus/cmykfw.cpp" line="414"/>
        <location filename="../../../scribus/cmykfw.cpp" line="911"/>
        <source>RGB</source>
        <translation>RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="118"/>
        <location filename="../../../scribus/cmykfw.cpp" line="764"/>
        <source>Web Safe RGB</source>
        <translation>Web Safe RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="141"/>
        <source>New</source>
        <translation>New</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="158"/>
        <source>Old</source>
        <translation>Old</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="266"/>
        <location filename="../../../scribus/cmykfw.cpp" line="705"/>
        <source>C:</source>
        <translation>C:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="293"/>
        <location filename="../../../scribus/cmykfw.cpp" line="706"/>
        <source>M:</source>
        <translation>M:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="320"/>
        <location filename="../../../scribus/cmykfw.cpp" line="707"/>
        <source>Y:</source>
        <translation>Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="347"/>
        <source>K:</source>
        <translation>K:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="444"/>
        <source>Dynamic Color Bars</source>
        <translation>Dynamic Colour Bars</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="442"/>
        <source>Static Color Bars</source>
        <translation>Static Colour Bars</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="749"/>
        <source>R:</source>
        <translation>R:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="750"/>
        <source>G:</source>
        <translation>G:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="751"/>
        <source>B:</source>
        <translation>B:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="288"/>
        <location filename="../../../scribus/cmykfw.cpp" line="315"/>
        <location filename="../../../scribus/cmykfw.cpp" line="342"/>
        <location filename="../../../scribus/cmykfw.cpp" line="369"/>
        <location filename="../../../scribus/cmykfw.cpp" line="702"/>
        <location filename="../../../scribus/cmykfw.cpp" line="703"/>
        <location filename="../../../scribus/cmykfw.cpp" line="704"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <source>HSV-Colormap</source>
        <translation type="obsolete">HSV-Colourmap</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="101"/>
        <source>&amp;Name:</source>
        <translation>&amp;Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="111"/>
        <source>Color &amp;Model</source>
        <translation>Colour &amp;Model</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="125"/>
        <source>Is Spot Color</source>
        <translation>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="1002"/>
        <source>You cannot create a color named &quot;%1&quot;.
It is a reserved name for transparent color</source>
        <translation>You cannot create a colour named &quot;%1&quot;.
It is a reserved name for transparent colour</translation>
    </message>
    <message>
        <source>Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself.</source>
        <translation type="obsolete">Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="1011"/>
        <source>The name of the color already exists,
please choose another one.</source>
        <translation>The name of the colour already exists,
please choose another one.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="390"/>
        <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>Choosing this will make this colour a spot colour, thus creating another spot when creating plates or separations. This is used most often when a logo or other colour 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.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="784"/>
        <location filename="../../../scribus/cmykfw.cpp" line="785"/>
        <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>If colour management is enabled, a triangle warning indicator is a warning that the colour maybe outside of the colour gamut of the current printer profile selected. What this means is the colour may not print exactly as indicated on screen. More hints about gamut warnings are in the online help under Colour Management.</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="995"/>
        <source>You cannot create a color without a name
Please give it a name</source>
        <translation>You cannot create a colour without a namePlease give it a name</translation>
    </message>
    <message>
        <location filename="../../../scribus/cmykfw.cpp" line="196"/>
        <source>HSV Color Map</source>
        <translation>HSV Colour Map</translation>
    </message>
</context>
<context>
    <name>CWDialog</name>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="319"/>
        <source>Merging colors</source>
        <translation>Merging colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="325"/>
        <source>Error: </source>
        <translation>Error: </translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="325"/>
        <source>Color %1 exists already!</source>
        <translation>Colour %1 exists already!</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="330"/>
        <source>Color %1 appended.</source>
        <translation>Colour %1 appended.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="334"/>
        <source>Now opening the color manager.</source>
        <translation>Now opening the colour manager.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="337"/>
        <source>Color Merging</source>
        <translation>Colour Merging</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>Unable to find the requested colour. You have probably selected black, grey 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>Colour Wheel</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>Click the wheel to get the base colour. Its colour model depends on the chosen tab.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="52"/>
        <source>Result Colors</source>
        <translation>Result Colours</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>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>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>HSV</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="106"/>
        <source>Colors of your chosen color scheme.</source>
        <translation>Colours of your chosen colour scheme.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="116"/>
        <source>Color Scheme Method</source>
        <translation>Colour Scheme Method</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="142"/>
        <source>Angle:</source>
        <translation>Angle:</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>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>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>Merge created colours into the document colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="204"/>
        <source>&amp;Merge</source>
        <translation>&amp;Merge</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="207"/>
        <source>Alt+M</source>
        <translation>Alt+M</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="214"/>
        <source>Replace created colors in the document colors</source>
        <translation>Replace created colours in the document colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="217"/>
        <source>&amp;Replace</source>
        <translation>&amp;Replace</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="220"/>
        <source>Alt+R</source>
        <translation>Alt+R</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="227"/>
        <source>Leave colors untouched</source>
        <translation>Leave colours untouched</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="230"/>
        <source>&amp;Cancel</source>
        <translation>&amp;Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="233"/>
        <source>Alt+C</source>
        <translation>Alt+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="242"/>
        <source>Preview:</source>
        <translation>Preview:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="266"/>
        <source>Sample color scheme.</source>
        <translation>Sample colour scheme.</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>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>Vision Defect Type:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="342"/>
        <source>C:</source>
        <translation>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> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="372"/>
        <source>M:</source>
        <translation>M:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="402"/>
        <source>Y:</source>
        <translation>Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="432"/>
        <source>K:</source>
        <translation>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>RGB:</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>HSV:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="571"/>
        <source>R:</source>
        <translation>R:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="598"/>
        <source>G:</source>
        <translation>G:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="625"/>
        <source>B:</source>
        <translation>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>CMYK:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="757"/>
        <source>H:</source>
        <translation>H:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="784"/>
        <source>S:</source>
        <translation>S:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="811"/>
        <source>V:</source>
        <translation>V:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="918"/>
        <source>Document</source>
        <translation>Document</translation>
    </message>
</context>
<context>
    <name>Canvas</name>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2218"/>
        <location filename="../../../scribus/canvas.cpp" line="2246"/>
        <source>X: %1
Y: %2</source>
        <translation>X: %1
Y: %2</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2231"/>
        <source>X: %1</source>
        <translation>X: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2238"/>
        <source>Y: %1</source>
        <translation>Y: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2254"/>
        <source>Length: %1
Angle: %2</source>
        <translation>Length: %1
Angle: %2</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2256"/>
        <source>Width: %1
Height: %2</source>
        <translation>Width: %1
Height: %2</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvas.cpp" line="2268"/>
        <source>Angle: %1</source>
        <translation>Angle: %1</translation>
    </message>
</context>
<context>
    <name>CanvasMode_EyeDropper</name>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="166"/>
        <source>The selected color does not exist in the document&apos;s color set. Please enter a name for this new color.</source>
        <translation>The selected colour does not exist in the document&apos;s colour set. Please enter a name for this new colour.</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="169"/>
        <source>Color Not Found</source>
        <translation>Colour Not Found</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_eyedropper.cpp" line="173"/>
        <source>The name you have selected already exists. Please enter a different name for this new color.</source>
        <translation>The name you have selected already exists. Please enter a different name for this new colour.</translation>
    </message>
</context>
<context>
    <name>CanvasMode_Normal</name>
    <message>
        <location filename="../../../scribus/canvasmode_normal.cpp" line="1364"/>
        <source>All Supported Formats</source>
        <translation>All Supported Formats</translation>
    </message>
    <message>
        <location filename="../../../scribus/canvasmode_normal.cpp" line="1395"/>
        <source>Open</source>
        <translation>Open</translation>
    </message>
</context>
<context>
    <name>CharSelect</name>
    <message>
        <source>Font:</source>
        <translation type="obsolete">Font:</translation>
    </message>
    <message>
        <source>Character Class:</source>
        <translation type="obsolete">Character Class:</translation>
    </message>
    <message>
        <source>&amp;Insert</source>
        <translation type="obsolete">&amp;Insert</translation>
    </message>
    <message>
        <source>C&amp;lear</source>
        <translation type="obsolete">C&amp;lear</translation>
    </message>
    <message>
        <source>Insert the characters at the cursor in the text</source>
        <translation type="obsolete">Insert the characters at the cursor in the text</translation>
    </message>
    <message>
        <source>Delete the current selection(s).</source>
        <translation type="obsolete">Delete the current selection(s).</translation>
    </message>
    <message>
        <source>Full Character Set</source>
        <translation type="obsolete">Full Character Set</translation>
    </message>
    <message>
        <source>Basic Latin</source>
        <translation type="obsolete">Basic Latin</translation>
    </message>
    <message>
        <source>Latin-1 Supplement</source>
        <translation type="obsolete">Latin-1 Supplement</translation>
    </message>
    <message>
        <source>Latin Extended-A</source>
        <translation type="obsolete">Latin Extended-A</translation>
    </message>
    <message>
        <source>Latin Extended-B</source>
        <translation type="obsolete">Latin Extended-B</translation>
    </message>
    <message>
        <source>General Punctuation</source>
        <translation type="obsolete">General Punctuation</translation>
    </message>
    <message>
        <source>Super- and Subscripts</source>
        <translation type="obsolete">Super- and Subscripts</translation>
    </message>
    <message>
        <source>Currency Symbols</source>
        <translation type="obsolete">Currency Symbols</translation>
    </message>
    <message>
        <source>Letterlike Symbols</source>
        <translation type="obsolete">Letterlike Symbols</translation>
    </message>
    <message>
        <source>Number Forms</source>
        <translation type="obsolete">Number Forms</translation>
    </message>
    <message>
        <source>Arrows</source>
        <translation type="obsolete">Arrows</translation>
    </message>
    <message>
        <source>Mathematical Operators</source>
        <translation type="obsolete">Mathematical Operators</translation>
    </message>
    <message>
        <source>Box Drawing</source>
        <translation type="obsolete">Box Drawing</translation>
    </message>
    <message>
        <source>Block Elements</source>
        <translation type="obsolete">Block Elements</translation>
    </message>
    <message>
        <source>Geometric Shapes</source>
        <translation type="obsolete">Geometric Shapes</translation>
    </message>
    <message>
        <source>Miscellaneous Symbols</source>
        <translation type="obsolete">Miscellaneous Symbols</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">Ligatures</translation>
    </message>
    <message>
        <source>Specials</source>
        <translation type="obsolete">Specials</translation>
    </message>
    <message>
        <source>Greek</source>
        <translation type="obsolete">Greek</translation>
    </message>
    <message>
        <source>Greek Extended</source>
        <translation type="obsolete">Greek Extended</translation>
    </message>
    <message>
        <source>Cyrillic</source>
        <translation type="obsolete">Cyrillic</translation>
    </message>
    <message>
        <source>Cyrillic Supplement</source>
        <translation type="obsolete">Cyrillic Supplement</translation>
    </message>
    <message>
        <source>Arabic</source>
        <translation type="obsolete">Arabic</translation>
    </message>
    <message>
        <source>Arabic Extended A</source>
        <translation type="obsolete">Arabic Extended A</translation>
    </message>
    <message>
        <source>Arabic Extended B</source>
        <translation type="obsolete">Arabic Extended B</translation>
    </message>
    <message>
        <source>Hebrew</source>
        <translation type="obsolete">Hebrew</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">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</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="31"/>
        <source>Scribus Char Palette (*.ucp);;All Files (*)</source>
        <translation>Scribus Char Palette (*.ucp);;All Files (*)</translation>
    </message>
    <message>
        <source>Enhanced Palette</source>
        <translation type="obsolete">Enhanced Palette</translation>
    </message>
    <message>
        <source>Quick Palette</source>
        <translation type="obsolete">Quick Palette</translation>
    </message>
    <message>
        <source>Hide Enhanced</source>
        <translation type="obsolete">Hide Enhanced</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="226"/>
        <source>Choose a filename to open</source>
        <translation>Choose a filename to open</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="255"/>
        <location filename="../../../scribus/charselect.cpp" line="297"/>
        <source>Error</source>
        <translation>Error</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="256"/>
        <source>Error reading file %1 - file is corrupted propably.</source>
        <translation>Error reading file %1 - file is corrupted propably.</translation>
    </message>
    <message>
        <source>Choose a filename to save under</source>
        <translation type="obsolete">Choose a filename to save under</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="298"/>
        <source>Cannot write file %1</source>
        <translation>Cannot write file %1</translation>
    </message>
    <message>
        <source>Clean the Palette?</source>
        <translation type="obsolete">Clean the Palette?</translation>
    </message>
    <message>
        <source>You will clean all characters from this palette. Are you sure?</source>
        <translation type="obsolete">You will clean all characters from this palette. Are you sure?</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="13"/>
        <source>Character Palette</source>
        <translation>Character Palette</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Search</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="306"/>
        <source>Empty the Palette?</source>
        <translation>Empty the Palette?</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="307"/>
        <source>You will remove all characters from this palette. Are you sure?</source>
        <translation>You will remove all characters from this palette. Are you sure?</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.ui" line="24"/>
        <source>Hide/Show Enhanced Palette</source>
        <translation>Hide/Show Enhanced Palette</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselect.cpp" line="272"/>
        <source>Save Quick Character Palette</source>
        <translation>Save Quick Character Palette</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">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</translation>
    </message>
</context>
<context>
    <name>CharSelectEnhanced</name>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="205"/>
        <source>Full Character Set</source>
        <translation>Full Character Set</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="210"/>
        <source>Basic Latin</source>
        <translation>Basic Latin</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="216"/>
        <source>Latin-1 Supplement</source>
        <translation>Latin-1 Supplement</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="222"/>
        <source>Latin Extended-A</source>
        <translation>Latin Extended-A</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="228"/>
        <source>Latin Extended-B</source>
        <translation>Latin Extended-B</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="234"/>
        <source>General Punctuation</source>
        <translation>General Punctuation</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="240"/>
        <source>Super- and Subscripts</source>
        <translation>Super- and Subscripts</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="246"/>
        <source>Currency Symbols</source>
        <translation>Currency Symbols</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="252"/>
        <source>Letterlike Symbols</source>
        <translation>Letterlike Symbols</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="258"/>
        <source>Number Forms</source>
        <translation>Number Forms</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="264"/>
        <source>Arrows</source>
        <translation>Arrows</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="270"/>
        <source>Mathematical Operators</source>
        <translation>Mathematical Operators</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="276"/>
        <source>Box Drawing</source>
        <translation>Box Drawing</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="282"/>
        <source>Block Elements</source>
        <translation>Block Elements</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="288"/>
        <source>Geometric Shapes</source>
        <translation>Geometric Shapes</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="294"/>
        <source>Miscellaneous Symbols</source>
        <translation>Miscellaneous Symbols</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="300"/>
        <source>Dingbats</source>
        <translation>Dingbats</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="306"/>
        <source>Small Form Variants</source>
        <translation>Small Form Variants</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="312"/>
        <source>Ligatures</source>
        <translation>Ligatures</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="318"/>
        <source>Specials</source>
        <translation>Specials</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="324"/>
        <source>Greek</source>
        <translation>Greek</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="330"/>
        <source>Greek Extended</source>
        <translation>Greek Extended</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="336"/>
        <source>Cyrillic</source>
        <translation>Cyrillic</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="342"/>
        <source>Cyrillic Supplement</source>
        <translation>Cyrillic Supplement</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="348"/>
        <source>Arabic</source>
        <translation>Arabic</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="354"/>
        <source>Arabic Extended A</source>
        <translation>Arabic Extended A</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="360"/>
        <source>Arabic Extended B</source>
        <translation>Arabic Extended B</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.cpp" line="366"/>
        <source>Hebrew</source>
        <translation>Hebrew</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="13"/>
        <source>Enhanced Character Palette</source>
        <translation>Enhanced Character Palette</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="19"/>
        <source>&amp;Font:</source>
        <translation>&amp;Font:</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="45"/>
        <source>C&amp;haracter Class:</source>
        <translation>C&amp;haracter Class:</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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="96"/>
        <source>Insert &amp;Code:</source>
        <translation>Insert &amp;Code:</translation>
    </message>
    <message>
        <source>Type in a four digit unicode value directly here</source>
        <translation type="obsolete">Type in a four digit unicode value directly here</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="131"/>
        <source>Glyphs to Insert</source>
        <translation>Glyphs to Insert</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="171"/>
        <source>Insert the characters at the cursor in the text</source>
        <translation>Insert the characters at the cursor in the text</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="174"/>
        <source>&amp;Insert</source>
        <translation>&amp;Insert</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="184"/>
        <source>Delete the current selection(s).</source>
        <translation>Delete the current selection(s).</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="187"/>
        <source>C&amp;lear</source>
        <translation>C&amp;lear</translation>
    </message>
    <message>
        <location filename="../../../scribus/charselectenhanced.ui" line="106"/>
        <source>Type in a four digit Unicode value directly here</source>
        <translation>Type in a four digit Unicode value directly here</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>No Style</translation>
    </message>
</context>
<context>
    <name>CharTableView</name>
    <message>
        <location filename="../../../scribus/chartableview.cpp" line="22"/>
        <source>Delete</source>
        <translation>Delete</translation>
    </message>
</context>
<context>
    <name>CheckDocument</name>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="673"/>
        <source>Glyphs missing</source>
        <translation>Glyphs missing</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="674"/>
        <source>Text overflow</source>
        <translation>Text overflow</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="675"/>
        <source>Object is not on a Page</source>
        <translation>Object is not on a Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="676"/>
        <source>Missing Image</source>
        <translation>Missing Image</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="680"/>
        <source>Object has transparency</source>
        <translation>Object has transparency</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="681"/>
        <source>Object is a PDF Annotation or Field</source>
        <translation>Object is a PDF Annotation or Field</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="682"/>
        <source>Object is a placed PDF</source>
        <translation>Object is a placed PDF</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="379"/>
        <source>Document</source>
        <translation>Document</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="381"/>
        <source>No Problems found</source>
        <translation>No Problems found</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="561"/>
        <source>Page </source>
        <translation>Page </translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="625"/>
        <source>Free Objects</source>
        <translation>Free Objects</translation>
    </message>
    <message>
        <source>Problems found</source>
        <translation type="obsolete">Problems found</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="658"/>
        <source>Preflight Verifier</source>
        <translation>Preflight Verifier</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="660"/>
        <source>Items</source>
        <translation>Items</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="660"/>
        <source>Problems</source>
        <translation>Problems</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="665"/>
        <source>Current Profile:</source>
        <translation>Current Profile:</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="635"/>
        <location filename="../../../scribus/checkDocument.cpp" line="666"/>
        <source>&amp;Ignore Errors</source>
        <translation>&amp;Ignore Errors</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="667"/>
        <source>Check again</source>
        <translation>Check again</translation>
    </message>
    <message>
        <source>Image resolution below %1 DPI, currently %2 x %3 DPI</source>
        <translation type="obsolete">Image resolution below %1 DPI, currently %2 x %3 DPI</translation>
    </message>
    <message>
        <source>Image resolution above %1 DPI, currently %2 x %3 DPI</source>
        <translation type="obsolete">Image resolution above %1 DPI, currently %2 x %3 DPI</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="683"/>
        <source>Image is GIF</source>
        <translation>Image is GIF</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="382"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="413"/>
        <source>Transparency used</source>
        <translation>Transparency used</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="418"/>
        <source>Blendmode used</source>
        <translation>Blendmode used</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="431"/>
        <source>Layer &quot;%1&quot;</source>
        <translation>Layer &quot;%1&quot;</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="684"/>
        <source>Annotation uses a non TrueType font</source>
        <translation>Annotation uses a non TrueType font</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="669"/>
        <source>Preflight profile to base the report generation on. Options can be set in Document Setup or Preferences</source>
        <translation>Preflight profile to base the report generation on. Options can be set in Document Setup or Preferences</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="670"/>
        <source>Ignore found errors and continue to export or print. Be sure to understand the errors you are ignoring before continuing.</source>
        <translation>Ignore found errors and continue to export or print. Be sure to understand the errors you are ignoring before continuing.</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="671"/>
        <source>Rerun the document scan to check corrections you may have made</source>
        <translation>Rerun the document scan to check corrections you may have made</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="677"/>
        <source>Empty Image Frame</source>
        <translation>Empty Image Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="394"/>
        <source>Layers</source>
        <translation>Layers</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="423"/>
        <source>Print/Visible Mismatch</source>
        <translation>Print/Visible Mismatch</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="437"/>
        <location filename="../../../scribus/checkDocument.cpp" line="506"/>
        <source>Issue(s): %1</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="448"/>
        <source>Master Pages</source>
        <translation>Master Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="661"/>
        <source>Layer</source>
        <translation>Layer</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="678"/>
        <source>Image resolution below %1 DPI,
currently %2 x %3 DPI</source>
        <translation>Image resolution below %1 DPI,
currently %2 x %3 DPI</translation>
    </message>
    <message>
        <location filename="../../../scribus/checkDocument.cpp" line="679"/>
        <source>Image resolution above %1 DPI,
currently %2 x %3 DPI</source>
        <translation>Image resolution above %1 DPI,
currently %2 x %3 DPI</translation>
    </message>
</context>
<context>
    <name>CollectForOutput</name>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="52"/>
        <source>Choose a Directory</source>
        <translation>Choose a Directory</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="65"/>
        <source>Cannot create directory:
%1</source>
        <translation>Cannot create directory:
%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="80"/>
        <source>Collecting...</source>
        <translation>Collecting...</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="85"/>
        <source>Cannot collect all files for output for file:
%1</source>
        <translation>Cannot collect all files for output for file:
%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/collect4output.cpp" line="99"/>
        <source>Cannot collect the file: 
%1</source>
        <translation>Cannot collect the file: 
%1</translation>
    </message>
</context>
<context>
    <name>ColorManager</name>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="54"/>
        <source>Colors</source>
        <translation>Colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="80"/>
        <source>&amp;Import</source>
        <translation>&amp;Import</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="82"/>
        <source>&amp;New</source>
        <translation>&amp;New</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="84"/>
        <source>&amp;Edit</source>
        <translation>&amp;Edit</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="88"/>
        <source>D&amp;uplicate</source>
        <translation>D&amp;uplicate</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="91"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="96"/>
        <source>&amp;Remove Unused</source>
        <translation>&amp;Remove Unused</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="103"/>
        <source>Color Sets</source>
        <translation>Colour Sets</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="109"/>
        <source>Current Color Set:</source>
        <translation>Current Colour Set:</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="140"/>
        <source>&amp;Save Color Set</source>
        <translation>&amp;Save Colour Set</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="159"/>
        <source>Choose a color set to load</source>
        <translation>Choose a colour set to load</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="160"/>
        <source>Save the current color set</source>
        <translation>Save the current colour set</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="165"/>
        <source>Remove unused colors from current document&apos;s color set</source>
        <translation>Remove unused colours from current document&apos;s colour set</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="167"/>
        <source>Import colors to the current set from an existing document</source>
        <translation>Import colours to the current set from an existing document</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="168"/>
        <source>Create a new color within the current set</source>
        <translation>Create a new colour within the current set</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="169"/>
        <source>Edit the currently selected color</source>
        <translation>Edit the currently selected colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="170"/>
        <source>Make a copy of the currently selected color</source>
        <translation>Make a copy of the currently selected colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="171"/>
        <source>Delete the currently selected color</source>
        <translation>Delete the currently selected colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="172"/>
        <source>Make the current colorset the default color set</source>
        <translation>Make the current colourset the default colour set</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="190"/>
        <source>&amp;Name:</source>
        <translation>&amp;Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="190"/>
        <source>Choose a Name</source>
        <translation>Choose a Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="354"/>
        <source>Copy of %1</source>
        <translation>Copy of %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="365"/>
        <source>New Color</source>
        <translation>New Colour</translation>
    </message>
    <message>
        <source>If color management is enabled, a triangle warning indicator is a warning the 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. Registration colors will have a registration mark next to the color. More hints about gamut warnings are in the online help under Color Management.</source>
        <translation type="obsolete">If colour management is enabled, a triangle warning indicator is a warning the the colour maybe outside of the colour gamut of the current printer profile selected.What this means is the colour may not print exactly as indicated on screen. Spot colours are indicated by a red circle. Registration colours will have a registration mark next to the colour. More hints about gamut warnings are in the online help under Colour Management.</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="322"/>
        <source>Information</source>
        <translation>Information</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="322"/>
        <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>The file %1 does not contain colours 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 colour descriptions are located.
 This prevents importing colours from some files.
See the Edit Colours section of the documentation for more details.</translation>
    </message>
    <message>
        <source>Import</source>
        <translation type="obsolete">Import</translation>
    </message>
    <message>
        <source>Documents (%1);;Other Files (%2);;All Files (*)</source>
        <translation type="obsolete">Documents (%1);;Other Files (%2);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="173"/>
        <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>If colour management is enabled, a triangle warning indicator is a warning that the colour maybe outside of the colour gamut of the current printer profile selected. What this means is the colour may not print exactly as indicated on screen. Spot colours are indicated by a red circle. More hints about gamut warnings are in the online help under Colour Management. Registration colours will have a registration mark next to the colour. Use Registration only for printers marks and crop marks.</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="312"/>
        <source>All Supported Formats (%1);;Documents (%2);;Other Files (%3);;All Files (*)</source>
        <translation>All Supported Formats (%1);;Documents (%2);;Other Files (%3);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/colorm.cpp" line="313"/>
        <source>Import Colors</source>
        <translation>Import Colours</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"/>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="224"/>
        <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>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="206"/>
        <source>Monochromatic Light</source>
        <translation>Monochromatic Light</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="209"/>
        <source>Monochromatic Dark</source>
        <translation>Monochromatic Dark</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="216"/>
        <source>1st. Analogous</source>
        <translation>1st. Analogous</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="217"/>
        <source>2nd. Analogous</source>
        <translation>2nd. Analogous</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="231"/>
        <source>1st. Split</source>
        <translation>1st. Split</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="232"/>
        <source>2nd. Split</source>
        <translation>2nd. Split</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="233"/>
        <source>3rd. Split</source>
        <translation>3rd. Split</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="234"/>
        <source>4th. Split</source>
        <translation>4th. Split</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="241"/>
        <source>1st. Triadic</source>
        <translation>1st. Triadic</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="242"/>
        <source>2nd. Triadic</source>
        <translation>2nd. Triadic</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="249"/>
        <source>1st. Tetradic (base opposite)</source>
        <translation>1st. Tetradic (base opposite)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="250"/>
        <source>2nd. Tetradic (angle)</source>
        <translation>2nd. Tetradic (angle)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="251"/>
        <source>3rd. Tetradic (angle opposite)</source>
        <translation>3rd. Tetradic (angle opposite)</translation>
    </message>
</context>
<context>
    <name>ColorWheelPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="47"/>
        <source>&amp;Color Wheel...</source>
        <translation>&amp;Colour Wheel...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="64"/>
        <source>Color setting helper</source>
        <translation>Colour setting helper</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="65"/>
        <source>Color selector with color theory included.</source>
        <translation>Colour selector with colour theory included.</translation>
    </message>
</context>
<context>
    <name>CommonStrings</name>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="244"/>
        <source>&amp;Apply</source>
        <translation>&amp;Apply</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="247"/>
        <source>&amp;Cancel</source>
        <translation>&amp;Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="254"/>
        <source>&amp;OK</source>
        <translation>&amp;OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="257"/>
        <source>&amp;Save</source>
        <translation>&amp;Save</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="260"/>
        <source>Warning</source>
        <translation>Warning</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="251"/>
        <source>None</source>
        <comment>color name</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="285"/>
        <source>Custom</source>
        <comment>CommonStrings, custom page size</comment>
        <translation>Custom</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="291"/>
        <source>Single Page</source>
        <translation>Single Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="292"/>
        <source>Double Sided</source>
        <translation>Double Sided</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="293"/>
        <source>3-Fold</source>
        <translation>3-Fold</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="294"/>
        <source>4-Fold</source>
        <translation>4-Fold</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="330"/>
        <source>Monday</source>
        <translation>Monday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="331"/>
        <source>Tuesday</source>
        <translation>Tuesday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="332"/>
        <source>Wednesday</source>
        <translation>Wednesday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="333"/>
        <source>Thursday</source>
        <translation>Thursday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="334"/>
        <source>Friday</source>
        <translation>Friday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="335"/>
        <source>Saturday</source>
        <translation>Saturday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="336"/>
        <source>Sunday</source>
        <translation>Sunday</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="337"/>
        <source>January</source>
        <translation>January</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="338"/>
        <source>February</source>
        <translation>February</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="339"/>
        <source>March</source>
        <translation>March</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="340"/>
        <source>April</source>
        <translation>April</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="341"/>
        <source>May</source>
        <translation>May</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="342"/>
        <source>June</source>
        <translation>June</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="343"/>
        <source>July</source>
        <translation>July</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="344"/>
        <source>August</source>
        <translation>August</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="345"/>
        <source>September</source>
        <translation>September</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="346"/>
        <source>October</source>
        <translation>October</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="347"/>
        <source>November</source>
        <translation>November</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="348"/>
        <source>December</source>
        <translation>December</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="262"/>
        <source>Yes</source>
        <translation>Yes</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="263"/>
        <source>No</source>
        <translation>No</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="264"/>
        <source>&amp;Yes</source>
        <translation>&amp;Yes</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="265"/>
        <source>&amp;No</source>
        <translation>&amp;No</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="301"/>
        <source>Left Page</source>
        <comment>Left page location</comment>
        <translation>Left Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="302"/>
        <source>Middle</source>
        <comment>Middle page location</comment>
        <translation>Middle</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="303"/>
        <source>Middle Left</source>
        <comment>Middle Left page location</comment>
        <translation>Middle Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="304"/>
        <source>Middle Right</source>
        <comment>Middle Right page location</comment>
        <translation>Middle Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="305"/>
        <source>Right Page</source>
        <comment>Right page location</comment>
        <translation>Right Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="308"/>
        <source>Normal</source>
        <comment>Default single master page</comment>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="310"/>
        <source>Normal Left</source>
        <comment>Default left master page</comment>
        <translation>Normal Left</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="312"/>
        <source>Normal Middle</source>
        <comment>Default middle master page</comment>
        <translation>Normal Middle</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="314"/>
        <source>Normal Right</source>
        <comment>Default right master page</comment>
        <translation>Normal Right</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="356"/>
        <source>Normal Vision</source>
        <comment>Color Blindness - Normal Vision</comment>
        <translation>Normal Vision</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="357"/>
        <source>Protanopia (Red)</source>
        <comment>Color Blindness - Red Color Blind</comment>
        <translation>Protanopia (Red)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="358"/>
        <source>Deuteranopia (Green)</source>
        <comment>Color Blindness - Greed Color Blind</comment>
        <translation>Deuteranopia (Green)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="359"/>
        <source>Tritanopia (Blue)</source>
        <comment>Color Blindness - Blue Color Blind</comment>
        <translation>Tritanopia (Blue)</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="360"/>
        <source>Full Color Blindness</source>
        <comment>Color Blindness - Full Color Blindness</comment>
        <translation>Full Colour Blindness</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="362"/>
        <source>Custom: </source>
        <comment>Custom Tab Fill Option</comment>
        <translation>Custom: </translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="316"/>
        <source>Solid Line</source>
        <translation>Solid Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="317"/>
        <source>Dashed Line</source>
        <translation>Dashed Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="318"/>
        <source>Dotted Line</source>
        <translation>Dotted Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="319"/>
        <source>Dash Dot Line</source>
        <translation>Dash Dot Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="320"/>
        <source>Dash Dot Dot Line</source>
        <translation>Dash Dot Dot Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="364"/>
        <source>None</source>
        <comment>Optical Margin Setting</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="365"/>
        <source>Left Protruding</source>
        <comment>Optical Margin Setting</comment>
        <translation>Left Protruding</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="366"/>
        <source>Right Protruding</source>
        <comment>Optical Margin Setting</comment>
        <translation>Right Protruding</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="367"/>
        <source>Left Hanging Punctuation</source>
        <comment>Optical Margin Setting</comment>
        <translation>Left Hanging Punctuation</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="368"/>
        <source>Right Hanging Punctuation</source>
        <comment>Optical Margin Setting</comment>
        <translation>Right Hanging Punctuation</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="369"/>
        <source>Default</source>
        <comment>Optical Margin Setting</comment>
        <translation>Default</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="372"/>
        <source>Min. Word Tracking</source>
        <translation>Min. Word Tracking</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="373"/>
        <source>Max. Word Tracking</source>
        <translation>Max. Word Tracking</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="376"/>
        <source>Min. Glyph Extension</source>
        <translation>Min. Glyph Extension</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="377"/>
        <source>Max. Glyph Extension</source>
        <translation>Max. Glyph Extension</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="250"/>
        <source>None</source>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="350"/>
        <source>RGB</source>
        <comment>Colorspace</comment>
        <translation>RGB</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="351"/>
        <source>CMYK</source>
        <comment>Colorspace</comment>
        <translation>CMYK</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="352"/>
        <source>Grayscale</source>
        <comment>Colorspace</comment>
        <translation>Greyscale</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="353"/>
        <source>Duotone</source>
        <comment>Colorspace</comment>
        <translation>Duotone</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="354"/>
        <source>Unknown</source>
        <comment>Colorspace (Unknown)</comment>
        <translation>Unknown</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="381"/>
        <source>PostScript</source>
        <translation>PostScript</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="267"/>
        <source>Text Frame</source>
        <translation>Text Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="268"/>
        <source>Image Frame</source>
        <translation>Image Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="269"/>
        <source>Line</source>
        <translation>Line</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="270"/>
        <source>Polygon</source>
        <translation>Polygon</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="271"/>
        <source>Polyline</source>
        <translation>Polyline</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="272"/>
        <source>Text on a Path</source>
        <translation>Text on a Path</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="274"/>
        <source>Multiple</source>
        <comment>Multiple frame types</comment>
        <translation>Multiple</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="275"/>
        <source>PDF Push Button</source>
        <translation>PDF Push Button</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="276"/>
        <source>PDF Text Field</source>
        <translation>PDF Text Field</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="277"/>
        <source>PDF Check Box</source>
        <translation>PDF Check Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="278"/>
        <source>PDF Combo Box</source>
        <translation>PDF Combo Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="279"/>
        <source>PDF List Box</source>
        <translation>PDF List Box</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="280"/>
        <source>PDF Text Annotation</source>
        <translation>PDF Text Annotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="281"/>
        <source>PDF Link Annotation</source>
        <translation>PDF Link Annotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="388"/>
        <source>PostScript Level 1</source>
        <translation>PostScript Level 1</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="390"/>
        <source>PostScript Level 2</source>
        <translation>PostScript Level 2</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="392"/>
        <source>PostScript Level 3</source>
        <translation>PostScript Level 3</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="394"/>
        <source>Windows GDI</source>
        <translation>Windows GDI</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="273"/>
        <source>Render Frame</source>
        <translation>Render Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="325"/>
        <source>Default Paragraph Style</source>
        <translation>Default Paragraph Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="326"/>
        <source>Default Character Style</source>
        <translation>Default Character Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/commonstrings.cpp" line="327"/>
        <source>Default Line Style</source>
        <translation>Default Line Style</translation>
    </message>
</context>
<context>
    <name>ContextMenu</name>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="210"/>
        <source>Preview Settings</source>
        <translation>Preview Settings</translation>
    </message>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="421"/>
        <source>Paste File...</source>
        <translation>Paste File...</translation>
    </message>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="454"/>
        <source>Delete Page</source>
        <translation>Delete Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/contextmenu.cpp" line="182"/>
        <source>Paste Image from Clipboard</source>
        <translation>Paste Image from Clipboard</translation>
    </message>
</context>
<context>
    <name>CopyPageToMasterPageBase</name>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="16"/>
        <source>Convert Page to Master Page</source>
        <translation>Convert Page to Master Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="24"/>
        <source>Name:</source>
        <translation>Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpage.ui" line="39"/>
        <source>Copy Applied Master Page Items</source>
        <translation>Copy Applied Master Page Items</translation>
    </message>
</context>
<context>
    <name>CopyPageToMasterPageDialog</name>
    <message>
        <location filename="../../../scribus/ui/copypagetomasterpagedialog.cpp" line="18"/>
        <source>New Master Page %1</source>
        <translation>New Master Page %1</translation>
    </message>
</context>
<context>
    <name>Cpalette</name>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1007"/>
        <location filename="../../../scribus/cpalette.cpp" line="1020"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1008"/>
        <source>Horizontal Gradient</source>
        <translation>Horizontal Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1009"/>
        <source>Vertical Gradient</source>
        <translation>Vertical Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1010"/>
        <source>Diagonal Gradient</source>
        <translation>Diagonal Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1011"/>
        <source>Cross Diagonal Gradient</source>
        <translation>Cross Diagonal Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1012"/>
        <source>Radial Gradient</source>
        <translation>Radial Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1002"/>
        <source>Opacity:</source>
        <translation>Opacity:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="985"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1001"/>
        <source>Shade:</source>
        <translation>Shade:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1038"/>
        <source>Edit Line Color Properties</source>
        <translation>Edit Line Colour Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1039"/>
        <source>Edit Fill Color Properties</source>
        <translation>Edit Fill Colour Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1040"/>
        <source>Saturation of color</source>
        <translation>Saturation of colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1041"/>
        <source>Normal or gradient fill method</source>
        <translation>Normal or gradient fill method</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1042"/>
        <source>Set the transparency for the color selected</source>
        <translation>Set the transparency for the colour selected</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1013"/>
        <source>Free linear Gradient</source>
        <translation>Free linear Gradient</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1014"/>
        <source>Free radial Gradient</source>
        <translation>Free radial Gradient</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="984"/>
        <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="1003"/>
        <source>Move Vector</source>
        <translation>Move Vector</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1043"/>
        <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>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="1017"/>
        <source>Transparency Settings</source>
        <translation>Transparency Settings</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1018"/>
        <source>Blend Mode:</source>
        <translation>Blend Mode:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1021"/>
        <source>Darken</source>
        <translation>Darken</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1022"/>
        <source>Lighten</source>
        <translation>Lighten</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1023"/>
        <source>Multiply</source>
        <translation>Multiply</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1024"/>
        <source>Screen</source>
        <translation>Screen</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1025"/>
        <source>Overlay</source>
        <translation>Overlay</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1026"/>
        <source>Hard Light</source>
        <translation>Hard Light</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1027"/>
        <source>Soft Light</source>
        <translation>Soft Light</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1028"/>
        <source>Difference</source>
        <translation>Difference</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1030"/>
        <source>Color Dodge</source>
        <translation>Colour Dodge</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1031"/>
        <source>Color Burn</source>
        <translation>Colour Burn</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1032"/>
        <source>Hue</source>
        <translation>Hue</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1033"/>
        <source>Saturation</source>
        <translation>Saturation</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1034"/>
        <source>Color</source>
        <translation>Colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1035"/>
        <source>Luminosity</source>
        <translation>Luminosity</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="988"/>
        <source>Offsets</source>
        <translation>Offsets</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="989"/>
        <source>X:</source>
        <translation>X:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="991"/>
        <source>Y:</source>
        <translation>Y:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="993"/>
        <source>Scaling</source>
        <translation>Scaling</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="998"/>
        <source>Rotation</source>
        <translation>Rotation</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="999"/>
        <source>Angle</source>
        <translation>Angle</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="405"/>
        <location filename="../../../scribus/cpalette.cpp" line="518"/>
        <location filename="../../../scribus/cpalette.cpp" line="1015"/>
        <source>Pattern</source>
        <translation>Pattern</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1029"/>
        <source>Exclusion</source>
        <translation>Exclusion</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="994"/>
        <source>X-Scale:</source>
        <translation>X-Scale:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="996"/>
        <source>Y-Scale:</source>
        <translation>Y-Scale:</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="229"/>
        <location filename="../../../scribus/cpalette.cpp" line="1036"/>
        <source>Display only used Colors</source>
        <translation>Display only used Colours</translation>
    </message>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="1044"/>
        <source>Display all colors from the document color list, or only the already used colors</source>
        <translation>Display all colours from the document colour list, or only the already used colours</translation>
    </message>
</context>
<context>
    <name>CreateRange</name>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="13"/>
        <source>Create Range</source>
        <translation>Create Range</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="54"/>
        <source>Number of Pages in Document:</source>
        <translation>Number of Pages in Document:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="64"/>
        <source>Doc Page Range</source>
        <translation>Doc Page Range</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="112"/>
        <source>Basic Range Selection</source>
        <translation>Basic Range Selection</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="136"/>
        <source>Range of Pages</source>
        <translation>Range of Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="160"/>
        <source>De&amp;lete</source>
        <translation>De&amp;lete</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="163"/>
        <source>Alt+L</source>
        <translation>Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="186"/>
        <source>Move &amp;Down</source>
        <translation>Move &amp;Down</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="189"/>
        <source>Alt+D</source>
        <translation>Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="196"/>
        <source>Move &amp;Up</source>
        <translation>Move &amp;Up</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="199"/>
        <source>Alt+U</source>
        <translation>Alt+U</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="218"/>
        <source>Add a Range of Pages</source>
        <translation>Add a Range of Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="242"/>
        <source>Consecutive Pages</source>
        <translation>Consecutive Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="252"/>
        <source>Even Pages</source>
        <translation>Even Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="259"/>
        <source>From:</source>
        <translation>From:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="291"/>
        <source>To:</source>
        <translation>To:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="334"/>
        <source>&amp;Add To Range</source>
        <translation>&amp;Add To Range</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="337"/>
        <source>Alt+A</source>
        <translation>Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="362"/>
        <source>Odd Pages</source>
        <translation>Odd Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="372"/>
        <source>Comma Separated List</source>
        <translation>Comma Separated List</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="383"/>
        <source>Advanced Reordering</source>
        <translation>Advanced Reordering</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="439"/>
        <source>Page Order</source>
        <translation>Page Order</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="449"/>
        <source>Sample Page Order:</source>
        <translation>Sample Page Order:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="478"/>
        <source>Page Group Size:</source>
        <translation>Page Group Size:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="525"/>
        <source>&amp;OK</source>
        <translation>&amp;OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="528"/>
        <source>Alt+O</source>
        <translation>Alt+O</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="535"/>
        <source>&amp;Cancel</source>
        <translation>&amp;Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/createrange.ui" line="538"/>
        <source>Alt+C</source>
        <translation>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>
        <location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="59"/>
        <source>None</source>
        <comment>delimiter</comment>
        <translation>None</translation>
    </message>
</context>
<context>
    <name>CupsOptions</name>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="52"/>
        <source>Printer Options</source>
        <translation>Printer Options</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="63"/>
        <source>Option</source>
        <translation>Option</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="64"/>
        <source>Value</source>
        <translation>Value</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="133"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="143"/>
        <source>Page Set</source>
        <translation>Page Set</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="140"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="147"/>
        <source>All Pages</source>
        <translation>All Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="141"/>
        <source>Even Pages only</source>
        <translation>Even Pages only</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="142"/>
        <source>Odd Pages only</source>
        <translation>Odd Pages only</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="150"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="160"/>
        <source>Mirror</source>
        <translation>Mirror</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="167"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="177"/>
        <source>Orientation</source>
        <translation>Orientation</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="174"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="181"/>
        <source>Portrait</source>
        <translation>Portrait</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="175"/>
        <source>Landscape</source>
        <translation>Landscape</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="184"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="197"/>
        <source>N-Up Printing</source>
        <translation>N-Up Printing</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="191"/>
        <location filename="../../../scribus/cupsoptions.cpp" line="201"/>
        <source>Page per Sheet</source>
        <translation>Page per Sheet</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="192"/>
        <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"/>
        <source>Pages per Sheet</source>
        <translation>Pages per Sheet</translation>
    </message>
    <message>
        <location filename="../../../scribus/cupsoptions.cpp" line="224"/>
        <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>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 *</translation>
    </message>
</context>
<context>
    <name>CurveWidget</name>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="415"/>
        <source>Open</source>
        <translation>Open</translation>
    </message>
    <message>
        <source>Curve Files (*.scu);;All Files (*)</source>
        <translation type="obsolete">Curve Files (*.scu);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="415"/>
        <source>Curve Files (*.scu *.SCU);;All Files (*)</source>
        <translation>Curve Files (*.scu *.SCU);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="453"/>
        <source>Save as</source>
        <translation>Save as</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="453"/>
        <source>Curve Files (*.scu *.scu);;All Files (*)</source>
        <translation>Curve Files (*.scu *.scu);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="487"/>
        <source>Cannot write the file: 
%1</source>
        <translation>Cannot write the file: 
%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="513"/>
        <source>Inverts the curve</source>
        <translation>Inverts the curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="514"/>
        <source>Resets the curve</source>
        <translation>Resets the curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="515"/>
        <source>Switches between linear and cubic interpolation of the curve</source>
        <translation>Switches between linear and cubic interpolation of the curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="516"/>
        <source>Loads a curve</source>
        <translation>Loads a curve</translation>
    </message>
    <message>
        <location filename="../../../scribus/curvewidget.cpp" line="517"/>
        <source>Saves this curve</source>
        <translation>Saves this curve</translation>
    </message>
</context>
<context>
    <name>CustomFDialog</name>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="355"/>
        <source>Encoding:</source>
        <translation>Encoding:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="297"/>
        <location filename="../../../scribus/customfdialog.cpp" line="327"/>
        <source>&amp;Compress File</source>
        <translation>&amp;Compress File</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="306"/>
        <source>&amp;Include Fonts</source>
        <translation>&amp;Include Fonts</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="274"/>
        <source>Show Preview</source>
        <translation>Show Preview</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="308"/>
        <source>&amp;Include Color Profiles</source>
        <translation>&amp;Include Colour Profiles</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="275"/>
        <source>Show a preview and information for the selected file</source>
        <translation>Show a preview and information for the selected file</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="342"/>
        <source>Compress the Scribus document on save</source>
        <translation>Compress the Scribus document on save</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="344"/>
        <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>Include fonts when collecting files for the document. Be sure to know and understand licensing information for any fonts you collect and possibly redistribute.</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="346"/>
        <source>Include color profiles when collecting files for the document</source>
        <translation>Include colour profiles when collecting files for the document</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">Importing: %1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="82"/>
        <source>Analyzing File:</source>
        <translation type="unfinished">Analysing File:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="210"/>
        <source>Group%1</source>
        <translation type="unfinished">Group%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="337"/>
        <source>Generating Items</source>
        <translation type="unfinished">Generating Items</translation>
    </message>
</context>
<context>
    <name>DashEditor</name>
    <message>
        <location filename="../../../scribus/dasheditor.cpp" line="363"/>
        <source>Value:</source>
        <translation>Value:</translation>
    </message>
    <message>
        <location filename="../../../scribus/dasheditor.cpp" line="364"/>
        <source>Offset:</source>
        <translation>Offset:</translation>
    </message>
</context>
<context>
    <name>DeferredTask</name>
    <message>
        <location filename="../../../scribus/deferredtask.cpp" line="82"/>
        <source>Cancelled by user</source>
        <translation>Cancelled by user</translation>
    </message>
</context>
<context>
    <name>DelColor</name>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="28"/>
        <source>Delete Color</source>
        <translation>Delete Colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="36"/>
        <source>Delete Color:</source>
        <translation>Delete Colour:</translation>
    </message>
    <message>
        <location filename="../../../scribus/dcolor.cpp" line="45"/>
        <source>Replace With:</source>
        <translation>Replace With:</translation>
    </message>
</context>
<context>
    <name>DelPages</name>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="17"/>
        <source>Delete Pages</source>
        <translation>Delete Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="34"/>
        <source>to:</source>
        <translation>to:</translation>
    </message>
    <message>
        <location filename="../../../scribus/delpages.cpp" line="26"/>
        <source>Delete From:</source>
        <translation>Delete From:</translation>
    </message>
</context>
<context>
    <name>DocIm</name>
    <message>
        <location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="160"/>
        <source>Importing failed</source>
        <translation>Importing failed</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="161"/>
        <source>Importing Word document failed 
%1</source>
        <translation>Importing Word document failed 
%1</translation>
    </message>
</context>
<context>
    <name>DocInfos</name>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="30"/>
        <source>Document Information</source>
        <translation>Document Information</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="39"/>
        <source>&amp;Title:</source>
        <translation>&amp;Title:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="46"/>
        <source>&amp;Author:</source>
        <translation>&amp;Author:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="53"/>
        <source>&amp;Keywords:</source>
        <translation>&amp;Keywords:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="61"/>
        <source>Descri&amp;ption:</source>
        <translation>Descri&amp;ption:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="74"/>
        <source>P&amp;ublisher:</source>
        <translation>P&amp;ublisher:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="81"/>
        <source>&amp;Contributors:</source>
        <translation>&amp;Contributors:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="89"/>
        <source>Dat&amp;e:</source>
        <translation>Dat&amp;e:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="96"/>
        <source>T&amp;ype:</source>
        <translation>T&amp;ype:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="103"/>
        <source>F&amp;ormat:</source>
        <translation>F&amp;ormat:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="110"/>
        <source>Identi&amp;fier:</source>
        <translation>Identi&amp;fier:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="117"/>
        <source>&amp;Source:</source>
        <translation>&amp;Source:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="124"/>
        <source>&amp;Language:</source>
        <translation>&amp;Language:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="131"/>
        <source>&amp;Relation:</source>
        <translation>&amp;Relation:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="138"/>
        <source>Co&amp;verage:</source>
        <translation>Co&amp;verage:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="145"/>
        <source>Ri&amp;ghts:</source>
        <translation>Ri&amp;ghts:</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="153"/>
        <source>Further &amp;Information</source>
        <translation>Further &amp;Information</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="163"/>
        <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="164"/>
        <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="165"/>
        <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="166"/>
        <source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
        <translation>The nature or genre of the content of the document, eg. categories, functions, genres, etc</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="168"/>
        <source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
        <translation>An unambiguous reference to the document within a given context such as ISBN or URI</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="169"/>
        <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="171"/>
        <source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
        <translation>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="172"/>
        <source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
        <translation>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="173"/>
        <source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
        <translation>Information about rights held in and over the document, eg. copyright, patent or trademark</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="152"/>
        <source>Documen&amp;t</source>
        <translation>Documen&amp;t</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="159"/>
        <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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="160"/>
        <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="161"/>
        <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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="162"/>
        <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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="167"/>
        <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>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</translation>
    </message>
    <message>
        <location filename="../../../scribus/docinfo.cpp" line="170"/>
        <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>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</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>Add a page numbering section to the document. The new section will be added after the currently selected section.</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="73"/>
        <source>Delete the currently selected section.</source>
        <translation>Delete the currently selected section.</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>
        <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>&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.</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.cpp" line="201"/>
        <source>Page Number Out Of Bounds</source>
        <translation>Page Number Out Of Bounds</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>The value you have entered is outside the range of page numbers in the current document (%1-%2).</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="13"/>
        <source>Document Sections</source>
        <translation>Document Sections</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="83"/>
        <source>&amp;Add</source>
        <translation>&amp;Add</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="86"/>
        <source>Alt+A</source>
        <translation>Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="93"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="96"/>
        <source>Alt+D</source>
        <translation>Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="32"/>
        <source>Name</source>
        <translation>Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="37"/>
        <source>Shown</source>
        <translation>Shown</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="42"/>
        <source>From</source>
        <translation>From</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="47"/>
        <source>To</source>
        <translation>To</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="52"/>
        <source>Style</source>
        <translation>Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/docsections.ui" line="57"/>
        <source>Start</source>
        <translation>Start</translation>
    </message>
</context>
<context>
    <name>DocumentItemAttributes</name>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Relates To</source>
        <translation>Relates To</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Is Parent Of</source>
        <translation>Is Parent Of</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>Is Child Of</source>
        <translation>Is Child Of</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>Text Frames</source>
        <translation>Text Frames</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>Image Frames</source>
        <translation>Image Frames</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Boolean</source>
        <translation>Boolean</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Integer</source>
        <translation>Integer</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>String</source>
        <translation>String</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>Real Number</source>
        <translation>Real Number</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="17"/>
        <source>None</source>
        <comment>relationship</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="19"/>
        <source>None</source>
        <comment>auto add</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.cpp" line="21"/>
        <source>None</source>
        <comment>types</comment>
        <translation>None</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="13"/>
        <source>Document Item Attributes</source>
        <translation>Document Item Attributes</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="82"/>
        <source>&amp;Add</source>
        <translation>&amp;Add</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="85"/>
        <source>Alt+A</source>
        <translation>Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="92"/>
        <source>&amp;Copy</source>
        <translation>&amp;Copy</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="95"/>
        <source>Alt+C</source>
        <translation>Alt+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="102"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="105"/>
        <source>Alt+D</source>
        <translation>Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="112"/>
        <source>C&amp;lear</source>
        <translation>C&amp;lear</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="115"/>
        <source>Alt+L</source>
        <translation>Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="26"/>
        <source>Name</source>
        <translation>Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="31"/>
        <source>Type</source>
        <translation>Type</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="36"/>
        <source>Value</source>
        <translation>Value</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="41"/>
        <source>Parameter</source>
        <translation>Parameter</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="46"/>
        <source>Relationship</source>
        <translation>Relationship</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="51"/>
        <source>Relationship To</source>
        <translation>Relationship To</translation>
    </message>
    <message>
        <location filename="../../../scribus/docitemattrprefs.ui" line="56"/>
        <source>Auto Add To</source>
        <translation>Auto Add To</translation>
    </message>
</context>
<context>
    <name>EPSPlug</name>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="480"/>
        <source>Importing File:
%1
failed!</source>
        <translation>Importing File:
%1
failed!</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="481"/>
        <source>Fatal Error</source>
        <translation>Fatal Error</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="879"/>
        <source>Error</source>
        <translation>Error</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="486"/>
        <source>Generating Items</source>
        <translation>Generating Items</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="85"/>
        <source>Analyzing PostScript:</source>
        <translation>Analysing PostScript:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="878"/>
        <source>Converting of %1 images failed!</source>
        <translation>Converting of %1 images failed!</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="282"/>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="709"/>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="745"/>
        <source>Group%1</source>
        <translation>Group%1</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ps/importps.cpp" line="82"/>
        <source>Importing: %1</source>
        <translation>Importing: %1</translation>
    </message>
</context>
<context>
    <name>EditToolBar</name>
    <message>
        <location filename="../../../scribus/ui/edittoolbar.cpp" line="29"/>
        <source>Edit</source>
        <translation>Edit</translation>
    </message>
</context>
<context>
    <name>Editor</name>
    <message>
        <location filename="../../../scribus/editor.cpp" line="30"/>
        <source>Editor</source>
        <translation>Editor</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="36"/>
        <source>&amp;New</source>
        <translation>&amp;New</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="39"/>
        <source>&amp;Open...</source>
        <translation>&amp;Open...</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="41"/>
        <source>Save &amp;As...</source>
        <translation>Save &amp;As...</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="43"/>
        <source>&amp;Save and Exit</source>
        <translation>&amp;Save and Exit</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="45"/>
        <source>&amp;Exit without Saving</source>
        <translation>&amp;Exit without Saving</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="47"/>
        <source>&amp;Undo</source>
        <translation>&amp;Undo</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="50"/>
        <source>&amp;Redo</source>
        <translation>&amp;Redo</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="52"/>
        <source>Cu&amp;t</source>
        <translation>Cu&amp;t</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="55"/>
        <source>&amp;Copy</source>
        <translation>&amp;Copy</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="58"/>
        <source>&amp;Paste</source>
        <translation>&amp;Paste</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="61"/>
        <source>C&amp;lear</source>
        <translation>C&amp;lear</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="63"/>
        <source>&amp;Get Field Names</source>
        <translation>&amp;Get Field Names</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="65"/>
        <source>&amp;File</source>
        <translation>&amp;File</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="72"/>
        <source>&amp;Edit</source>
        <translation>&amp;Edit</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="111"/>
        <location filename="../../../scribus/editor.cpp" line="127"/>
        <source>JavaScripts (*.js);;All Files (*)</source>
        <translation>JavaScripts (*.js);;All Files (*)</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="37"/>
        <source>Ctrl+N</source>
        <translation>Ctrl+N</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="48"/>
        <source>Ctrl+Z</source>
        <translation>Ctrl+Z</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="53"/>
        <source>Ctrl+X</source>
        <translation>Ctrl+X</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="56"/>
        <source>Ctrl+C</source>
        <translation>Ctrl+C</translation>
    </message>
    <message>
        <location filename="../../../scribus/editor.cpp" line="59"/>
        <source>Ctrl-V</source>
        <translation>Ctrl-V</translation>
    </message>
</context>
<context>
    <name>EffectsDialog</name>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="45"/>
        <source>Image Effects</source>
        <translation>Image Effects</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="82"/>
        <source>Options:</source>
        <translation>Options:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="99"/>
        <source>Color:</source>
        <translation>Colour:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="110"/>
        <source>Shade:</source>
        <translation>Shade:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="126"/>
        <source>Brightness:</source>
        <translation>Brightness:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="148"/>
        <source>Contrast:</source>
        <translation>Contrast:</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>Value:</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>Available Effects</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>Blur</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>Brightness</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>Colourise</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>Contrast</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>Greyscale</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>Sharpen</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>Effects in use</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="617"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="621"/>
        <source>Cancel</source>
        <translation>Cancel</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>Colour 1:</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>Colour 2:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="326"/>
        <location filename="../../../scribus/effectsdialog.cpp" line="392"/>
        <source>Color 3:</source>
        <translation>Colour 3:</translation>
    </message>
    <message>
        <location filename="../../../scribus/effectsdialog.cpp" line="412"/>
        <source>Color 4:</source>
        <translation>Colour 4:</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>Duotone</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>Tritone</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>Quadtone</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>Curves</translation>
    </message>
</context>
<context>
    <name>ExportBitmap</name>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="204"/>
        <source>File exists. Overwrite?</source>
        <translation>File exists. Overwrite?</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="205"/>
        <source>exists already. Overwrite?</source>
        <translation>exists already. Overwrite?</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="191"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="218"/>
        <source>Save as Image</source>
        <translation>Save as Image</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="191"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="192"/>
        <source>Insufficient memory for this image size.</source>
        <translation>Insufficient memory for this image size.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="218"/>
        <location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="219"/>
        <source>Error writing the output file(s).</source>
        <translation>Error writing the output file(s).</translation>
    </message>
</context>
<context>
    <name>ExportForm</name>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="224"/>
        <source>&amp;All pages</source>
        <translation>&amp;All pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="127"/>
        <source>Change the output directory</source>
        <translation>Change the output directory</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>The output directory - the place to store your images.
Name of the export file will be &apos;documentname-pagenumber.filetype&apos;</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="120"/>
        <source>Export only the current page</source>
        <translation>Export only the current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="125"/>
        <source>Available export formats</source>
        <translation>Available export formats</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="80"/>
        <source>Choose a Export Directory</source>
        <translation>Choose a Export Directory</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="166"/>
        <source>C&amp;hange...</source>
        <translation>C&amp;hange...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="153"/>
        <source>&amp;Export to Directory:</source>
        <translation>&amp;Export to Directory:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="54"/>
        <source>Image &amp;Type:</source>
        <translation>Image &amp;Type:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="64"/>
        <source>&amp;Quality:</source>
        <translation>&amp;Quality:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="13"/>
        <source>Export as Image(s)</source>
        <translation>Export as Image(s)</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="25"/>
        <source>Options</source>
        <translation>Options</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="74"/>
        <source>&amp;Resolution:</source>
        <translation>&amp;Resolution:</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>Range</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="197"/>
        <source>&amp;Current page</source>
        <translation>&amp;Current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="217"/>
        <source>&amp;Range</source>
        <translation>&amp;Range</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="117"/>
        <source>Export a range of pages</source>
        <translation>Export a range of pages</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>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.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="119"/>
        <source>Export all pages</source>
        <translation>Export all pages</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>Resolution of the Images
Use 72 dpi for Images intended for the Screen</translation>
    </message>
    <message>
        <source>The quality of your images - 100% is the best, 1% the lowest quality</source>
        <translation type="obsolete">The quality of your images - 100% is the best, 1% the lowest quality</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="84"/>
        <source>&amp;Size:</source>
        <translation>&amp;Size:</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>Size of the images. 100% for no changes, 200% for two times larger etc.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="44"/>
        <source>Image size in Pixels</source>
        <translation>Image size in Pixels</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="37"/>
        <source>TextLabel</source>
        <translation>TextLabel</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>The compression ratio of your images - 100% is no compression, 0% highest compression. If in doubt, use &apos;Automatic&apos;</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="124"/>
        <source>Automatic</source>
        <translation>Automatic</translation>
    </message>
</context>
<context>
    <name>ExtImageProps</name>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="39"/>
        <source>Extended Image Properties</source>
        <translation>Extended Image Properties</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="50"/>
        <location filename="../../../scribus/extimageprops.cpp" line="68"/>
        <location filename="../../../scribus/extimageprops.cpp" line="102"/>
        <source>Normal</source>
        <translation>Normal</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="51"/>
        <location filename="../../../scribus/extimageprops.cpp" line="69"/>
        <location filename="../../../scribus/extimageprops.cpp" line="103"/>
        <source>Darken</source>
        <translation>Darken</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="52"/>
        <location filename="../../../scribus/extimageprops.cpp" line="70"/>
        <location filename="../../../scribus/extimageprops.cpp" line="104"/>
        <source>Lighten</source>
        <translation>Lighten</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="53"/>
        <location filename="../../../scribus/extimageprops.cpp" line="71"/>
        <location filename="../../../scribus/extimageprops.cpp" line="105"/>
        <source>Hue</source>
        <translation>Hue</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="54"/>
        <location filename="../../../scribus/extimageprops.cpp" line="72"/>
        <location filename="../../../scribus/extimageprops.cpp" line="106"/>
        <source>Saturation</source>
        <translation>Saturation</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="55"/>
        <location filename="../../../scribus/extimageprops.cpp" line="73"/>
        <location filename="../../../scribus/extimageprops.cpp" line="107"/>
        <source>Color</source>
        <translation>Colour</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="56"/>
        <location filename="../../../scribus/extimageprops.cpp" line="74"/>
        <location filename="../../../scribus/extimageprops.cpp" line="108"/>
        <source>Luminosity</source>
        <translation>Luminosity</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="57"/>
        <location filename="../../../scribus/extimageprops.cpp" line="75"/>
        <location filename="../../../scribus/extimageprops.cpp" line="109"/>
        <source>Multiply</source>
        <translation>Multiply</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>Screen</source>
        <translation>Screen</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>Dissolve</source>
        <translation>Dissolve</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>Overlay</source>
        <translation>Overlay</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>Hard Light</source>
        <translation>Hard Light</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>Soft Light</source>
        <translation>Soft Light</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>Difference</source>
        <translation>Difference</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>Color Dodge</source>
        <translation>Colour Dodge</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>Color Burn</source>
        <translation>Colour Burn</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="98"/>
        <source>Blend Mode:</source>
        <translation>Blend Mode:</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="121"/>
        <source>Opacity:</source>
        <translation>Opacity:</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="127"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="133"/>
        <source>Name</source>
        <translation>Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="214"/>
        <source>Layers</source>
        <translation>Layers</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="267"/>
        <source>Don&apos;t use any Path</source>
        <translation>Don&apos;t use any Path</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="269"/>
        <source>Paths</source>
        <translation>Paths</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>Exclusion</source>
        <translation>Exclusion</translation>
    </message>
    <message>
        <location filename="../../../scribus/extimageprops.cpp" line="276"/>
        <source>Live Preview</source>
        <translation>Live Preview</translation>
    </message>
</context>
<context>
    <name>FDialogPreview</name>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="198"/>
        <source>Size:</source>
        <translation>Size:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="216"/>
        <source>Title:</source>
        <translation>Title:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="219"/>
        <source>No Title</source>
        <translation>No Title</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="221"/>
        <source>Author:</source>
        <translation>Author:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="202"/>
        <location filename="../../../scribus/customfdialog.cpp" line="224"/>
        <location filename="../../../scribus/customfdialog.cpp" line="229"/>
        <source>Unknown</source>
        <translation>Unknown</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="231"/>
        <source>Scribus Document</source>
        <translation>Scribus Document</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="199"/>
        <source>Resolution:</source>
        <translation>Resolution:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="199"/>
        <source>DPI</source>
        <translation>DPI</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="205"/>
        <source>Colorspace:</source>
        <translation>Colourspace:</translation>
    </message>
    <message>
        <location filename="../../../scribus/customfdialog.cpp" line="226"/>
        <source>File Format:</source>
        <translation>File Format:</translation>
    </message>
</context>
<context>
    <name>FileLoader</name>
    <message>
        <location filename="../../../scribus/fileloader.cpp" line="594"/>
        <source>Some fonts used by this document have been substituted:</source>
        <translation>Some fonts used by this document have been substituted:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fileloader.cpp" line="598"/>
        <source> was replaced by: </source>
        <translation> was replaced by: </translation>
    </message>
</context>
<context>
    <name>FileToolBar</name>
    <message>
        <location filename="../../../scribus/ui/filetoolbar.cpp" line="31"/>
        <source>File</source>
        <translation>File</translation>
    </message>
</context>
<context>
    <name>FontComboH</name>
    <message>
        <source>Face:</source>
        <translation type="obsolete">Face:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="148"/>
        <source>Family:</source>
        <translation>Family:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="149"/>
        <source>Style:</source>
        <translation>Style:</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="151"/>
        <source>Font Family of Selected Text or Text Frame</source>
        <translation>Font Family of Selected Text or Text Frame</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontcombo.cpp" line="152"/>
        <source>Font Style of Selected Text or Text Frame</source>
        <translation>Font Style of Selected Text or Text Frame</translation>
    </message>
</context>
<context>
    <name>FontListModel</name>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="63"/>
        <source>Font Name</source>
        <translation>Font Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="65"/>
        <source>Use Font</source>
        <translation>Use Font</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="67"/>
        <source>Family</source>
        <translation>Family</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="69"/>
        <source>Style</source>
        <translation>Style</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="71"/>
        <source>Variant</source>
        <translation>Variant</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="73"/>
        <source>Type</source>
        <translation>Type</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="75"/>
        <source>Format</source>
        <translation>Format</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="77"/>
        <source>Embed in PostScript</source>
        <translation>Embed in PostScript</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="79"/>
        <source>Subset</source>
        <translation>Subset</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="81"/>
        <source>Access</source>
        <translation>Access</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="83"/>
        <source>Used in Doc</source>
        <translation>Used in Doc</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="85"/>
        <source>Path to Font File</source>
        <translation>Path to Font File</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="144"/>
        <source>Unknown</source>
        <comment>font type</comment>
        <translation>Unknown</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="157"/>
        <source>Unknown</source>
        <comment>font format</comment>
        <translation>Unknown</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="164"/>
        <source>User</source>
        <comment>font preview</comment>
        <translation>User</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="165"/>
        <source>System</source>
        <comment>font preview</comment>
        <translation>System</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontlistmodel.cpp" line="190"/>
        <source>Click to change the value</source>
        <translation>Click to change the value</translation>
    </message>
</context>
<context>
    <name>FontPrefs</name>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Available Fonts</source>
        <translation>Available Fonts</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Font Substitutions</source>
        <translation>Font Substitutions</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="48"/>
        <source>Additional Paths</source>
        <translation>Additional Paths</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="66"/>
        <source>Font Name</source>
        <translation>Font Name</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="67"/>
        <source>Replacement</source>
        <translation>Replacement</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="222"/>
        <location filename="../../../scribus/fontprefs.cpp" line="247"/>
        <source>Choose a Directory</source>
        <translation>Choose a Directory</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="58"/>
        <source>&amp;Available Fonts</source>
        <translation>&amp;Available Fonts</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="88"/>
        <source>Font &amp;Substitutions</source>
        <translation>Font &amp;Substitutions</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="135"/>
        <source>Additional &amp;Paths</source>
        <translation>Additional &amp;Paths</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="82"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="107"/>
        <source>C&amp;hange...</source>
        <translation>C&amp;hange...</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="109"/>
        <source>A&amp;dd...</source>
        <translation>A&amp;dd...</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontprefs.cpp" line="111"/>
        <source>&amp;Remove</source>
        <translation>&amp;Remove</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>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.</translation>
    </message>
    <message>
        <source>Use Font</source>
        <translation type="obsolete">Use Font</translation>
    </message>
    <message>
        <source>Embed in PostScript</source>
        <translation type="obsolete">Embed in PostScript</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>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="111"/>
        <source>Leave preview</source>
        <comment>font preview</comment>
        <translation>Leave preview</translation>
    </message>
    <message>
        <source>Start searching</source>
        <translation type="obsolete">Start searching</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="113"/>
        <source>Size of the selected font</source>
        <translation>Size of the selected font</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>Woven silk pyjamas exchanged for blue quartz</translation>
    </message>
    <message>
        <source>User</source>
        <comment>font preview</comment>
        <translation type="obsolete">User</translation>
    </message>
    <message>
        <source>System</source>
        <comment>font preview</comment>
        <translation type="obsolete">System</translation>
    </message>
    <message>
        <source>Typing the text here provides quick searching in the font names. Searching is case insensitive. You can provide a common wild cards (*, ?, [...]) in your phrase. Examples: t* will list all fonts starting with t or T. *bold* will list all fonts with word bold, bolder etc. in the name.</source>
        <translation type="obsolete">Typing the text here provides quick searching in the font names. Searching is case insensitive. You can provide a common wild cards (*, ?, [...]) in your phrase. Examples: t* will list all fonts starting with t or T. *bold* will list all fonts with word bold, bolder etc. in the name.</translation>
    </message>
    <message>
        <source>Font Name</source>
        <translation type="obsolete">Font Name</translation>
    </message>
    <message>
        <source>Doc</source>
        <translation type="obsolete">Doc</translation>
    </message>
    <message>
        <source>Type</source>
        <translation type="obsolete">Type</translation>
    </message>
    <message>
        <source>Subset</source>
        <translation type="obsolete">Subset</translation>
    </message>
    <message>
        <source>Access</source>
        <translation type="obsolete">Access</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="13"/>
        <source>Fonts Preview</source>
        <translation>Fonts Preview</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="19"/>
        <source>&amp;Quick Search:</source>
        <translation>&amp;Quick Search:</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Search</translation>
    </message>
    <message>
        <source>Alt+S</source>
        <translation type="obsolete">Alt+S</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="80"/>
        <source>&amp;Font Size:</source>
        <translation>&amp;Font Size:</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="103"/>
        <source>Text</source>
        <translation>Text</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="113"/>
        <source>Sample text to display</source>
        <translation>Sample text to display</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="123"/>
        <source>Se&amp;t</source>
        <translation>Se&amp;t</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="126"/>
        <source>Alt+T</source>
        <translation>Alt+T</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="133"/>
        <source>Reset the text</source>
        <translation>Reset the text</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="167"/>
        <source>&amp;Close</source>
        <translation>&amp;Close</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="170"/>
        <source>Alt+C</source>
        <translation>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>Typing the text here provides quick searching in the font names. Searching is case insensitive. The given text is taken as substring.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="136"/>
        <source>&amp;Default</source>
        <translation>&amp;Default</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="35"/>
        <source>Show Extended Font Information</source>
        <translation>Show Extended Font Information</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="120"/>
        <source>Set the preview text</source>
        <translation>Set the preview text</translation>
    </message>
</context>
<context>
    <name>FontPreviewPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="49"/>
        <source>&amp;Font Preview...</source>
        <translation>&amp;Font Preview...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="66"/>
        <source>Font Preview dialog</source>
        <translation>Font Preview dialog</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="67"/>
        <source>Sorting, searching and browsing available fonts.</source>
        <translation>Sorting, searching and browsing available fonts.</translation>
    </message>
</context>
<context>
    <name>FontReplaceDialog</name>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="30"/>
        <source>Font Substitution</source>
        <translation>Font Substitution</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="45"/>
        <source>Original Font</source>
        <translation>Original Font</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="46"/>
        <source>Substitution Font</source>
        <translation>Substitution Font</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="72"/>
        <source>Make these substitutions permanent</source>
        <translation>Make these substitutions permanent</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>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.</translation>
    </message>
    <message>
        <location filename="../../../scribus/fontreplacedialog.cpp" line="83"/>
        <source>Cancels these font substitutions and stops loading the document.</source>
        <translation>Cancels these font substitutions and stops loading the document.</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 Edit &gt; Preferences &gt; Fonts.</source>
        <translation>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.</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>If you select OK, then save, these substitutions are made permanent in the document.</translation>
    </message>
</context>
<context>
    <name>GradientEditor</name>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="327"/>
        <source>Position:</source>
        <translation>Position:</translation>
    </message>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="328"/>
        <source> %</source>
        <translation> %</translation>
    </message>
    <message>
        <location filename="../../../scribus/gradienteditor.cpp" line="336"/>
        <source>Add, change or remove color stops here</source>
        <translation>Add, change or remove colour stops here</translation>
    </message>
</context>
<context>
    <name>GradientVectorDialog</name>
    <message>
        <location filename="../../../scribus/cpalette.cpp" line="100"/>
        <source>Gradient Vector</source>
        <translation>Gradient Vector</translation>
    </message>
</context>
<context>
    <name>GuideManager</name>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="224"/>
        <location filename="../../../scribus/guidemanager.ui" line="31"/>
        <source>&amp;Single</source>
        <translation>&amp;Single</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="227"/>
        <location filename="../../../scribus/guidemanager.cpp" line="235"/>
        <location filename="../../../scribus/guidemanager.ui" line="39"/>
        <location filename="../../../scribus/guidemanager.ui" line="146"/>
        <source>Horizontals</source>
        <translation>Horizontals</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="229"/>
        <location filename="../../../scribus/guidemanager.ui" line="55"/>
        <source>&amp;Add</source>
        <translation>&amp;Add</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="58"/>
        <location filename="../../../scribus/guidemanager.ui" line="210"/>
        <location filename="../../../scribus/guidemanager.ui" line="297"/>
        <location filename="../../../scribus/guidemanager.ui" line="356"/>
        <source>Alt+A</source>
        <translation>Alt+A</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="230"/>
        <location filename="../../../scribus/guidemanager.ui" line="65"/>
        <source>D&amp;elete</source>
        <translation>D&amp;elete</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="68"/>
        <location filename="../../../scribus/guidemanager.ui" line="220"/>
        <location filename="../../../scribus/guidemanager.ui" line="307"/>
        <source>Alt+E</source>
        <translation>Alt+E</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="228"/>
        <location filename="../../../scribus/guidemanager.cpp" line="236"/>
        <location filename="../../../scribus/guidemanager.ui" line="78"/>
        <location filename="../../../scribus/guidemanager.ui" line="233"/>
        <source>Verticals</source>
        <translation>Verticals</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="231"/>
        <location filename="../../../scribus/guidemanager.ui" line="94"/>
        <source>A&amp;dd</source>
        <translation>A&amp;dd</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="97"/>
        <source>Alt+D</source>
        <translation>Alt+D</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="232"/>
        <location filename="../../../scribus/guidemanager.ui" line="104"/>
        <source>De&amp;lete</source>
        <translation>De&amp;lete</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="107"/>
        <location filename="../../../scribus/guidemanager.ui" line="122"/>
        <source>Alt+L</source>
        <translation>Alt+L</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="233"/>
        <location filename="../../../scribus/guidemanager.ui" line="119"/>
        <source>&amp;Lock Guides</source>
        <translation>&amp;Lock Guides</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="234"/>
        <location filename="../../../scribus/guidemanager.cpp" line="249"/>
        <location filename="../../../scribus/guidemanager.ui" line="129"/>
        <location filename="../../../scribus/guidemanager.ui" line="320"/>
        <source>Appl&amp;y to All Pages</source>
        <translation>Appl&amp;y to All Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="132"/>
        <location filename="../../../scribus/guidemanager.ui" line="323"/>
        <source>Alt+Y</source>
        <translation>Alt+Y</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="225"/>
        <location filename="../../../scribus/guidemanager.ui" line="140"/>
        <source>&amp;Column/Row</source>
        <translation>&amp;Column/Row</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="237"/>
        <location filename="../../../scribus/guidemanager.ui" line="152"/>
        <source>&amp;Number:</source>
        <translation>&amp;Number:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="239"/>
        <location filename="../../../scribus/guidemanager.ui" line="175"/>
        <source>U&amp;se Gap:</source>
        <translation>U&amp;se Gap:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="178"/>
        <source>Alt+S</source>
        <translation>Alt+S</translation>
    </message>
    <message>
        <source>Refer To</source>
        <translation type="obsolete">Refer To</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="243"/>
        <location filename="../../../scribus/guidemanager.cpp" line="246"/>
        <location filename="../../../scribus/guidemanager.ui" line="194"/>
        <location filename="../../../scribus/guidemanager.ui" line="281"/>
        <source>&amp;Page</source>
        <translation>&amp;Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="197"/>
        <location filename="../../../scribus/guidemanager.ui" line="284"/>
        <location filename="../../../scribus/guidemanager.ui" line="343"/>
        <source>Alt+P</source>
        <translation>Alt+P</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="244"/>
        <location filename="../../../scribus/guidemanager.cpp" line="247"/>
        <location filename="../../../scribus/guidemanager.ui" line="207"/>
        <location filename="../../../scribus/guidemanager.ui" line="294"/>
        <source>M&amp;argins</source>
        <translation>M&amp;argins</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="245"/>
        <location filename="../../../scribus/guidemanager.cpp" line="248"/>
        <location filename="../../../scribus/guidemanager.ui" line="217"/>
        <location filename="../../../scribus/guidemanager.ui" line="304"/>
        <source>S&amp;election</source>
        <translation>S&amp;election</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="238"/>
        <location filename="../../../scribus/guidemanager.ui" line="239"/>
        <source>Nu&amp;mber:</source>
        <translation>Nu&amp;mber:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="240"/>
        <location filename="../../../scribus/guidemanager.ui" line="262"/>
        <source>Use &amp;Gap:</source>
        <translation>Use &amp;Gap:</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="265"/>
        <source>Alt+G</source>
        <translation>Alt+G</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="226"/>
        <location filename="../../../scribus/guidemanager.ui" line="331"/>
        <source>&amp;Misc</source>
        <translation>&amp;Misc</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="337"/>
        <source>Delete all guides from the current page</source>
        <translation>Delete all guides from the current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="250"/>
        <location filename="../../../scribus/guidemanager.ui" line="340"/>
        <source>Delete Guides from Current &amp;Page</source>
        <translation>Delete Guides from Current &amp;Page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.ui" line="350"/>
        <source>Delete all guides from the current document</source>
        <translation>Delete all guides from the current document</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="251"/>
        <location filename="../../../scribus/guidemanager.ui" line="353"/>
        <source>Delete Guides from &amp;All Pages</source>
        <translation>Delete Guides from &amp;All Pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="223"/>
        <location filename="../../../scribus/guidemanager.ui" line="15"/>
        <source>Guide Manager</source>
        <translation>Guide Manager</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="253"/>
        <source>Add a new horizontal guide</source>
        <translation>Add a new horizontal guide</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="254"/>
        <source>Delete the selected horizontal guide</source>
        <translation>Delete the selected horizontal guide</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="255"/>
        <source>Add a new vertical guide</source>
        <translation>Add a new vertical guide</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="256"/>
        <source>Delete the selected vertical guide</source>
        <translation>Delete the selected vertical guide</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="257"/>
        <source>Lock the guides</source>
        <translation>Lock the guides</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="258"/>
        <source>Apply to all pages</source>
        <translation>Apply to all pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="259"/>
        <source>Number of horizontal guides to create</source>
        <translation>Number of horizontal guides to create</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="260"/>
        <source>Number of vertical guides to create</source>
        <translation>Number of vertical guides to create</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="261"/>
        <source>Create rows with guides, with an additional gap between the rows</source>
        <translation>Create rows with guides, with an additional gap between the rows</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="262"/>
        <source>Create columns with guides, with an additional gap between the columns</source>
        <translation>Create columns with guides, with an additional gap between the columns</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="263"/>
        <source>Create the selected number of horizontal guides relative to the current page</source>
        <translation>Create the selected number of horizontal guides relative to the current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="264"/>
        <source>Create the selected number of horizontal guides relative to the current page&apos;s margins</source>
        <translation>Create the selected number of horizontal guides relative to the current page&apos;s margins</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="265"/>
        <source>Create the selected number of horizontal guides relative to the current selection of items</source>
        <translation>Create the selected number of horizontal guides relative to the current selection of items</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="266"/>
        <source>Create the selected number of vertical guides relative to the current page</source>
        <translation>Create the selected number of vertical guides relative to the current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="267"/>
        <source>Create the selected number of vertical guides relative to the current page&apos;s margins</source>
        <translation>Create the selected number of vertical guides relative to the current page&apos;s margins</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="268"/>
        <source>Create the selected number of vertical guides relative to the current selection of items</source>
        <translation>Create the selected number of vertical guides relative to the current selection of items</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="269"/>
        <source>Apply the shown guides to all pages in the document</source>
        <translation>Apply the shown guides to all pages in the document</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="270"/>
        <source>Delete all guides shown on the current page</source>
        <translation>Delete all guides shown on the current page</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="271"/>
        <source>Delete all guides from all pages</source>
        <translation>Delete all guides from all pages</translation>
    </message>
    <message>
        <location filename="../../../scribus/guidemanager.cpp" line="241"/>
        <location filename="../../../scribus/guidemanager.cpp" line="242"/>
        <location filename="../../../scribus/guidemanager.ui" line="188"/>
        <location filename="../../../scribus/guidemanager.ui" line="275"/>
        <source>Refer to</source>
        <translation>Refer to</translation>
    </message>
</context>
<context>
    <name>HelpBrowser</name>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="287"/>
        <source>Scribus Online Help</source>
        <translation>Scribus Online Help</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="31"/>
        <source>&amp;Contents</source>
        <translation>&amp;Contents</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="60"/>
        <source>&amp;Search</source>
        <translation>&amp;Search</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="378"/>
        <source>Find</source>
        <translation>Find</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="378"/>
        <source>Search Term:</source>
        <translation>Search Term:</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="45"/>
        <source>Se&amp;arch</source>
        <translation>Se&amp;arch</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="96"/>
        <source>&amp;New</source>
        <translation>&amp;New</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="299"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="103"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="178"/>
        <source>&amp;Delete</source>
        <translation>&amp;Delete</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="79"/>
        <source>Book&amp;marks</source>
        <translation>Book&amp;marks</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="293"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="148"/>
        <source>&amp;Print...</source>
        <translation>&amp;Print...</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="410"/>
        <source>New Bookmark</source>
        <translation>New Bookmark</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="410"/>
        <source>New Bookmark&apos;s Title:</source>
        <translation>New Bookmark&apos;s Title:</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="289"/>
        <source>&amp;File</source>
        <translation>&amp;File</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="295"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="158"/>
        <source>&amp;Find...</source>
        <translation>&amp;Find...</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="296"/>
        <source>Find &amp;Next</source>
        <translation>Find &amp;Next</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="297"/>
        <source>Find &amp;Previous</source>
        <translation>Find &amp;Previous</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="290"/>
        <source>&amp;Edit</source>
        <translation>&amp;Edit</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="298"/>
        <source>&amp;Add Bookmark</source>
        <translation>&amp;Add Bookmark</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="300"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="110"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="183"/>
        <source>D&amp;elete All</source>
        <translation>D&amp;elete All</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="291"/>
        <source>&amp;Bookmarks</source>
        <translation>&amp;Bookmarks</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="13"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="137"/>
        <source>Scribus Help</source>
        <translation>Scribus Help</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="53"/>
        <source>Searching is case insensitive</source>
        <translation>Searching is case insensitive</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="70"/>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="86"/>
        <source>1</source>
        <translation>1</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="153"/>
        <source>&amp;Exit</source>
        <translation>&amp;Exit</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="163"/>
        <source>Find &amp;Next...</source>
        <translation>Find &amp;Next...</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="168"/>
        <source>Find &amp;Previous...</source>
        <translation>Find &amp;Previous...</translation>
    </message>
    <message>
        <location filename="../../../scribus/ui/helpbrowser.ui" line="173"/>
        <source>&amp;Add</source>
        <translation>&amp;Add</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="294"/>
        <source>&amp;Quit</source>
        <translation>&amp;Quit</translation>
    </message>
    <message>
        <location filename="../../../scribus/helpbrowser.cpp" line="715"/>
        <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>&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;</translation>
    </message>
</context>
<context>
    <name>HelpBrowser2</name>
    <message>
        <source>Dialog</source>
        <translation type="obsolete">Dialog</translation>
    </message>
    <message>
        <source>&amp;Contents</source>
        <translation type="obsolete">&amp;Contents</translation>
    </message>
    <message>
        <source>1</source>
        <translation type="obsolete">1</translation>
    </message>
    <message>
        <source>Se&amp;arch</source>
        <translation type="obsolete">Se&amp;arch</translation>
    </message>
    <message>
        <source>Searching is case insensitive</source>
        <translation type="obsolete">Searching is case insensitive</translation>
    </message>
    <message>
        <source>&amp;Search</source>
        <translation type="obsolete">&amp;Search</translation>
    </message>
    <message>
        <source>Book&amp;marks</source>
        <translation type="obsolete">Book&amp;marks</translation>
    </message>
</context>
<context>
    <name>HyAsk</name>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="48"/>
        <source>Possible Hyphenation</source>
        <translation>Possible Hyphenation</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="68"/>
        <source>Accept</source>
        <translation>Accept</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="89"/>
        <source>Skip</source>
        <translation>Skip</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="107"/>
        <source>Cancel</source>
        <translation>Cancel</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="77"/>
        <source>Add to the
Exception List</source>
        <translation>Add to the
Exception List</translation>
    </message>
    <message>
        <location filename="../../../scribus/hyask.cpp" line="97"/>
        <source>Add to the
Ignore List</source>
        <translation>Add to the
Ignore List</translation>
    </message>
</context>
<context>
    <name>HySettings</name>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="80"/>
        <location filename="../../../scribus/hysettings.cpp" line="92"/>
        <source>Ignore List</source>
        <translation>Ignore List</translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="80"/>
        <location filename="../../../scribus/hysettings.cpp" line="121"/>
        <source>Add a new Entry</source>
        <translation>Add a new Entry</translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="92"/>
        <location filename="../../../scribus/hysettings.cpp" line="133"/>
        <source>Edit Entry</source>
        <translation>Edit Entry</translation>
    </message>
    <message>
        <location filename="../../../scribus/hysettings.cpp" line="121"/>
        <location filename="../../../scribus/hysettings.cpp" line="133"/>
        <source>Exception List</source>
        <translation>Exception List</translation>
    </message>
</context>
<context>
    <name>ImageInfoDialog</name>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="23"/>
        <source>Image Info</source>
        <translation>Image Info</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="30"/>
        <source>General Info</source>
        <translation>General Info</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="34"/>
        <source>Date / Time:</source>
        <translation>Date / Time:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="38"/>
        <source>Has Embedded Profile:</source>
        <translation>Has Embedded Profile:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="46"/>
        <source>Profile Name:</source>
        <translation>Profile Name:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="50"/>
        <source>Has Embedded Paths:</source>
        <translation>Has Embedded Paths:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="58"/>
        <source>Has Layers:</source>
        <translation>Has Layers:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="69"/>
        <source>EXIF Info</source>
        <translation>EXIF Info</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="84"/>
        <source>Artist:</source>
        <translation>Artist:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="126"/>
        <source>Comment:</source>
        <translation>Comment:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="127"/>
        <source>User Comment:</source>
        <translation>User Comment:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="128"/>
        <source>Camera Model:</source>
        <translation>Camera Model:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="129"/>
        <source>Camera Manufacturer:</source>
        <translation>Camera Manufacturer:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="135"/>
        <source>Description:</source>
        <translation>Description:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="136"/>
        <source>Copyright:</source>
        <translation>Copyright:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="137"/>
        <source>Scanner Model:</source>
        <translation>Scanner Model:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="138"/>
        <source>Scanner Manufacturer:</source>
        <translation>Scanner Manufacturer:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="130"/>
        <source>Exposure time</source>
        <translation>Exposure time</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="131"/>
        <source>Aperture:</source>
        <translation>Aperture:</translation>
    </message>
    <message>
        <location filename="../../../scribus/imageinfodialog.cpp" line="132"/>
        <source>ISO equiv.:</source>
        <translation>ISO equiv.:</translation>
    </message>
</context>
<context>
    <name>ImportAIPlugin</name>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="58"/>
        <source>Import AI...</source>
        <translation>Import AI...</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="79"/>
        <source>Imports Illustrator Files</source>
        <translation>Imports Illustrator Files</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>Imports most Illustrator files into the current document,
converting their vector data into Scribus objects.</translation>
    </message>
    <message>
        <location filename="../../../scribus/plugins/import/ai/importaiplugin.cpp" line="162"/>
        <source>The file could not be imported</source>
        <translation>The file could not be imported</translation>
    </message>
</context>
<context>
    <name>ImportCvgPlugin</na