Rev 18395 | Go to most recent revision | Blame | Last modification | View Log | RSS feed
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="it_IT" sourcelanguage="en">
<context>
<name></name>
<message>
<source>getColorNames() -> 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() -> list
Returns a list containing the names of all defined colours in the document.
If no document is open, returns a list of the default document colours.
</translation>
</message>
<message>
<source>getColor("name") -> tuple
Returns a tuple (C, M, Y, K) containing the four color components of the
color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">getColor("name") -> tuple
Returns a tuple (C, M, Y, K) containing the four colour components of the
colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>getColorAsRGB("name") -> tuple
Returns a tuple (R,G,B) containing the three color components of the
color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">getColorAsRGB("name") -> tuple
Returns a tuple (R,G,B) containing the three colour components of the
colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>changeColor("name", c, m, y, k)
Changes the color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">changeColour("name", c, m, y, k)
Changes the colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>defineColor("name", c, m, y, k)
Defines a new color "name". 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("name", c, m, y, k)
Defines a new colour "name". 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>deleteColor("name", "replace")
Deletes the color "name". Every occurence of that color is replaced by the
color "replace". If not specified, "replace" defaults to the color
"None" - transparent.
deleteColor works on the default document colors if there is no document open.
In that case, "replace", if specified, has no effect.
May raise NotFoundError if a named color wasn't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">deleteColor("name", "replace")
Deletes the colour "name". Every occurence of that colour is replaced by the
colour "replace". If not specified, "replace" defaults to the colour
"None" - transparent.
deleteColor works on the default document colours if there is no document open.
In that case, "replace", if specified, has no effect.
May raise NotFoundError if a named colour wasn't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>replaceColor("name", "replace")
Every occurence of the color "name" is replaced by the color "replace".
May raise NotFoundError if a named color wasn't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">replaceColor("name", "replace")
Every occurence of the colour "name" is replaced by the colour "replace".
May raise NotFoundError if a named colour wasn't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>newDocDialog() -> bool
Displays the "New Document" 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() -> bool
Displays the "New Document" 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>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
Shows a File Open dialog box with the caption "caption". Files are filtered
with the filter string "filter". A default filename or file path can also
supplied, leave this string empty when you don'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 "Save As" dialog
otherwise it acts like a "File Open Dialog". 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 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
Refer to the Qt-Documentation for QFileDialog for details on filters.
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
</source>
<translation type="obsolete">fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
Shows a File Open dialog box with the caption "caption". Files are filtered
with the filter string "filter". A default filename or file path can also
supplied, leave this string empty when you don'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 "Save As" dialog
otherwise it acts like a "File Open Dialog". 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 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
Refer to the Qt-Documentation for QFileDialog for details on filters.
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
</translation>
</message>
<message>
<source>messageBox("caption", "message",
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
Displays a message box with the title "caption", the message "message", and
an icon "icon" 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('Script failed',
'This script only works when you have a text frame selected.',
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
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("caption", "message",
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
Displays a message box with the title "caption", the message "message", and
an icon "icon" 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('Script failed',
'This script only works when you have a text frame selected.',
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
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]) -> string
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Example: valueDialog('title', 'text in the window', 'optional')
</source>
<translation type="obsolete">valueDialog(caption, message [,defaultvalue]) -> string
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Example: valueDialog('title', 'text in the window', 'optional')
</translation>
</message>
<message>
<source>newStyleDialog() -> string
Shows 'Create new paragraph style' dialog. Function returns real
style name or None when user cancels the dialog.
</source>
<translation type="obsolete">newStyleDialog() -> string
Shows 'Create new paragraph style' dialog. Function returns real
style name or None when user cancels the dialog.
</translation>
</message>
<message>
<source>newDocument(size, margins, orientation, firstPageNumber,
unit, pagesType, firstPageOrder, numPages) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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>newDoc(size, margins, orientation, firstPageNumber,
unit, facingPages, firstSideLeft) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you're creating a document in several parts.
unit: this value sets the measurement units used by the document. Use a
predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS,
UNIT_PICAS, UNIT_POINTS.
facingPages = FACINGPAGES, NOFACINGPAGES
firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT
The values for width, height and the margins are expressed in the given unit
for the document. PAPER_* constants are expressed in points. If your document
is not in points, make sure to account for this.
example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS,
FACINGPAGES, FIRSTPAGERIGHT)
</translation>
</message>
<message>
<source>closeDoc()
Closes the current document without prompting to save.
May throw NoDocOpenError if there is no document to close
</source>
<translation type="obsolete">closeDoc()
Closes the current document without prompting to save.
May throw NoDocOpenError if there is no document to close
</translation>
</message>
<message>
<source>haveDoc() -> bool
Returns true if there is a document open.
</source>
<translation type="obsolete">haveDoc() -> bool
Returns true if there is a document open.
</translation>
</message>
<message>
<source>openDoc("name")
Opens the document "name".
May raise ScribusError if the document could not be opened.
</source>
<translation type="obsolete">openDoc("name")
Opens the document "name".
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("name")
Saves the current document under the new name "name" (which may be a full or
relative path).
May raise ScribusError if the save fails.
</source>
<translation type="obsolete">saveDocAs("name")
Saves the current document under the new name "name" (which may be a full or
relative path).
May raise ScribusError if the save fails.
</translation>
</message>
<message>
<source>setInfo("author", "info", "description") -> bool
Sets the document information. "Author", "Info", "Description" are
strings.
</source>
<translation type="obsolete">setInfo("author", "info", "description") -> bool
Sets the document information. "Author", "Info", "Description" are
strings.
</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_<type>
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_<type>
constants.
</translation>
</message>
<message>
<source>setUnit(type)
Changes the measurement unit of the document. Possible values for "unit" are
defined as constants UNIT_<type>.
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 "unit" are
defined as constants UNIT_<type>.
May raise ValueError if an invalid unit is passed.
</translation>
</message>
<message>
<source>getUnit() -> 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() -> 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("filename")
Loads paragraph styles from the Scribus document at "filename" into the
current document.
</source>
<translation type="obsolete">loadStylesFromFile("filename")
Loads paragraph styles from the Scribus document at "filename" into the
current document.
</translation>
</message>
<message>
<source>setDocType(facingPages, firstPageLeft)
Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</source>
<translation type="obsolete">setDocType(facingPages, firstPageLeft)
Sets the document type. To get facing pages set the first parameter to
FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want
to be the first page a left side set the second parameter to FIRSTPAGELEFT, for
a right page use FIRSTPAGERIGHT.
</translation>
</message>
<message>
<source>closeMasterPage()
Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</source>
<translation type="obsolete">closeMasterPage()
Closes the currently active master page, if any, and returns editing
to normal. Begin editing with editMasterPage().
</translation>
</message>
<message>
<source>masterPageNames()
Returns a list of the names of all master pages in the document.
</source>
<translation type="obsolete">masterPageNames()
Returns a list of the names of all master pages in the document.
</translation>
</message>
<message>
<source>editMasterPage(pageName)
Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</source>
<translation type="obsolete">editMasterPage(pageName)
Enables master page editing and opens the named master page
for editing. Finish editing with closeMasterPage().
</translation>
</message>
<message>
<source>createMasterPage(pageName)
Creates a new master page named pageName and opens it for
editing.
</source>
<translation type="obsolete">createMasterPage(pageName)
Creates a new master page named pageName and opens it for
editing.
</translation>
</message>
<message>
<source>deleteMasterPage(pageName)
Delete the named master page.
</source>
<translation type="obsolete">deleteMasterPage(pageName)
Delete the named master page.
</translation>
</message>
<message>
<source>getFillColor(["name"]) -> string
Returns the name of the fill color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFillColor(["name"]) -> string
Returns the name of the fill colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getFillTransparency(["name"]) -> float
Returns the fill transparency of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getFillTransparency(["name"]) -> float
Returns the fill transparency of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getFillBlendmode(["name"]) -> integer
Returns the fill blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getFillBlendmode(["name"]) -> integer
Returns the fill blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineColor(["name"]) -> string
Returns the name of the line color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineColor(["name"]) -> string
Returns the name of the line colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getLineTransparency(["name"]) -> float
Returns the line transparency of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineTransparency(["name"]) -> float
Returns the line transparency of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineBlendmode(["name"]) -> integer
Returns the line blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineBlendmode(["name"]) -> integer
Returns the line blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineWidth(["name"]) -> integer
Returns the line width of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineWidth(["name"]) -> integer
Returns the line width of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineShade(["name"]) -> integer
Returns the shading value of the line color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineShade(["name"]) -> integer
Returns the shading value of the line colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getLineJoin(["name"]) -> integer (see constants)
Returns the line join style of the object "name". If "name" is not given
the currently selected item is used. The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</source>
<translation type="obsolete">getLineJoin(["name"]) -> integer (see constants)
Returns the line join style of the object "name". If "name" is not given
the currently selected item is used. The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</translation>
</message>
<message>
<source>getLineEnd(["name"]) -> integer (see constants)
Returns the line cap style of the object "name". If "name" is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</source>
<translation type="obsolete">getLineEnd(["name"]) -> integer (see constants)
Returns the line cap style of the object "name". If "name" is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</translation>
</message>
<message>
<source>getLineStyle(["name"]) -> integer (see constants)
Returns the line style of the object "name". If "name" 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(["name"]) -> integer (see constants)
Returns the line style of the object "name". If "name" 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(["name"]) -> integer
Returns the shading value of the fill color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFillShade(["name"]) -> integer
Returns the shading value of the fill colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getCornerRadius(["name"]) -> integer
Returns the corner radius of the object "name". The radius is
expressed in points. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getCornerRadius(["name"]) -> integer
Returns the corner radius of the object "name". The radius is
expressed in points. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getImageScale(["name"]) -> (x,y)
Returns a (x, y) tuple containing the scaling values of the image frame
"name". If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getImageScale(["name"]) -> (x,y)
Returns a (x, y) tuple containing the scaling values of the image frame
"name". If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getImageName(["name"]) -> string
Returns the filename for the image in the image frame. If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">getImageName(["name"]) -> string
Returns the filename for the image in the image frame. If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>getPosition(["name"]) -> (x,y)
Returns a (x, y) tuple with the position of the object "name".
If "name" is not given the currently selected item is used.
The position is expressed in the actual measurement unit of the document
- see UNIT_<type> for reference.
</source>
<translation type="obsolete">getPosition(["name"]) -> (x,y)
Returns a (x, y) tuple with the position of the object "name".
If "name" is not given the currently selected item is used.
The position is expressed in the actual measurement unit of the document
- see UNIT_<type> for reference.
</translation>
</message>
<message>
<source>getSize(["name"]) -> (width,height)
Returns a (width, height) tuple with the size of the object "name".
If "name" is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_<type>
for reference.
</source>
<translation type="obsolete">getSize(["name"]) -> (width,height)
Returns a (width, height) tuple with the size of the object "name".
If "name" is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_<type>
for reference.
</translation>
</message>
<message>
<source>getRotation(["name"]) -> integer
Returns the rotation of the object "name". The value is expressed in degrees,
and clockwise is positive. If "name" is not given the currently selected item
is used.
</source>
<translation type="obsolete">getRotation(["name"]) -> integer
Returns the rotation of the object "name". The value is expressed in degrees,
and clockwise is positive. If "name" is not given the currently selected item
is used.
</translation>
</message>
<message>
<source>getAllObjects() -> list
Returns a list containing the names of all objects on the current page.
</source>
<translation type="obsolete">getAllObjects() -> 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' of `object'. See getProperty()
for details of arguments.
If `includesuper' is true, search inherited properties too.
</source>
<translation type="obsolete">getPropertyCType(object, property, includesuper=True)
Returns the name of the C type of `property' of `object'. See getProperty()
for details of arguments.
If `includesuper' is true, search inherited properties too.
</translation>
</message>
<message>
<source>getPropertyNames(object, includesuper=True)
Return a list of property names supported by `object'.
If `includesuper' 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'.
If `includesuper' is true, return properties supported
by parent classes as well.
</translation>
</message>
<message>
<source>getProperty(object, property)
Return the value of the property `property' of the passed `object'.
The `object' 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' argument must be a string, and is the name of the property
to look up on `object'.
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' of the passed `object'.
The `object' 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' argument must be a string, and is the name of the property
to look up on `object'.
The return value varies depending on the type of the property.
</translation>
</message>
<message>
<source>setProperty(object, property, value)
Set `property' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', 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' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', an exception is raised. An exception may
also be raised if the underlying setter fails.
See getProperty() for more information.
</translation>
</message>
<message>
<source>moveObject(dx, dy [, "name"])
Moves the object "name" 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 "name" is not given the currently selected item is used.
If the object "name" belongs to a group, the whole group is moved.
</source>
<translation type="obsolete">moveObject(dx, dy [, "name"])
Moves the object "name" 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 "name" is not given the currently selected item is used.
If the object "name" belongs to a group, the whole group is moved.
</translation>
</message>
<message>
<source>moveObjectAbs(x, y [, "name"])
Moves the object "name" to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If "name"
is not given the currently selected item is used. If the object "name"
belongs to a group, the whole group is moved.
</source>
<translation type="obsolete">moveObjectAbs(x, y [, "name"])
Moves the object "name" to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If "name"
is not given the currently selected item is used. If the object "name"
belongs to a group, the whole group is moved.
</translation>
</message>
<message>
<source>rotateObject(rot [, "name"])
Rotates the object "name" by "rot" 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 "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">rotateObject(rot [, "name"])
Rotates the object "name" by "rot" 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 "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>rotateObjectAbs(rot [, "name"])
Sets the rotation of the object "name" to "rot". Positive values
mean counter clockwise rotation. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">rotateObjectAbs(rot [, "name"])
Sets the rotation of the object "name" to "rot". Positive values
mean counter clockwise rotation. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>sizeObject(width, height [, "name"])
Resizes the object "name" to the given width and height. If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">sizeObject(width, height [, "name"])
Resizes the object "name" to the given width and height. If "name"
is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getSelectedObject([nr]) -> string
Returns the name of the selected object. "nr" 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]) -> string
Returns the name of the selected object. "nr" 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() -> integer
Returns the number of selected objects.
</source>
<translation type="obsolete">selectionCount() -> integer
Returns the number of selected objects.
</translation>
</message>
<message>
<source>selectObject("name")
Selects the object with the given "name".
</source>
<translation type="obsolete">selectObject("name")
Selects the object with the given "name".
</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 "list" together. "list" must contain the names
of the objects to be grouped. If "list" is not given the currently selected
items are used.
</source>
<translation type="obsolete">groupObjects(list)
Groups the objects named in "list" together. "list" must contain the names
of the objects to be grouped. If "list" is not given the currently selected
items are used.
</translation>
</message>
<message>
<source>unGroupObjects("name")
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source>
<translation type="obsolete">unGroupObjects("name")
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation>
</message>
<message>
<source>scaleGroup(factor [,"name"])
Scales the group the object "name" 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 "factor" must be greater than
0. If "name" 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 [,"name"])
Scales the group the object "name" 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 "factor" must be greater than
0. If "name" is not given the currently selected item is used.
May raise ValueError if an invalid scale factor is passed.
</translation>
</message>
<message>
<source>loadImage("filename" [, "name"])
Loads the picture "picture" into the image frame "name". If "name" 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("filename" [, "name"])
Loads the picture "picture" into the image frame "name". If "name" 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 [, "name"])
Sets the scaling factors of the picture in the image frame "name".
If "name" 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 [, "name"])
Sets the scaling factors of the picture in the image frame "name".
If "name" 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(["name"]) -> bool
Locks the object "name" if it's unlocked or unlock it if it's locked.
If "name" is not given the currently selected item is used. Returns true
if locked.
</source>
<translation type="obsolete">lockObject(["name"]) -> bool
Locks the object "name" if it's unlocked or unlock it if it's locked.
If "name" is not given the currently selected item is used. Returns true
if locked.
</translation>
</message>
<message>
<source>isLocked(["name"]) -> bool
Returns true if is the object "name" locked. If "name" is not given the
currently selected item is used.
</source>
<translation type="obsolete">isLocked(["name"]) -> bool
Returns true if is the object "name" locked. If "name" is not given the
currently selected item is used.
</translation>
</message>
<message>
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
May raise WrongFrameTypeError.
</source>
<translation type="obsolete">setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
May raise WrongFrameTypeError.
</translation>
</message>
<message>
<source>setRedraw(bool)
Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</source>
<translation type="obsolete">setRedraw(bool)
Disables page redraw when bool = False, otherwise redrawing is enabled.
This change will persist even after the script exits, so make sure to call
setRedraw(True) in a finally: clause at the top level of your script.
</translation>
</message>
<message>
<source>getFontNames() -> list
Returns a list with the names of all available fonts.
</source>
<translation type="obsolete">getFontNames() -> list
Returns a list with the names of all available fonts.
</translation>
</message>
<message>
<source>getXFontNames() -> list of tuples
Returns a larger font info. It'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() -> list of tuples
Returns a larger font info. It'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("name", "filename", "sample", size, format="PPM") -> bool
Creates an image preview of font "name" with given text "sample" and size.
If "filename" is not "", image is saved into "filename". Otherwise
image data is returned as a string. The optional "format" 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't be found.
May raise ValueError if an empty sample or filename is passed.
</source>
<translation type="obsolete">renderFont("name", "filename", "sample", size, format="PPM") -> bool
Creates an image preview of font "name" with given text "sample" and size.
If "filename" is not "", image is saved into "filename". Otherwise
image data is returned as a string. The optional "format" 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't be found.
May raise ValueError if an empty sample or filename is passed.
</translation>
</message>
<message>
<source>getLayers() -> list
Returns a list with the names of all defined layers.
</source>
<translation type="obsolete">getLayers() -> list
Returns a list with the names of all defined layers.
</translation>
</message>
<message>
<source>setActiveLayer("name")
Sets the active layer to the layer named "name".
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setActiveLayer("name")
Sets the active layer to the layer named "name".
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getActiveLayer() -> string
Returns the name of the current active layer.
</source>
<translation type="obsolete">getActiveLayer() -> string
Returns the name of the current active layer.
</translation>
</message>
<message>
<source>sentToLayer("layer" [, "name"])
Sends the object "name" to the layer "layer". The layer must exist.
If "name" is not given the currently selected item is used.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">sentToLayer("layer" [, "name"])
Sends the object "name" to the layer "layer". The layer must exist.
If "name" is not given the currently selected item is used.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerVisible("layer", visible)
Sets the layer "layer" to be visible or not. If is the visible set to false
the layer is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerVisible("layer", visible)
Sets the layer "layer" to be visible or not. If is the visible set to false
the layer is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerPrintable("layer", printable)
Sets the layer "layer" to be printable or not. If is the
printable set to false the layer won't be printed.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerPrintable("layer", printable)
Sets the layer "layer" to be printable or not. If is the
printable set to false the layer won't be printed.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerLocked("layer", locked)
Sets the layer "layer" to be locked or not. If locked is set to
true the layer will be locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerLocked("layer", locked)
Sets the layer "layer" to be locked or not. If locked is set to
true the layer will be locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerOutlined("layer", outline)
Sets the layer "layer" to be locked or not. If outline is set to
true the layer will be displayed outlined.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerOutlined("layer", outline)
Sets the layer "layer" to be locked or not. If outline is set to
true the layer will be displayed outlined.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerFlow("layer", flow)
Sets the layers "layer" 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't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerFlow("layer", flow)
Sets the layers "layer" 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't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerBlendmode("layer", blend)
Sets the layers "layer" blendmode to blend.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerBlendmode("layer", blend)
Sets the layers "layer" blendmode to blend.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerTransparency("layer", trans)
Sets the layers "layer" transparency to trans.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerTransparency("layer", trans)
Sets the layers "layer" transparency to trans.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerVisible("layer") -> bool
Returns whether the layer "layer" is visible or not, a value of True means
that the layer "layer" is visible, a value of False means that the layer
"layer" is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerVisible("layer") -> bool
Returns whether the layer "layer" is visible or not, a value of True means
that the layer "layer" is visible, a value of False means that the layer
"layer" is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerPrintable("layer") -> bool
Returns whether the layer "layer" is printable or not, a value of True means
that the layer "layer" can be printed, a value of False means that printing
the layer "layer" is disabled.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerPrintable("layer") -> bool
Returns whether the layer "layer" is printable or not, a value of True means
that the layer "layer" can be printed, a value of False means that printing
the layer "layer" is disabled.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerLocked("layer") -> bool
Returns whether the layer "layer" is locked or not, a value of True means
that the layer "layer" is editable, a value of False means that the layer
"layer" is locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerLocked("layer") -> bool
Returns whether the layer "layer" is locked or not, a value of True means
that the layer "layer" is editable, a value of False means that the layer
"layer" is locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerOutlined("layer") -> bool
Returns whether the layer "layer" is outlined or not, a value of True means
that the layer "layer" is outlined, a value of False means that the layer
"layer" is normal.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerOutlined("layer") -> bool
Returns whether the layer "layer" is outlined or not, a value of True means
that the layer "layer" is outlined, a value of False means that the layer
"layer" is normal.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerFlow("layer") -> bool
Returns whether text flows around objects on layer "layer", 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't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerFlow("layer") -> bool
Returns whether text flows around objects on layer "layer", 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't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getLayerBlendmode("layer") -> int
Returns the "layer" layer blendmode,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">getLayerBlendmode("layer") -> int
Returns the "layer" layer blendmode,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getLayerTransparency("layer") -> float
Returns the "layer" layer transparency,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">getLayerTransparency("layer") -> float
Returns the "layer" layer transparency,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>deleteLayer("layer")
Deletes the layer with the name "layer". Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">deleteLayer("layer")
Deletes the layer with the name "layer". Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>createLayer(layer)
Creates a new layer with the name "name".
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">createLayer(layer)
Creates a new layer with the name "name".
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getGuiLanguage() -> string
Returns a string with the -lang value.
</source>
<translation type="obsolete">getGuiLanguage() -> string
Returns a string with the -lang value.
</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>createRect(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name to reference that object in future. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createRect(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name to reference that object in future. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createEllipse(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name for further referencing of that object. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createEllipse(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name for further referencing of that object. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createImage(x, y, width, height, ["name"]) -> 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.
"name" should be a unique identifier for the object because you need this
name for further access to that object. If "name" is not given Scribus will
create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createImage(x, y, width, height, ["name"]) -> 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.
"name" should be a unique identifier for the object because you need this
name for further access to that object. If "name" is not given Scribus will
create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createText(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object because
you need this name for further referencing of that object. If "name" is not
given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createText(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object because
you need this name for further referencing of that object. If "name" is not
given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createLine(x1, y1, x2, y2, ["name"]) -> 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). "name" should be a unique identifier for the
object because you need this name for further access to that object. If
"name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createLine(x1, y1, x2, y2, ["name"]) -> 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). "name" should be a unique identifier for the
object because you need this name for further access to that object. If
"name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createPolyLine(list, ["name"]) -> string
Creates a new polyline and returns its name. The points for the polyline are
stored in the list "list" 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). "name" should be a unique identifier for the object because
you need this name for further access to that object. If "name" is not given
Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createPolyLine(list, ["name"]) -> string
Creates a new polyline and returns its name. The points for the polyline are
stored in the list "list" 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). "name" should be a unique identifier for the object because
you need this name for further access to that object. If "name" is not given
Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createPolygon(list, ["name"]) -> string
Creates a new polygon and returns its name. The points for the polygon are
stored in the list "list" 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). "name" should be a unique
identifier for the object because you need this name for further access to that
object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createPolygon(list, ["name"]) -> string
Creates a new polygon and returns its name. The points for the polygon are
stored in the list "list" 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). "name" should be a unique
identifier for the object because you need this name for further access to that
object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createBezierLine(list, ["name"]) -> string
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list "list" 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). "name"
should be a unique identifier for the object because you need this name for
further access to that object. If "name" is not given Scribus will create one
for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createBezierLine(list, ["name"]) -> string
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list "list" 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). "name"
should be a unique identifier for the object because you need this name for
further access to that object. If "name" is not given Scribus will create one
for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
Creates a new pathText by merging the two objects "textbox" and
"beziercurve" and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). "name" should be a
unique identifier for the object because you need this name for further access
to that object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
</source>
<translation type="obsolete">createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
Creates a new pathText by merging the two objects "textbox" and
"beziercurve" and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). "name" should be a
unique identifier for the object because you need this name for further access
to that object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
</translation>
</message>
<message>
<source>deleteObject(["name"])
Deletes the item with the name "name". If "name" is not given the currently
selected item is deleted.
</source>
<translation type="obsolete">deleteObject(["name"])
Deletes the item with the name "name". If "name" is not given the currently
selected item is deleted.
</translation>
</message>
<message>
<source>textFlowMode("name" [, state])
Enables/disables "Text Flows Around Frame" feature for object "name".
Called with parameters string name and optional int "state" (0 <= state <= 3).
Setting "state" to 0 will disable text flow.
Setting "state" to 1 will make text flow around object frame.
Setting "state" to 2 will make text flow around bounding box.
Setting "state" to 3 will make text flow around contour line.
If "state" is not passed, text flow is toggled.
</source>
<translation type="obsolete">textFlowMode("name" [, state])
Enables/disables "Text Flows Around Frame" feature for object "name".
Called with parameters string name and optional int "state" (0 <= state <= 3).
Setting "state" to 0 will disable text flow.
Setting "state" to 1 will make text flow around object frame.
Setting "state" to 2 will make text flow around bounding box.
Setting "state" to 3 will make text flow around contour line.
If "state" is not passed, text flow is toggled.
</translation>
</message>
<message>
<source>objectExists(["name"]) -> 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(["name"]) -> 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("style" [, "name"])
Apply the named "style" to the object named "name". If is no object name
given, it's applied on the selected object.
</source>
<translation type="obsolete">setStyle("style" [, "name"])
Apply the named "style" to the object named "name". If is no object name
given, it's applied on the selected object.
</translation>
</message>
<message>
<source>getAllStyles() -> list
Return a list of the names of all paragraph styles in the current document.
</source>
<translation type="obsolete">getAllStyles() -> list
Return a list of the names of all paragraph styles in the current document.
</translation>
</message>
<message>
<source>duplicateObject(["name"]) -> string
creates a Duplicate of the selected Object (or Selection Group).
</source>
<translation type="obsolete">duplicateObject(["name"]) -> string
creates a Duplicate of the selected Object (or Selection Group).
</translation>
</message>
<message>
<source>newPage(where [,"masterpage"])
Creates a new page. If "where" is -1 the new Page is appended to the
document, otherwise the new page is inserted before "where". Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter "masterpage" 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 [,"masterpage"])
Creates a new page. If "where" is -1 the new Page is appended to the
document, otherwise the new page is inserted before "where". Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter "masterpage" specifies the name of the
master page for the new page.
May raise IndexError if the page number is out of range
</translation>
</message>
<message>
<source>currentPage() -> 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() -> 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>getPageType() -> 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() -> 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>savePageAsEPS("name")
Saves the current page as an EPS to the file "name".
May raise ScribusError if the save failed.
</source>
<translation type="obsolete">savePageAsEPS("name")
Saves the current page as an EPS to the file "name".
May raise ScribusError if the save failed.
</translation>
</message>
<message>
<source>deletePage(nr)
Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.
May raise IndexError if the page number is out of range
</source>
<translation type="obsolete">deletePage(nr)
Deletes the given page. Does nothing if the document contains only one page.
Page numbers are counted from 1 upwards, no matter what the displayed first
page number is.
May raise IndexError if the page number is out of range
</translation>
</message>
<message>
<source>gotoPage(nr)
Moves to the page "nr" (that is, makes the current page "nr"). Note that
gotoPage doesn't (currently) change the page the user'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 "nr" (that is, makes the current page "nr"). Note that
gotoPage doesn't (currently) change the page the user's view is displaying, it
just sets the page that script commands will operates on.
May raise IndexError if the page number is out of range.
</translation>
</message>
<message>
<source>pageCount() -> integer
Returns the number of pages in the document.
</source>
<translation type="obsolete">pageCount() -> integer
Returns the number of pages in the document.
</translation>
</message>
<message>
<source>getHGuides() -> list
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_<type> constants.
</source>
<translation type="obsolete">getHGuides() -> list
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_<type> 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_<type> 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_<type> 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() -> tuple
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_<type> constants and getPageMargins()
</source>
<translation type="obsolete">getPageSize() -> tuple
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_<type> constants and getPageMargins()
</translation>
</message>
<message>
<source>getPageItems() -> list
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' is a text frame (type 4) and is the first at
the page...
</source>
<translation type="obsolete">getPageItems() -> list
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' 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_<type> 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_<type> constants and getPageSize().
</translation>
</message>
<message>
<source>importPage("fromDoc", (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 "Page->Import" 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("fromDoc", (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 "Page->Import" 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>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"])
Sets the gradient fill of the object "name" to type. Color descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_<type>).
</source>
<translation type="obsolete">setGradientFill(type, "colour1", shade1, "colour2", shade2, ["name"])
Sets the gradient fill of the object "name" to type. Colour descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_<type>).
</translation>
</message>
<message>
<source>setFillColor("color", ["name"])
Sets the fill color of the object "name" to the color "color". "color"
is the name of one of the defined colors. If "name" is not given the
currently selected item is used.
</source>
<translation type="obsolete">setFillColor("color", ["name"])
Sets the fill colour of the object "name" to the colour "color". "color"
is the name of one of the defined colours. If "name" is not given the
currently selected item is used.
</translation>
</message>
<message>
<source>setFillTransparency(transparency, ["name"])
Sets the fill transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setFillTransparency(transparency, ["name"])
Sets the fill transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setFillBlendmode(blendmode, ["name"])
Sets the fill blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setFillBlendmode(blendmode, ["name"])
Sets the fill blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineColor("color", ["name"])
Sets the line color of the object "name" to the color "color". If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineColor("color", ["name"])
Sets the line colour of the object "name" to the colour "color". If "name"
is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineTransparency(transparency, ["name"])
Sets the line transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineTransparency(transparency, ["name"])
Sets the line transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineBlendmode(blendmode, ["name"])
Sets the line blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineBlendmode(blendmode, ["name"])
Sets the line blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineWidth(width, ["name"])
Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" 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, ["name"])
Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" 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, ["name"])
Sets the shading of the line color of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full color intensity). If "name" 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, ["name"])
Sets the shading of the line colour of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full colour intensity). If "name" 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, ["name"])
Sets the line join style of the object "name" to the style "join".
If "name" is not given the currently selected item is used. There are
predefined constants for join - JOIN_<type>.
</source>
<translation type="obsolete">setLineJoin(join, ["name"])
Sets the line join style of the object "name" to the style "join".
If "name" is not given the currently selected item is used. There are
predefined constants for join - JOIN_<type>.
</translation>
</message>
<message>
<source>setLineEnd(endtype, ["name"])
Sets the line cap style of the object "name" to the style "cap".
If "name" is not given the currently selected item is used. There are
predefined constants for "cap" - CAP_<type>.
</source>
<translation type="obsolete">setLineEnd(endtype, ["name"])
Sets the line cap style of the object "name" to the style "cap".
If "name" is not given the currently selected item is used. There are
predefined constants for "cap" - CAP_<type>.
</translation>
</message>
<message>
<source>setLineStyle(style, ["name"])
Sets the line style of the object "name" to the style "style". If "name"
is not given the currently selected item is used. There are predefined
constants for "style" - LINE_<style>.
</source>
<translation type="obsolete">setLineStyle(style, ["name"])
Sets the line style of the object "name" to the style "style". If "name"
is not given the currently selected item is used. There are predefined
constants for "style" - LINE_<style>.
</translation>
</message>
<message>
<source>setFillShade(shade, ["name"])
Sets the shading of the fill color of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full Color intensity). If "name" 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, ["name"])
Sets the shading of the fill colour of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full Colour intensity). If "name" 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, ["name"])
Sets the corner radius of the object "name". The radius is expressed
in points. If "name" is not given the currently selected item is used.
May raise ValueError if the corner radius is negative.
</source>
<translation type="obsolete">setCornerRadius(radius, ["name"])
Sets the corner radius of the object "name". The radius is expressed
in points. If "name" is not given the currently selected item is used.
May raise ValueError if the corner radius is negative.
</translation>
</message>
<message>
<source>setMultiLine("namedStyle", ["name"])
Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.
May raise NotFoundError if the line style doesn't exist.
</source>
<translation type="obsolete">setMultiLine("namedStyle", ["name"])
Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.
May raise NotFoundError if the line style doesn't exist.
</translation>
</message>
<message>
<source>createParagraphStyle(...)
Creates a paragraph style. This function takes the following keyword parameters:
"name" [required] -> specifies the name of the paragraphstyle to create
linespacingmode [optional] -> specifies the linespacing mode; possible modes are:
fixed linespacing: 0
automatic linespacing: 1
baseline grid linespacing: 2
linespacing [optional] -> specifies the linespacing if using fixed linespacing
alignment [optional] -> specifies the alignment of the paragraph
-> left: 0
-> center: 1
-> right: 2
-> justify: 3
-> extend: 4
leftmargin [optional], rightmargin [optional] -> specify the margin
gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs
firstindent [optional] -> the indent of the first line
hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)
dropcaplines [optional] -> height (in lines) of the caps if used
dropcapoffset [optional] -> offset of the caps if used
"charstyle" [optional] -> char style to use
</source>
<translation type="obsolete">createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:"name" [required] -> specifies the name of the paragraphstyle to createlinespacingmode [optional] -> specifies the linespacing mode; possible modes are:fixed linespacing: 0automatic linespacing: 1baseline grid linespacing: 2linespacing [optional] -> specifies the linespacing if using fixed linespacingalignment [optional] -> specifies the alignment of the paragraph-> left: 0-> center: 1-> right: 2-> justify: 3-> extend: 4leftmargin [optional], rightmargin [optional] -> specify the margingapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphsfirstindent [optional] -> the indent of the first linehasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -> height (in lines) of the caps if useddropcapoffset [optiona
l] -> offset of the caps if used"charstyle" [optional] -> char style to use</translation>
</message>
<message>
<source>createCharStyle(...)
Creates a character style. This function takes the following keyword parameters:
"name" [required] -> name of the char style to create
"font" [optional] -> name of the font to use
fontsize [optional] -> font size to set (double)
"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):
-> inherit
-> bold
-> italic
-> underline
-> underlinewords
-> strike
-> superscript
-> subscript
-> outline
-> shadowed
-> allcaps
-> smallcaps
"fillcolor" [optional], "fillshade" [optional] -> specify fill options
"strokecolor" [optional], "strokeshade" [optional] -> specify stroke options
baselineoffset [optional] -> offset of the baseline
shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used
outlinewidth [optional] -> width of the outline if used
underlineoffset [optional], underlinewidth [optional] -> underline options if used
strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used
scaleh [optional], scalev [optional] -> scale of the chars
tracking [optional] -> tracking of the text
"language" [optional] -> language code
</source>
<translation type="obsolete">createCharStyle(...)Creates a character style. This function takes the following keyword parameters:"name" [required] -> name of the char style to create"font" [optional] -> name of the font to usefontsize [optional] -> font size to set (double)"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-> inherit-> bold-> italic-> underline-> underlinewords-> strike-> superscript-> subscript-> outline-> shadowed-> allcaps-> smallcaps"fillcolour" [optional], "fillshade" [optional] -> specify fill options"strokecolour" [optional], "strokeshade" [optional] -> specify stroke optionsbaselineoffset [optional] -> offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if usedoutlinewidth [optional] -> width of the
outline if usedunderlineoffset [optional], underlinewidth [optional] -> underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -> strikethru options if usedscaleh [optional], scalev [optional] -> scale of the charstracking [optional] -> tracking of the text"language" [optional] -> language code</translation>
</message>
<message>
<source>getFontSize(["name"]) -> float
Returns the font size in points for the text frame "name". If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFontSize(["name"]) -> float
Returns the font size in points for the text frame "name". If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getFont(["name"]) -> string
Returns the font name for the text frame "name". If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getFont(["name"]) -> string
Returns the font name for the text frame "name". If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getTextLength(["name"]) -> integer
Returns the length of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextLength(["name"]) -> integer
Returns the length of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getTextLines(["name"]) -> integer
Returns the number of lines of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextLines(["name"]) -> integer
Returns the number of lines of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getText(["name"]) -> string
Returns the text of the text frame "name". 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 "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getText(["name"]) -> string
Returns the text of the text frame "name". 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 "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getAllText(["name"]) -> string
Returns the text of the text frame "name" and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">getAllText(["name"]) -> string
Returns the text of the text frame "name" and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>getLineSpacing(["name"]) -> float
Returns the line spacing ("leading") of the text frame "name" expressed in
points. If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineSpacing(["name"]) -> float
Returns the line spacing ("leading") of the text frame "name" expressed in
points. If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getTextDistances(["name"]) -> tuple
Returns the text distances of the text frame "name" expressed in points. The
distances are returned as a tuple like (left, right, top, bottom). If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextDistances(["name"]) -> tupleReturns the text distances of the text frame "name" expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If "name"is not given the currently selected item is used.</translation>
</message>
<message>
<source>getColumnGap(["name"]) -> float
Returns the column gap size of the text frame "name" expressed in points. If
"name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getColumnGap(["name"]) -> float
Returns the column gap size of the text frame "name" expressed in points. If
"name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getColumns(["name"]) -> integer
Gets the number of columns of the text frame "name". If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">getColumns(["name"]) -> integer
Gets the number of columns of the text frame "name". If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>setText("text", ["name"])
Sets the text of the text frame "name" to the text of the string "text".
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
for more details. If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">setText("text", ["name"])
Sets the text of the text frame "name" to the text of the string "text".
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
for more details. If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>insertText("text", pos, ["name"])
Inserts the text "text" at the position "pos" into the text frame "name".
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 "name" is
not given the currently selected Item is used.
May throw IndexError for an insertion out of bounds.
</source>
<translation type="obsolete">insertText("text", pos, ["name"])
Inserts the text "text" at the position "pos" into the text frame "name".
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 "name" is
not given the currently selected Item is used.
May throw IndexError for an insertion out of bounds.
</translation>
</message>
<message>
<source>setFont("font", ["name"])
Sets the font of the text frame "name" to "font". If there is some text
selected only the selected text is changed. If "name" is not given the
currently selected item is used.
May throw ValueError if the font cannot be found.
</source>
<translation type="obsolete">setFont("font", ["name"])
Sets the font of the text frame "name" to "font". If there is some text
selected only the selected text is changed. If "name" is not given the
currently selected item is used.
May throw ValueError if the font cannot be found.
</translation>
</message>
<message>
<source>setFontSize(size, ["name"])
Sets the font size of the text frame "name" to "size". "size" is treated
as a value in points. If there is some text selected only the selected text is
changed. "size" must be in the range 1 to 512. If "name" is not given the
currently selected item is used.
May throw ValueError for a font size that's out of bounds.
</source>
<translation type="obsolete">setFontSize(size, ["name"])
Sets the font size of the text frame "name" to "size". "size" is treated
as a value in points. If there is some text selected only the selected text is
changed. "size" must be in the range 1 to 512. If "name" is not given the
currently selected item is used.
May throw ValueError for a font size that's out of bounds.
</translation>
</message>
<message>
<source>setLineSpacing(size, ["name"])
Sets the line spacing ("leading") of the text frame "name" to "size".
"size" is a value in points. If "name" 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, ["name"])
Sets the line spacing ("leading") of the text frame "name" to "size".
"size" is a value in points. If "name" is not given the currently selected
item is used.
May throw ValueError if the line spacing is out of bounds.
</translation>
</message>
<message>
<source>setTextDistances(left, right, top, bottom, ["name"])
Sets the text distances of the text frame "name" to the values "left"
"right", "top" and "bottom". If "name" 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, ["name"])Sets the text distances of the text frame "name" to the values "left""right", "top" and "bottom". If "name" 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>
<source>setColumnGap(size, ["name"])
Sets the column gap of the text frame "name" to the value "size". If
"name" 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, ["name"])
Sets the column gap of the text frame "name" to the value "size". If
"name" 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, ["name"])
Sets the number of columns of the text frame "name" to the integer "nr".
If "name" 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, ["name"])
Sets the number of columns of the text frame "name" to the integer "nr".
If "name" 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, ["name"])
Sets the text alignment of the text frame "name" to the specified alignment.
If "name" is not given the currently selected item is used. "align" 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, ["name"])
Sets the text alignment of the text frame "name" to the specified alignment.
If "name" is not given the currently selected item is used. "align" 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, ["name"])
Selects "count" characters of text in the text frame "name" starting from the
character "start". Character counting starts at 0. If "count" is zero, any
text selection will be cleared. If "name" 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, ["name"])
Selects "count" characters of text in the text frame "name" starting from the
character "start". Character counting starts at 0. If "count" is zero, any
text selection will be cleared. If "name" 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(["name"])
Deletes any text in the text frame "name". If there is some text selected,
only the selected text will be deleted. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">deleteText(["name"])
Deletes any text in the text frame "name". If there is some text selected,
only the selected text will be deleted. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>setTextColor("color", ["name"])
Sets the text color of the text frame "name" to the color "color". If there
is some text selected only the selected text is changed. If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">setTextColor("color", ["name"])
Sets the text colour of the text frame "name" to the colour "color". If there
is some text selected only the selected text is changed. If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>setTextStroke("color", ["name"])
Set "color" of the text stroke. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">setTextStroke("color", ["name"])
Set "color" of the text stroke. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>setTextShade(shade, ["name"])
Sets the shading of the text color of the object "name" to "shade". If
there is some text selected only the selected text is changed. "shade" must
be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">setTextShade(shade, ["name"])
Sets the shading of the text colour of the object "name" to "shade". If
there is some text selected only the selected text is changed. "shade" must
be an integer value in the range from 0 (lightest) to 100 (full colour
intensity). If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>linkTextFrames("fromname", "toname")
Link two text frames. The frame named "fromname" is linked to the
frame named "toname". 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("fromname", "toname")
Link two text frames. The frame named "fromname" is linked to the
frame named "toname". 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("name")
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 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
May throw ScribusException if linking rules are violated.
</source>
<translation type="obsolete">unlinkTextFrames("name")
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 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
May throw ScribusException if linking rules are violated.
</translation>
</message>
<message>
<source>traceText(["name"])
Convert the text frame "name" to outlines. If "name" is not given the
currently selected item is used.</source>
<translation type="obsolete">traceText(["name"])
Convert the text frame "name" to outlines. If "name" is not given the
currently selected item is used.</translation>
</message>
<message>
<source>textOverflows(["name", nolinks]) -> integer
Returns the actual number of overflowing characters in text frame "name".
If is nolinks set to non zero value it takes only one frame - it doesn'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(["name", nolinks]) -> integer
Returns the actual number of overflowing characters in text frame "name".
If is nolinks set to non zero value it takes only one frame - it doesn'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>hyphenateText(["name"]) -> bool
Does hyphenation on text frame "name".
If "name" 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(["name"]) -> boolDoes hyphenation on text frame "name".If "name" 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(["name"]) -> bool
Does dehyphenation on text frame "name".
If "name" 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(["name"]) -> boolDoes dehyphenation on text frame "name".If "name" 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>setPDFBookmark("toggle", ["name"])
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not.
If "name" 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("toggle", ["name"])
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not.
If "name" is not given the currently selected item is used.
May raise WrongFrameTypeError if the target frame is not a text frame
</translation>
</message>
<message>
<source>isPDFBookmark(["name"]) -> bool
Returns true if the text frame "name" is a PDF bookmark.
If "name" 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(["name"]) -> bool
Returns true if the text frame "name" is a PDF bookmark.
If "name" is not given the currently selected item is used.
May raise WrongFrameTypeError if the target frame is not a text frame
</translation>
</message>
<message>
<source>messagebarText("string")
Writes the "string" into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
</source>
<translation type="obsolete">messagebarText("string")
Writes the "string" into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
</translation>
</message>
<message>
<source>progressReset()
Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</source>
<translation type="obsolete">progressReset()
Cleans up the Scribus progress bar previous settings. It is called before the
new progress bar use. See progressSet.
</translation>
</message>
<message>
<source>progressTotal(max)
Sets the progress bar's maximum steps value to the specified number.
See progressSet.
</source>
<translation type="obsolete">progressTotal(max)
Sets the progress bar's maximum steps value to the specified number.
See progressSet.
</translation>
</message>
<message>
<source>progressSet(nr)
Set the progress bar position to "nr", 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's Qt docs]
</source>
<translation type="obsolete">progressSet(nr)
Set the progress bar position to "nr", 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'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's
useful to call this procedure when you're changing the document, because Scribus
won'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's
useful to call this procedure when you're changing the document, because Scribus
won't automatically notice when you change the document using a script.
</translation>
</message>
<message>
<source>zoomDocument(double)
Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</source>
<translation type="obsolete">zoomDocument(double)
Zoom the document in main GUI window. Actions have whole number
values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker.
</translation>
</message>
<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>placeSVG("filename", x, y)
Places the SVG "filename" 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("filename", x, y)
Places the SVG "filename" 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>placeEPS("filename", x, y)
Places the EPS "filename" 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("filename", x, y)
Places the EPS "filename" 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("filename", x, y)
Places the SXD "filename" 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("filename", x, y)
Places the SXD "filename" 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("filename", x, y)
Places the ODG "filename" 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("filename", x, y)
Places the ODG "filename" 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>
</context>
<context>
<name>@default</name>
<message>
<source>getColorNames() -> 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() -> 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() -> bool
Displays the "New Document" 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() -> bool
Displays the "New Document" 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(["name"]) -> string
Returns the name of the fill color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFillColor(["name"]) -> string
Returns the name of the fill colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>moveObject(dx, dy [, "name"])
Moves the object "name" 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 "name" is not given the currently selected item is used.
If the object "name" belongs to a group, the whole group is moved.
</source>
<translation type="obsolete">moveObject(dx, dy [, "name"])
Moves the object "name" 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 "name" is not given the currently selected item is used.
If the object "name" 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, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name to reference that object in future. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createRect(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name to reference that object in future. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>newPage(where [,"masterpage"])
Creates a new page. If "where" is -1 the new Page is appended to the
document, otherwise the new page is inserted before "where". Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter "masterpage" 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 [,"masterpage"])
Creates a new page. If "where" is -1 the new Page is appended to the
document, otherwise the new page is inserted before "where". Page numbers are
counted from 1 upwards, no matter what the displayed first page number of your
document is. The optional parameter "masterpage" 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, "color1", shade1, "color2", shade2, ["name"])
Sets the gradient fill of the object "name" to type. Color descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_<type>).
</source>
<translation type="obsolete">setGradientFill(type, "colour1", shade1, "colour2", shade2, ["name"])
Sets the gradient fill of the object "name" to type. Colour descriptions are
the same as for setFillColor() and setFillShade(). See the constants for
available types (FILL_<type>).
</translation>
</message>
<message>
<source>getFontSize(["name"]) -> float
Returns the font size in points for the text frame "name". If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFontSize(["name"]) -> float
Returns the font size in points for the text frame "name". If this text
frame has some text selected the value assigned to the first character of
the selection is returned.
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>messagebarText("string")
Writes the "string" into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
</source>
<translation type="obsolete">messagebarText("string")
Writes the "string" into the Scribus message bar (status line). The text
must be UTF8 encoded or 'unicode' string(recommended).
</translation>
</message>
<message>
<source>newDocument(size, margins, orientation, firstPageNumber,
unit, pagesType, firstPageOrder, numPages) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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("filename", x, y)
Places the SVG "filename" 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("filename", x, y)
Places the SVG "filename" 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("name") -> tuple
Returns a tuple (C, M, Y, K) containing the four color components of the
color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">getColor("name") -> tuple
Returns a tuple (C, M, Y, K) containing the four colour components of the
colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>getColorAsRGB("name") -> tuple
Returns a tuple (R,G,B) containing the three color components of the
color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">getColorAsRGB("name") -> tuple
Returns a tuple (R,G,B) containing the three colour components of the
colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>changeColor("name", c, m, y, k)
Changes the color "name" 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't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">changeColour("name", c, m, y, k)
Changes the colour "name" 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't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>deleteColor("name", "replace")
Deletes the color "name". Every occurence of that color is replaced by the
color "replace". If not specified, "replace" defaults to the color
"None" - transparent.
deleteColor works on the default document colors if there is no document open.
In that case, "replace", if specified, has no effect.
May raise NotFoundError if a named color wasn't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">deleteColor("name", "replace")
Deletes the colour "name". Every occurence of that colour is replaced by the
colour "replace". If not specified, "replace" defaults to the colour
"None" - transparent.
deleteColor works on the default document colours if there is no document open.
In that case, "replace", if specified, has no effect.
May raise NotFoundError if a named colour wasn't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>replaceColor("name", "replace")
Every occurence of the color "name" is replaced by the color "replace".
May raise NotFoundError if a named color wasn't found.
May raise ValueError if an invalid color name is specified.
</source>
<translation type="obsolete">replaceColor("name", "replace")
Every occurence of the colour "name" is replaced by the colour "replace".
May raise NotFoundError if a named colour wasn't found.
May raise ValueError if an invalid colour name is specified.
</translation>
</message>
<message>
<source>messageBox("caption", "message",
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
Displays a message box with the title "caption", the message "message", and
an icon "icon" 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('Script failed',
'This script only works when you have a text frame selected.',
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
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("caption", "message",
icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT,
button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer
Displays a message box with the title "caption", the message "message", and
an icon "icon" 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('Script failed',
'This script only works when you have a text frame selected.',
ICON_ERROR)
result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>',
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]) -> string
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Example: valueDialog('title', 'text in the window', 'optional')
</source>
<translation type="obsolete">valueDialog(caption, message [,defaultvalue]) -> string
Shows the common 'Ask for string' dialog and returns its value as a string
Parameters: window title, text in the window and optional 'default' value.
Example: valueDialog('title', 'text in the window', 'optional')
</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() -> bool
Returns true if there is a document open.
</source>
<translation type="obsolete">haveDoc() -> bool
Returns true if there is a document open.
</translation>
</message>
<message>
<source>openDoc("name")
Opens the document "name".
May raise ScribusError if the document could not be opened.
</source>
<translation type="obsolete">openDoc("name")
Opens the document "name".
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("name")
Saves the current document under the new name "name" (which may be a full or
relative path).
May raise ScribusError if the save fails.
</source>
<translation type="obsolete">saveDocAs("name")
Saves the current document under the new name "name" (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 "unit" are
defined as constants UNIT_<type>.
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 "unit" are
defined as constants UNIT_<type>.
May raise ValueError if an invalid unit is passed.
</translation>
</message>
<message>
<source>getUnit() -> 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() -> 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("filename")
Loads paragraph styles from the Scribus document at "filename" into the
current document.
</source>
<translation type="obsolete">loadStylesFromFile("filename")
Loads paragraph styles from the Scribus document at "filename" 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(["name"]) -> string
Returns the name of the line color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineColor(["name"]) -> string
Returns the name of the line colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getLineWidth(["name"]) -> integer
Returns the line width of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineWidth(["name"]) -> integer
Returns the line width of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineShade(["name"]) -> integer
Returns the shading value of the line color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineShade(["name"]) -> integer
Returns the shading value of the line colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getLineEnd(["name"]) -> integer (see constants)
Returns the line cap style of the object "name". If "name" is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</source>
<translation type="obsolete">getLineEnd(["name"]) -> integer (see constants)
Returns the line cap style of the object "name". If "name" is not given the
currently selected item is used. The cap types are:
CAP_FLAT, CAP_ROUND, CAP_SQUARE
</translation>
</message>
<message>
<source>getLineStyle(["name"]) -> integer (see constants)
Returns the line style of the object "name". If "name" 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(["name"]) -> integer (see constants)
Returns the line style of the object "name". If "name" 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(["name"]) -> integer
Returns the shading value of the fill color of the object "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getFillShade(["name"]) -> integer
Returns the shading value of the fill colour of the object "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getImageScale(["name"]) -> (x,y)
Returns a (x, y) tuple containing the scaling values of the image frame
"name". If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getImageScale(["name"]) -> (x,y)
Returns a (x, y) tuple containing the scaling values of the image frame
"name". If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getImageName(["name"]) -> string
Returns the filename for the image in the image frame. If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">getImageName(["name"]) -> string
Returns the filename for the image in the image frame. If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>getSize(["name"]) -> (width,height)
Returns a (width, height) tuple with the size of the object "name".
If "name" is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_<type>
for reference.
</source>
<translation type="obsolete">getSize(["name"]) -> (width,height)
Returns a (width, height) tuple with the size of the object "name".
If "name" is not given the currently selected item is used. The size is
expressed in the current measurement unit of the document - see UNIT_<type>
for reference.
</translation>
</message>
<message>
<source>getRotation(["name"]) -> integer
Returns the rotation of the object "name". The value is expressed in degrees,
and clockwise is positive. If "name" is not given the currently selected item
is used.
</source>
<translation type="obsolete">getRotation(["name"]) -> integer
Returns the rotation of the object "name". The value is expressed in degrees,
and clockwise is positive. If "name" is not given the currently selected item
is used.
</translation>
</message>
<message>
<source>getAllObjects() -> list
Returns a list containing the names of all objects on the current page.
</source>
<translation type="obsolete">getAllObjects() -> 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' of `object'. See getProperty()
for details of arguments.
If `includesuper' is true, search inherited properties too.
</source>
<translation type="obsolete">getPropertyCType(object, property, includesuper=True)
Returns the name of the C type of `property' of `object'. See getProperty()
for details of arguments.
If `includesuper' is true, search inherited properties too.
</translation>
</message>
<message>
<source>getPropertyNames(object, includesuper=True)
Return a list of property names supported by `object'.
If `includesuper' 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'.
If `includesuper' is true, return properties supported
by parent classes as well.
</translation>
</message>
<message>
<source>getProperty(object, property)
Return the value of the property `property' of the passed `object'.
The `object' 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' argument must be a string, and is the name of the property
to look up on `object'.
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' of the passed `object'.
The `object' 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' argument must be a string, and is the name of the property
to look up on `object'.
The return value varies depending on the type of the property.
</translation>
</message>
<message>
<source>setProperty(object, property, value)
Set `property' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', 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' of `object' to `value'. If `value' cannot be converted to a type
compatible with the type of `property', 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 [, "name"])
Moves the object "name" to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If "name"
is not given the currently selected item is used. If the object "name"
belongs to a group, the whole group is moved.
</source>
<translation type="obsolete">moveObjectAbs(x, y [, "name"])
Moves the object "name" to a new location. The coordinates are expressed in
the current measurement unit of the document (see UNIT constants). If "name"
is not given the currently selected item is used. If the object "name"
belongs to a group, the whole group is moved.
</translation>
</message>
<message>
<source>sizeObject(width, height [, "name"])
Resizes the object "name" to the given width and height. If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">sizeObject(width, height [, "name"])
Resizes the object "name" to the given width and height. If "name"
is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getSelectedObject([nr]) -> string
Returns the name of the selected object. "nr" 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]) -> string
Returns the name of the selected object. "nr" 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() -> integer
Returns the number of selected objects.
</source>
<translation type="obsolete">selectionCount() -> integer
Returns the number of selected objects.
</translation>
</message>
<message>
<source>selectObject("name")
Selects the object with the given "name".
</source>
<translation type="obsolete">selectObject("name")
Selects the object with the given "name".
</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 "list" together. "list" must contain the names
of the objects to be grouped. If "list" is not given the currently selected
items are used.
</source>
<translation type="obsolete">groupObjects(list)
Groups the objects named in "list" together. "list" must contain the names
of the objects to be grouped. If "list" is not given the currently selected
items are used.
</translation>
</message>
<message>
<source>unGroupObjects("name")
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source>
<translation type="obsolete">unGroupObjects("name")
Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation>
</message>
<message>
<source>scaleGroup(factor [,"name"])
Scales the group the object "name" 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 "factor" must be greater than
0. If "name" 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 [,"name"])
Scales the group the object "name" 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 "factor" must be greater than
0. If "name" is not given the currently selected item is used.
May raise ValueError if an invalid scale factor is passed.
</translation>
</message>
<message>
<source>loadImage("filename" [, "name"])
Loads the picture "picture" into the image frame "name". If "name" 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("filename" [, "name"])
Loads the picture "picture" into the image frame "name". If "name" 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 [, "name"])
Sets the scaling factors of the picture in the image frame "name".
If "name" 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 [, "name"])
Sets the scaling factors of the picture in the image frame "name".
If "name" 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(["name"]) -> bool
Locks the object "name" if it's unlocked or unlock it if it's locked.
If "name" is not given the currently selected item is used. Returns true
if locked.
</source>
<translation type="obsolete">lockObject(["name"]) -> bool
Locks the object "name" if it's unlocked or unlock it if it's locked.
If "name" is not given the currently selected item is used. Returns true
if locked.
</translation>
</message>
<message>
<source>isLocked(["name"]) -> bool
Returns true if is the object "name" locked. If "name" is not given the
currently selected item is used.
</source>
<translation type="obsolete">isLocked(["name"]) -> bool
Returns true if is the object "name" locked. If "name" is not given the
currently selected item is used.
</translation>
</message>
<message>
<source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
May raise WrongFrameTypeError.
</source>
<translation type="obsolete">setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>)
Sets the scale to frame on the selected or specified image frame to `scaletoframe'.
If `proportional' is specified, set fixed aspect ratio scaling to `proportional'.
Both `scaletoframe' and `proportional' are boolean.
May raise WrongFrameTypeError.
</translation>
</message>
<message>
<source>getFontNames() -> list
Returns a list with the names of all available fonts.
</source>
<translation type="obsolete">getFontNames() -> list
Returns a list with the names of all available fonts.
</translation>
</message>
<message>
<source>getXFontNames() -> list of tuples
Returns a larger font info. It'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() -> list of tuples
Returns a larger font info. It'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("name", "filename", "sample", size, format="PPM") -> bool
Creates an image preview of font "name" with given text "sample" and size.
If "filename" is not "", image is saved into "filename". Otherwise
image data is returned as a string. The optional "format" 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't be found.
May raise ValueError if an empty sample or filename is passed.
</source>
<translation type="obsolete">renderFont("name", "filename", "sample", size, format="PPM") -> bool
Creates an image preview of font "name" with given text "sample" and size.
If "filename" is not "", image is saved into "filename". Otherwise
image data is returned as a string. The optional "format" 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't be found.
May raise ValueError if an empty sample or filename is passed.
</translation>
</message>
<message>
<source>getLayers() -> list
Returns a list with the names of all defined layers.
</source>
<translation type="obsolete">getLayers() -> list
Returns a list with the names of all defined layers.
</translation>
</message>
<message>
<source>setActiveLayer("name")
Sets the active layer to the layer named "name".
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setActiveLayer("name")
Sets the active layer to the layer named "name".
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getActiveLayer() -> string
Returns the name of the current active layer.
</source>
<translation type="obsolete">getActiveLayer() -> string
Returns the name of the current active layer.
</translation>
</message>
<message>
<source>sentToLayer("layer" [, "name"])
Sends the object "name" to the layer "layer". The layer must exist.
If "name" is not given the currently selected item is used.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">sentToLayer("layer" [, "name"])
Sends the object "name" to the layer "layer". The layer must exist.
If "name" is not given the currently selected item is used.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerVisible("layer", visible)
Sets the layer "layer" to be visible or not. If is the visible set to false
the layer is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerVisible("layer", visible)
Sets the layer "layer" to be visible or not. If is the visible set to false
the layer is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerPrintable("layer") -> bool
Returns whether the layer "layer" is printable or not, a value of True means
that the layer "layer" can be printed, a value of False means that printing
the layer "layer" is disabled.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerPrintable("layer") -> bool
Returns whether the layer "layer" is printable or not, a value of True means
that the layer "layer" can be printed, a value of False means that printing
the layer "layer" is disabled.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>deleteLayer("layer")
Deletes the layer with the name "layer". Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">deleteLayer("layer")
Deletes the layer with the name "layer". Nothing happens if the layer doesn't
exists or if it's the only layer in the document.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>createLayer(layer)
Creates a new layer with the name "name".
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">createLayer(layer)
Creates a new layer with the name "name".
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getGuiLanguage() -> string
Returns a string with the -lang value.
</source>
<translation type="obsolete">getGuiLanguage() -> string
Returns a string with the -lang value.
</translation>
</message>
<message>
<source>createEllipse(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name for further referencing of that object. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createEllipse(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object
because you need this name for further referencing of that object. If "name"
is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createImage(x, y, width, height, ["name"]) -> 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.
"name" should be a unique identifier for the object because you need this
name for further access to that object. If "name" is not given Scribus will
create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createImage(x, y, width, height, ["name"]) -> 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.
"name" should be a unique identifier for the object because you need this
name for further access to that object. If "name" is not given Scribus will
create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createText(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object because
you need this name for further referencing of that object. If "name" is not
given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createText(x, y, width, height, ["name"]) -> 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). "name" should be a unique identifier for the object because
you need this name for further referencing of that object. If "name" is not
given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createLine(x1, y1, x2, y2, ["name"]) -> 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). "name" should be a unique identifier for the
object because you need this name for further access to that object. If
"name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</source>
<translation type="obsolete">createLine(x1, y1, x2, y2, ["name"]) -> 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). "name" should be a unique identifier for the
object because you need this name for further access to that object. If
"name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
</translation>
</message>
<message>
<source>createPolyLine(list, ["name"]) -> string
Creates a new polyline and returns its name. The points for the polyline are
stored in the list "list" 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). "name" should be a unique identifier for the object because
you need this name for further access to that object. If "name" is not given
Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createPolyLine(list, ["name"]) -> string
Creates a new polyline and returns its name. The points for the polyline are
stored in the list "list" 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). "name" should be a unique identifier for the object because
you need this name for further access to that object. If "name" is not given
Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createPolygon(list, ["name"]) -> string
Creates a new polygon and returns its name. The points for the polygon are
stored in the list "list" 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). "name" should be a unique
identifier for the object because you need this name for further access to that
object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createPolygon(list, ["name"]) -> string
Creates a new polygon and returns its name. The points for the polygon are
stored in the list "list" 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). "name" should be a unique
identifier for the object because you need this name for further access to that
object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createBezierLine(list, ["name"]) -> string
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list "list" 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). "name"
should be a unique identifier for the object because you need this name for
further access to that object. If "name" is not given Scribus will create one
for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</source>
<translation type="obsolete">createBezierLine(list, ["name"]) -> string
Creates a new bezier curve and returns its name. The points for the bezier
curve are stored in the list "list" 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). "name"
should be a unique identifier for the object because you need this name for
further access to that object. If "name" is not given Scribus will create one
for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise ValueError if an insufficient number of points is passed or if
the number of values passed don't group into points without leftovers.
</translation>
</message>
<message>
<source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
Creates a new pathText by merging the two objects "textbox" and
"beziercurve" and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). "name" should be a
unique identifier for the object because you need this name for further access
to that object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
</source>
<translation type="obsolete">createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string
Creates a new pathText by merging the two objects "textbox" and
"beziercurve" and returns its name. The coordinates are given in the current
measurement unit of the document (see UNIT constants). "name" should be a
unique identifier for the object because you need this name for further access
to that object. If "name" is not given Scribus will create one for you.
May raise NameExistsError if you explicitly pass a name that's already used.
May raise NotFoundError if one or both of the named base object don't exist.
</translation>
</message>
<message>
<source>deleteObject(["name"])
Deletes the item with the name "name". If "name" is not given the currently
selected item is deleted.
</source>
<translation type="obsolete">deleteObject(["name"])
Deletes the item with the name "name". If "name" is not given the currently
selected item is deleted.
</translation>
</message>
<message>
<source>objectExists(["name"]) -> 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(["name"]) -> 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("style" [, "name"])
Apply the named "style" to the object named "name". If is no object name
given, it's applied on the selected object.
</source>
<translation type="obsolete">setStyle("style" [, "name"])
Apply the named "style" to the object named "name". If is no object name
given, it's applied on the selected object.
</translation>
</message>
<message>
<source>getAllStyles() -> list
Return a list of the names of all paragraph styles in the current document.
</source>
<translation type="obsolete">getAllStyles() -> list
Return a list of the names of all paragraph styles in the current document.
</translation>
</message>
<message>
<source>currentPage() -> 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() -> 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("name")
Saves the current page as an EPS to the file "name".
May raise ScribusError if the save failed.
</source>
<translation type="obsolete">savePageAsEPS("name")
Saves the current page as an EPS to the file "name".
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() -> integer
Returns the number of pages in the document.
</source>
<translation type="obsolete">pageCount() -> integer
Returns the number of pages in the document.
</translation>
</message>
<message>
<source>getHGuides() -> list
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_<type> constants.
</source>
<translation type="obsolete">getHGuides() -> list
Returns a list containing positions of the horizontal guides. Values are in the
document's current units - see UNIT_<type> 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_<type> 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_<type> 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() -> tuple
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_<type> constants and getPageMargins()
</source>
<translation type="obsolete">getPageSize() -> tuple
Returns a tuple with page dimensions measured in the document's current units.
See UNIT_<type> constants and getPageMargins()
</translation>
</message>
<message>
<source>getPageItems() -> list
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' is a text frame (type 4) and is the first at
the page...
</source>
<translation type="obsolete">getPageItems() -> list
Returns a list of tuples with items on the current page. The tuple is:
(name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)]
means that object named 'Text1' 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_<type> 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_<type> constants and getPageSize().
</translation>
</message>
<message>
<source>setFillColor("color", ["name"])
Sets the fill color of the object "name" to the color "color". "color"
is the name of one of the defined colors. If "name" is not given the
currently selected item is used.
</source>
<translation type="obsolete">setFillColor("color", ["name"])
Sets the fill colour of the object "name" to the colour "color". "color"
is the name of one of the defined colours. If "name" is not given the
currently selected item is used.
</translation>
</message>
<message>
<source>setLineColor("color", ["name"])
Sets the line color of the object "name" to the color "color". If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineColor("color", ["name"])
Sets the line colour of the object "name" to the colour "color". If "name"
is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineWidth(width, ["name"])
Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" 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, ["name"])
Sets line width of the object "name" to "width". "width" must be in the
range from 0.0 to 12.0 inclusive, and is measured in points. If "name" 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, ["name"])
Sets the shading of the line color of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full color intensity). If "name" 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, ["name"])
Sets the shading of the line colour of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full colour intensity). If "name" 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, ["name"])
Sets the line join style of the object "name" to the style "join".
If "name" is not given the currently selected item is used. There are
predefined constants for join - JOIN_<type>.
</source>
<translation type="obsolete">setLineJoin(join, ["name"])
Sets the line join style of the object "name" to the style "join".
If "name" is not given the currently selected item is used. There are
predefined constants for join - JOIN_<type>.
</translation>
</message>
<message>
<source>setLineEnd(endtype, ["name"])
Sets the line cap style of the object "name" to the style "cap".
If "name" is not given the currently selected item is used. There are
predefined constants for "cap" - CAP_<type>.
</source>
<translation type="obsolete">setLineEnd(endtype, ["name"])
Sets the line cap style of the object "name" to the style "cap".
If "name" is not given the currently selected item is used. There are
predefined constants for "cap" - CAP_<type>.
</translation>
</message>
<message>
<source>setLineStyle(style, ["name"])
Sets the line style of the object "name" to the style "style". If "name"
is not given the currently selected item is used. There are predefined
constants for "style" - LINE_<style>.
</source>
<translation type="obsolete">setLineStyle(style, ["name"])
Sets the line style of the object "name" to the style "style". If "name"
is not given the currently selected item is used. There are predefined
constants for "style" - LINE_<style>.
</translation>
</message>
<message>
<source>setFillShade(shade, ["name"])
Sets the shading of the fill color of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full Color intensity). If "name" 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, ["name"])
Sets the shading of the fill colour of the object "name" to "shade".
"shade" must be an integer value in the range from 0 (lightest) to 100
(full Colour intensity). If "name" 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, ["name"])
Sets the corner radius of the object "name". The radius is expressed
in points. If "name" is not given the currently selected item is used.
May raise ValueError if the corner radius is negative.
</source>
<translation type="obsolete">setCornerRadius(radius, ["name"])
Sets the corner radius of the object "name". The radius is expressed
in points. If "name" is not given the currently selected item is used.
May raise ValueError if the corner radius is negative.
</translation>
</message>
<message>
<source>setMultiLine("namedStyle", ["name"])
Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.
May raise NotFoundError if the line style doesn't exist.
</source>
<translation type="obsolete">setMultiLine("namedStyle", ["name"])
Sets the line style of the object "name" to the named style "namedStyle".
If "name" is not given the currently selected item is used.
May raise NotFoundError if the line style doesn't exist.
</translation>
</message>
<message>
<source>getFont(["name"]) -> string
Returns the font name for the text frame "name". If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getFont(["name"]) -> string
Returns the font name for the text frame "name". If this text frame
has some text selected the value assigned to the first character
of the selection is returned. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getTextLength(["name"]) -> integer
Returns the length of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextLength(["name"]) -> integer
Returns the length of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getText(["name"]) -> string
Returns the text of the text frame "name". 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 "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getText(["name"]) -> string
Returns the text of the text frame "name". 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 "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getAllText(["name"]) -> string
Returns the text of the text frame "name" and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">getAllText(["name"]) -> string
Returns the text of the text frame "name" and of all text frames which are
linked with this frame. If this textframe has some text selected, the selected
text is returned. If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>getLineSpacing(["name"]) -> float
Returns the line spacing ("leading") of the text frame "name" expressed in
points. If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getLineSpacing(["name"]) -> float
Returns the line spacing ("leading") of the text frame "name" expressed in
points. If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getColumnGap(["name"]) -> float
Returns the column gap size of the text frame "name" expressed in points. If
"name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getColumnGap(["name"]) -> float
Returns the column gap size of the text frame "name" expressed in points. If
"name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>getColumns(["name"]) -> integer
Gets the number of columns of the text frame "name". If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">getColumns(["name"]) -> integer
Gets the number of columns of the text frame "name". If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>setText("text", ["name"])
Sets the text of the text frame "name" to the text of the string "text".
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
for more details. If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">setText("text", ["name"])
Sets the text of the text frame "name" to the text of the string "text".
Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ
for more details. If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>setFont("font", ["name"])
Sets the font of the text frame "name" to "font". If there is some text
selected only the selected text is changed. If "name" is not given the
currently selected item is used.
May throw ValueError if the font cannot be found.
</source>
<translation type="obsolete">setFont("font", ["name"])
Sets the font of the text frame "name" to "font". If there is some text
selected only the selected text is changed. If "name" is not given the
currently selected item is used.
May throw ValueError if the font cannot be found.
</translation>
</message>
<message>
<source>setFontSize(size, ["name"])
Sets the font size of the text frame "name" to "size". "size" is treated
as a value in points. If there is some text selected only the selected text is
changed. "size" must be in the range 1 to 512. If "name" is not given the
currently selected item is used.
May throw ValueError for a font size that's out of bounds.
</source>
<translation type="obsolete">setFontSize(size, ["name"])
Sets the font size of the text frame "name" to "size". "size" is treated
as a value in points. If there is some text selected only the selected text is
changed. "size" must be in the range 1 to 512. If "name" is not given the
currently selected item is used.
May throw ValueError for a font size that's out of bounds.
</translation>
</message>
<message>
<source>setLineSpacing(size, ["name"])
Sets the line spacing ("leading") of the text frame "name" to "size".
"size" is a value in points. If "name" 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, ["name"])
Sets the line spacing ("leading") of the text frame "name" to "size".
"size" is a value in points. If "name" 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, ["name"])
Sets the column gap of the text frame "name" to the value "size". If
"name" 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, ["name"])
Sets the column gap of the text frame "name" to the value "size". If
"name" 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, ["name"])
Sets the number of columns of the text frame "name" to the integer "nr".
If "name" 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, ["name"])
Sets the number of columns of the text frame "name" to the integer "nr".
If "name" 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, ["name"])
Sets the text alignment of the text frame "name" to the specified alignment.
If "name" is not given the currently selected item is used. "align" 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, ["name"])
Sets the text alignment of the text frame "name" to the specified alignment.
If "name" is not given the currently selected item is used. "align" 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, ["name"])
Selects "count" characters of text in the text frame "name" starting from the
character "start". Character counting starts at 0. If "count" is zero, any
text selection will be cleared. If "name" 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, ["name"])
Selects "count" characters of text in the text frame "name" starting from the
character "start". Character counting starts at 0. If "count" is zero, any
text selection will be cleared. If "name" 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(["name"])
Deletes any text in the text frame "name". If there is some text selected,
only the selected text will be deleted. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">deleteText(["name"])
Deletes any text in the text frame "name". If there is some text selected,
only the selected text will be deleted. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>setTextColor("color", ["name"])
Sets the text color of the text frame "name" to the color "color". If there
is some text selected only the selected text is changed. If "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">setTextColor("color", ["name"])
Sets the text colour of the text frame "name" to the colour "color". If there
is some text selected only the selected text is changed. If "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>setTextStroke("color", ["name"])
Set "color" of the text stroke. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">setTextStroke("color", ["name"])
Set "color" of the text stroke. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>setTextShade(shade, ["name"])
Sets the shading of the text color of the object "name" to "shade". If
there is some text selected only the selected text is changed. "shade" must
be an integer value in the range from 0 (lightest) to 100 (full color
intensity). If "name" is not given the currently selected item is
used.
</source>
<translation type="obsolete">setTextShade(shade, ["name"])
Sets the shading of the text colour of the object "name" to "shade". If
there is some text selected only the selected text is changed. "shade" must
be an integer value in the range from 0 (lightest) to 100 (full colour
intensity). If "name" is not given the currently selected item is
used.
</translation>
</message>
<message>
<source>linkTextFrames("fromname", "toname")
Link two text frames. The frame named "fromname" is linked to the
frame named "toname". 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("fromname", "toname")
Link two text frames. The frame named "fromname" is linked to the
frame named "toname". 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("name")
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 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
May throw ScribusException if linking rules are violated.
</source>
<translation type="obsolete">unlinkTextFrames("name")
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 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)'
May throw ScribusException if linking rules are violated.
</translation>
</message>
<message>
<source>traceText(["name"])
Convert the text frame "name" to outlines. If "name" is not given the
currently selected item is used.</source>
<translation type="obsolete">traceText(["name"])
Convert the text frame "name" to outlines. If "name" is not given the
currently selected item is used.</translation>
</message>
<message>
<source>textOverflows(["name", nolinks]) -> integer
Returns the actual number of overflowing characters in text frame "name".
If is nolinks set to non zero value it takes only one frame - it doesn'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(["name", nolinks]) -> integer
Returns the actual number of overflowing characters in text frame "name".
If is nolinks set to non zero value it takes only one frame - it doesn'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(["name"]) -> bool
Returns true if the text frame "name" is a PDF bookmark.
If "name" 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(["name"]) -> bool
Returns true if the text frame "name" is a PDF bookmark.
If "name" 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's maximum steps value to the specified number.
See progressSet.
</source>
<translation type="obsolete">progressTotal(max)
Sets the progress bar's maximum steps value to the specified number.
See progressSet.
</translation>
</message>
<message>
<source>progressSet(nr)
Set the progress bar position to "nr", 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's Qt docs]
</source>
<translation type="obsolete">progressSet(nr)
Set the progress bar position to "nr", 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'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's
useful to call this procedure when you're changing the document, because Scribus
won'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's
useful to call this procedure when you're changing the document, because Scribus
won't automatically notice when you change the document using a script.
</translation>
</message>
<message>
<source>newStyleDialog() -> string
Shows 'Create new paragraph style' dialog. Function returns real
style name or None when user cancels the dialog.
</source>
<translation type="obsolete">newStyleDialog() -> string
Shows 'Create new paragraph style' 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) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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) -> 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_<paper_type> 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'll usually want 1, it's useful to have higher
numbers if you'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(["name"]) -> float
Returns the fill transparency of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getFillTransparency(["name"]) -> float
Returns the fill transparency of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getFillBlendmode(["name"]) -> integer
Returns the fill blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getFillBlendmode(["name"]) -> integer
Returns the fill blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineTransparency(["name"]) -> float
Returns the line transparency of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineTransparency(["name"]) -> float
Returns the line transparency of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>getLineBlendmode(["name"]) -> integer
Returns the line blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</source>
<translation type="obsolete">getLineBlendmode(["name"]) -> integer
Returns the line blendmode of the object "name". If "name"
is not given the currently selected Item is used.
</translation>
</message>
<message>
<source>setLayerLocked("layer", locked)
Sets the layer "layer" to be locked or not. If locked is set to
true the layer will be locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerLocked("layer", locked)
Sets the layer "layer" to be locked or not. If locked is set to
true the layer will be locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerLocked("layer") -> bool
Returns whether the layer "layer" is locked or not, a value of True means
that the layer "layer" is editable, a value of False means that the layer
"layer" is locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerLocked("layer") -> bool
Returns whether the layer "layer" is locked or not, a value of True means
that the layer "layer" is editable, a value of False means that the layer
"layer" is locked.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerOutlined("layer") -> bool
Returns whether the layer "layer" is outlined or not, a value of True means
that the layer "layer" is outlined, a value of False means that the layer
"layer" is normal.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerOutlined("layer") -> bool
Returns whether the layer "layer" is outlined or not, a value of True means
that the layer "layer" is outlined, a value of False means that the layer
"layer" is normal.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerFlow("layer") -> bool
Returns whether text flows around objects on layer "layer", 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't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerFlow("layer") -> bool
Returns whether text flows around objects on layer "layer", 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't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getLayerBlendmode("layer") -> int
Returns the "layer" layer blendmode,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">getLayerBlendmode("layer") -> int
Returns the "layer" layer blendmode,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>getLayerTransparency("layer") -> float
Returns the "layer" layer transparency,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">getLayerTransparency("layer") -> float
Returns the "layer" layer transparency,
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>textFlowMode("name" [, state])
Enables/disables "Text Flows Around Frame" feature for object "name".
Called with parameters string name and optional int "state" (0 <= state <= 3).
Setting "state" to 0 will disable text flow.
Setting "state" to 1 will make text flow around object frame.
Setting "state" to 2 will make text flow around bounding box.
Setting "state" to 3 will make text flow around contour line.
If "state" is not passed, text flow is toggled.
</source>
<translation type="obsolete">textFlowMode("name" [, state])
Enables/disables "Text Flows Around Frame" feature for object "name".
Called with parameters string name and optional int "state" (0 <= state <= 3).
Setting "state" to 0 will disable text flow.
Setting "state" to 1 will make text flow around object frame.
Setting "state" to 2 will make text flow around bounding box.
Setting "state" to 3 will make text flow around contour line.
If "state" is not passed, text flow is toggled.
</translation>
</message>
<message>
<source>duplicateObject(["name"]) -> string
creates a Duplicate of the selected Object (or Selection Group).
</source>
<translation type="obsolete">duplicateObject(["name"]) -> string
creates a Duplicate of the selected Object (or Selection Group).
</translation>
</message>
<message>
<source>setInfo("author", "info", "description") -> bool
Sets the document information. "Author", "Info", "Description" are
strings.
</source>
<translation type="obsolete">setInfo("author", "info", "description") -> bool
Sets the document information. "Author", "Info", "Description" are
strings.
</translation>
</message>
<message>
<source>getPageType() -> 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() -> 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(["name"]) -> integer
Returns the number of lines of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextLines(["name"]) -> integer
Returns the number of lines of the text in the text frame "name".
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>defineColor("name", c, m, y, k)
Defines a new color "name". 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("name", c, m, y, k)
Defines a new colour "name". 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(["name"]) -> integer
Returns the corner radius of the object "name". The radius is
expressed in points. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">getCornerRadius(["name"]) -> integer
Returns the corner radius of the object "name". The radius is
expressed in points. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>getPosition(["name"]) -> (x,y)
Returns a (x, y) tuple with the position of the object "name".
If "name" is not given the currently selected item is used.
The position is expressed in the actual measurement unit of the document
- see UNIT_<type> for reference.
</source>
<translation type="obsolete">getPosition(["name"]) -> (x,y)
Returns a (x, y) tuple with the position of the object "name".
If "name" is not given the currently selected item is used.
The position is expressed in the actual measurement unit of the document
- see UNIT_<type> for reference.
</translation>
</message>
<message>
<source>rotateObjectAbs(rot [, "name"])
Sets the rotation of the object "name" to "rot". Positive values
mean counter clockwise rotation. If "name" is not given the currently
selected item is used.
</source>
<translation type="obsolete">rotateObjectAbs(rot [, "name"])
Sets the rotation of the object "name" to "rot". Positive values
mean counter clockwise rotation. If "name" is not given the currently
selected item is used.
</translation>
</message>
<message>
<source>setLayerPrintable("layer", printable)
Sets the layer "layer" to be printable or not. If is the
printable set to false the layer won't be printed.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerPrintable("layer", printable)
Sets the layer "layer" to be printable or not. If is the
printable set to false the layer won't be printed.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>isLayerVisible("layer") -> bool
Returns whether the layer "layer" is visible or not, a value of True means
that the layer "layer" is visible, a value of False means that the layer
"layer" is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">isLayerVisible("layer") -> bool
Returns whether the layer "layer" is visible or not, a value of True means
that the layer "layer" is visible, a value of False means that the layer
"layer" is invisible.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>insertText("text", pos, ["name"])
Inserts the text "text" at the position "pos" into the text frame "name".
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 "name" is
not given the currently selected Item is used.
May throw IndexError for an insertion out of bounds.
</source>
<translation type="obsolete">insertText("text", pos, ["name"])
Inserts the text "text" at the position "pos" into the text frame "name".
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 "name" 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_<type>
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_<type>
constants.
</translation>
</message>
<message>
<source>setLayerOutlined("layer", outline)
Sets the layer "layer" to be locked or not. If outline is set to
true the layer will be displayed outlined.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerOutlined("layer", outline)
Sets the layer "layer" to be locked or not. If outline is set to
true the layer will be displayed outlined.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerFlow("layer", flow)
Sets the layers "layer" 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't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerFlow("layer", flow)
Sets the layers "layer" 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't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerBlendmode("layer", blend)
Sets the layers "layer" blendmode to blend.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerBlendmode("layer", blend)
Sets the layers "layer" blendmode to blend.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setLayerTransparency("layer", trans)
Sets the layers "layer" transparency to trans.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</source>
<translation type="obsolete">setLayerTransparency("layer", trans)
Sets the layers "layer" transparency to trans.
May raise NotFoundError if the layer can't be found.
May raise ValueError if the layer name isn't acceptable.
</translation>
</message>
<message>
<source>setFillTransparency(transparency, ["name"])
Sets the fill transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setFillTransparency(transparency, ["name"])
Sets the fill transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setFillBlendmode(blendmode, ["name"])
Sets the fill blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setFillBlendmode(blendmode, ["name"])
Sets the fill blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineTransparency(transparency, ["name"])
Sets the line transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineTransparency(transparency, ["name"])
Sets the line transparency of the object "name" to transparency
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>setLineBlendmode(blendmode, ["name"])
Sets the line blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</source>
<translation type="obsolete">setLineBlendmode(blendmode, ["name"])
Sets the line blendmode of the object "name" to blendmode
If "name" is not given the currently selected item is used.
</translation>
</message>
<message>
<source>placeEPS("filename", x, y)
Places the EPS "filename" 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("filename", x, y)
Places the EPS "filename" 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("filename", x, y)
Places the SXD "filename" 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("filename", x, y)
Places the SXD "filename" 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("filename", x, y)
Places the ODG "filename" 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("filename", x, y)
Places the ODG "filename" 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("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
Shows a File Open dialog box with the caption "caption". Files are filtered
with the filter string "filter". A default filename or file path can also
supplied, leave this string empty when you don'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 "Save As" dialog
otherwise it acts like a "File Open Dialog". 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 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
Refer to the Qt-Documentation for QFileDialog for details on filters.
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
</source>
<translation type="obsolete">fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename
Shows a File Open dialog box with the caption "caption". Files are filtered
with the filter string "filter". A default filename or file path can also
supplied, leave this string empty when you don'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 "Save As" dialog
otherwise it acts like a "File Open Dialog". 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 'comment (*.type *.type2 ...)'.
For example 'Images (*.png *.xpm *.jpg)'.
Refer to the Qt-Documentation for QFileDialog for details on filters.
Example: fileDialog('Open input', 'CSV files (*.csv)')
Example: fileDialog('Save report', defaultname='report.txt', issave=True)
</translation>
</message>
<message>
<source>getLineJoin(["name"]) -> integer (see constants)
Returns the line join style of the object "name". If "name" is not given
the currently selected item is used. The join types are:
JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND
</source>
<translation type="obsolete">getLineJoin(["name"]) -> integer (see constants)
Returns the line join style of the object "name". If "name" 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 [, "name"])
Rotates the object "name" by "rot" 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 "name" is not
given the currently selected item is used.
</source>
<translation type="obsolete">rotateObject(rot [, "name"])
Rotates the object "name" by "rot" 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 "name" is not
given the currently selected item is used.
</translation>
</message>
<message>
<source>gotoPage(nr)
Moves to the page "nr" (that is, makes the current page "nr"). Note that
gotoPage doesn't (currently) change the page the user'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 "nr" (that is, makes the current page "nr"). Note that
gotoPage doesn't (currently) change the page the user'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("toggle", ["name"])
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not.
If "name" 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("toggle", ["name"])
Sets whether (toggle = 1) the text frame "name" is a bookmark nor not.
If "name" 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("fromDoc", (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 "Page->Import" 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("fromDoc", (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 "Page->Import" 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:
"name" [required] -> name of the char style to create
"font" [optional] -> name of the font to use
fontsize [optional] -> font size to set (double)
"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):
-> inherit
-> bold
-> italic
-> underline
-> underlinewords
-> strike
-> superscript
-> subscript
-> outline
-> shadowed
-> allcaps
-> smallcaps
"fillcolor" [optional], "fillshade" [optional] -> specify fill options
"strokecolor" [optional], "strokeshade" [optional] -> specify stroke options
baselineoffset [optional] -> offset of the baseline
shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used
outlinewidth [optional] -> width of the outline if used
underlineoffset [optional], underlinewidth [optional] -> underline options if used
strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used
scaleh [optional], scalev [optional] -> scale of the chars
tracking [optional] -> tracking of the text
"language" [optional] -> language code
</source>
<translation type="obsolete">createCharStyle(...)Creates a character style. This function takes the following keyword parameters:"name" [required] -> name of the char style to create"font" [optional] -> name of the font to usefontsize [optional] -> font size to set (double)"features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!):-> inherit-> bold-> italic-> underline-> underlinewords-> strike-> superscript-> subscript-> outline-> shadowed-> allcaps-> smallcaps"fillcolour" [optional], "fillshade" [optional] -> specify fill options"strokecolour" [optional], "strokeshade" [optional] -> specify stroke optionsbaselineoffset [optional] -> offset of the baselineshadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if usedoutlinewidth [optional] -> width of the
outline if usedunderlineoffset [optional], underlinewidth [optional] -> underline options if usedstrikethruoffset [optional], strikethruwidth [optional] -> strikethru options if usedscaleh [optional], scalev [optional] -> scale of the charstracking [optional] -> tracking of the text"language" [optional] -> language code</translation>
</message>
<message>
<source>hyphenateText(["name"]) -> bool
Does hyphenation on text frame "name".
If "name" 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(["name"]) -> boolDoes hyphenation on text frame "name".If "name" 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(["name"]) -> bool
Does dehyphenation on text frame "name".
If "name" 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(["name"]) -> boolDoes dehyphenation on text frame "name".If "name" 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:
"name" [required] -> specifies the name of the paragraphstyle to create
linespacingmode [optional] -> specifies the linespacing mode; possible modes are:
fixed linespacing: 0
automatic linespacing: 1
baseline grid linespacing: 2
linespacing [optional] -> specifies the linespacing if using fixed linespacing
alignment [optional] -> specifies the alignment of the paragraph
-> left: 0
-> center: 1
-> right: 2
-> justify: 3
-> extend: 4
leftmargin [optional], rightmargin [optional] -> specify the margin
gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs
firstindent [optional] -> the indent of the first line
hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)
dropcaplines [optional] -> height (in lines) of the caps if used
dropcapoffset [optional] -> offset of the caps if used
"charstyle" [optional] -> char style to use
</source>
<translation type="obsolete">createParagraphStyle(...)Creates a paragraph style. This function takes the following keyword parameters:"name" [required] -> specifies the name of the paragraphstyle to createlinespacingmode [optional] -> specifies the linespacing mode; possible modes are:fixed linespacing: 0automatic linespacing: 1baseline grid linespacing: 2linespacing [optional] -> specifies the linespacing if using fixed linespacingalignment [optional] -> specifies the alignment of the paragraph-> left: 0-> center: 1-> right: 2-> justify: 3-> extend: 4leftmargin [optional], rightmargin [optional] -> specify the margingapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphsfirstindent [optional] -> the indent of the first linehasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no)dropcaplines [optional] -> height (in lines) of the caps if useddropcapoffset [optiona
l] -> offset of the caps if used"charstyle" [optional] -> char style to use</translation>
</message>
<message>
<source>getTextDistances(["name"]) -> tuple
Returns the text distances of the text frame "name" expressed in points. The
distances are returned as a tuple like (left, right, top, bottom). If "name"
is not given the currently selected item is used.
</source>
<translation type="obsolete">getTextDistances(["name"]) -> tupleReturns the text distances of the text frame "name" expressed in points. Thedistances are returned as a tuple like (left, right, top, bottom). If "name"is not given the currently selected item is used.</translation>
</message>
<message>
<source>setTextDistances(left, right, top, bottom, ["name"])
Sets the text distances of the text frame "name" to the values "left"
"right", "top" and "bottom". If "name" 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, ["name"])Sets the text distances of the text frame "name" to the values "left""right", "top" and "bottom". If "name" 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="342"/>
<source>Importing: %1</source>
<translation>Importazione: %1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="345"/>
<source>Analyzing File:</source>
<translation>Analisi file:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="2348"/>
<source>Group%1</source>
<translation>Gruppo%1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ai/importai.cpp" line="3448"/>
<source>Generating Items</source>
<translation>Generazione elementi</translation>
</message>
</context>
<context>
<name>About</name>
<message>
<location filename="../../../scribus/ui/about.cpp" line="300"/>
<source>Contributions from:</source>
<translation>Collaborazione di:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="182"/>
<source>&About</source>
<translation>&Informazioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="195"/>
<source>A&uthors</source>
<translation>A&utori</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="209"/>
<source>&Translations</source>
<translation>&Traduzioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="220"/>
<source>&Online</source>
<translation>&Online</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="259"/>
<source>&Close</source>
<translation>&Chiudi</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="292"/>
<source>Development Team:</source>
<translation>Team di sviluppo:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="302"/>
<source>Official Documentation:</source>
<translation>Documentazione ufficiale:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="306"/>
<source>Other Documentation:</source>
<translation>Altra documentazione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="340"/>
<source>Homepage</source>
<translation>Sito Web</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="342"/>
<source>Online Reference</source>
<translation>Documentazione online</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="346"/>
<source>Bugs and Feature Requests</source>
<translation>Segnalazioni errori e richiesta nuove funzioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="350"/>
<source>Mailing List</source>
<translation>Lista di discussione</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="324"/>
<source>Official Translations and Translators:</source>
<translation>Traduzioni e traduttori ufficiali:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="326"/>
<source>Previous Translation Contributors:</source>
<translation>Collaboratori traduzioni precedenti:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="97"/>
<source>About Scribus %1</source>
<translation>Informazioni su Scribus%1</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="344"/>
<source>Wiki</source>
<translation>Wiki</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="125"/>
<source>%1 %2 %3</source>
<translation>%1 %2 %3</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="133"/>
<source>%3-%2-%1 %4 %5</source>
<translation>%3-%2-%1 %4 %5</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="177"/>
<source>Using Ghostscript version %1</source>
<translation>Uso versione %1 di Ghostscript</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="179"/>
<source>No Ghostscript version available</source>
<translation>Nessuna versione Ghostscript disponibile</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="180"/>
<source>Build ID:</source>
<translation>Build ID:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="294"/>
<source>Mac OS&#174; X Aqua Port:</source>
<translation>Versione per Mac OS&#174; X Aqua:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="298"/>
<source>Windows&#174; Port:</source>
<translation>Versione per Windows&#174;:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="312"/>
<source>Tango Project Icons:</source>
<translation>Icone Progetto Tango:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="223"/>
<source>&Updates</source>
<translation>A&ggiornamenti</translation>
</message>
<message>
<source>Check for &Updates</source>
<translation type="obsolete">Check for &Updates</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="271"/>
<source>Check for updates to Scribus. No data from your machine will be transferred off it.</source>
<translation>Controlla la disponibilità di aggiornamenti per Scribus. Nessun dato sarà trasferito dal tuo computer.</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="296"/>
<source>OS/2&#174;/eComStation&#8482; Port:</source>
<translation>Versione per OS/2&#174;/eComStation&#8482;:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="310"/>
<source>Splash Screen:</source>
<translation>Schermata d'avvio:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="267"/>
<source>This panel shows the version, build date and compiled in library support in Scribus.</source>
<translation>Questo pannello mostra la versione, la data della build e le librerie utilizzate durante la compilazione di Scribus. </translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="268"/>
<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>I simboli C-C-T-F equivalgono ai seguenti supporti: C=littlecms C=CUPS T=TIFF F=Fontconfig. L'ultima lettera indica il motore di rendering C=cairo o Q=Qt.</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="269"/>
<source>Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</source>
<translation>La mancanza di supporto per una libreria è indicata da un asterisco (*). Viene inoltre indicata la versione di Ghostscript rilevata da Scribus.</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="270"/>
<source>The Windows version does not use fontconfig or CUPS libraries.</source>
<translation>La versione per WIndows non utilizza fontconfig né le librerie CUPS.</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="180"/>
<source><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></source>
<translation><p align="center"><b>%1 %2</b></p><p align="center">%3<br>%4 %5<br>%6</p></translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="180"/>
<source>Scribus Version</source>
<translation>Versione di Scribus</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="227"/>
<location filename="../../../scribus/ui/about.cpp" line="649"/>
<source>Check for Updates</source>
<translation>Controlla aggiornamenti</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="647"/>
<source>Abort Update Check</source>
<translation>Annulla controllo aggiornamenti</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="348"/>
<source>Developer Blog</source>
<translation>Blog degli sviluppatori</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="234"/>
<source>&Licence</source>
<translation>&Licenza</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="243"/>
<source>Unable to open licence file. Please check your install directory or the Scribus website for licencing information.</source>
<translation>Impossibile aprire il file della licenza. Si prega di controllare la cartella di installazione o il sito Web di Scribus per informazioni sulla licenza.</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="304"/>
<source>Doc Translators:</source>
<translation>Traduttori della documentazione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="308"/>
<source>Webmasters:</source>
<translation>Webmaster:</translation>
</message>
<message>
<location filename="../../../scribus/ui/about.cpp" line="443"/>
<location filename="../../../scribus/ui/about.cpp" line="557"/>
<location filename="../../../scribus/ui/about.cpp" line="624"/>
<source>Unable to open %1 file. Please check your install directory or the Scribus website for %1 information.</source>
<translation>Impossibile aprire il file %1. Si prega di controllare la cartella di installazione o il sito Web di Scribus per informazioni su %1.</translation>
</message>
</context>
<context>
<name>AboutPlugins</name>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="68"/>
<source>Filename:</source>
<translation>Nome file:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="69"/>
<source>Version:</source>
<translation>Versione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="72"/>
<source>Enabled:</source>
<translation>Abilitato:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="73"/>
<source>Release Date:</source>
<translation>Data rilascio:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="80"/>
<source>Description:</source>
<translation>Descrizione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="81"/>
<source>Author(s):</source>
<translation>Autore(i):</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="82"/>
<source>Copyright:</source>
<translation>Copyright:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.cpp" line="83"/>
<source>License:</source>
<translation>Licenza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aboutplugins.ui" line="13"/>
<source>Scribus: About Plug-ins</source>
<translation>Scribus: Informazioni Estensioni</translation>
</message>
</context>
<context>
<name>ActionManager</name>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1493"/>
<source>&Image Effects</source>
<translation>Effetti &immagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1494"/>
<source>&Tabulators...</source>
<translation>&Tabulatori...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1419"/>
<source>&New</source>
<translation>&Nuovo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1421"/>
<source>&Open...</source>
<translation>A&pri...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1422"/>
<source>&Close</source>
<translation>&Chiudi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1423"/>
<source>&Save</source>
<translation>&Salva</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1424"/>
<source>Save &As...</source>
<translation>Salva c&ome...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1425"/>
<source>Re&vert to Saved</source>
<translation>Ritorna al documento sal&vato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1426"/>
<source>Collect for O&utput...</source>
<translation>Ra&ggruppa per l'output...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1427"/>
<source>Get Text...</source>
<translation>Carica testo...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1428"/>
<source>Append &Text...</source>
<translation>Accoda &Testo...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1429"/>
<source>Get Image...</source>
<translation>Carica immagine...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1432"/>
<source>Save &Text...</source>
<translation>Salva il &Testo...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1434"/>
<source>Save as P&DF...</source>
<translation>Salva come P&DF...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1436"/>
<source>Document &Setup...</source>
<translation>Impostazioni do&cumento...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1439"/>
<source>&Print...</source>
<translation>Stam&pa...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1441"/>
<source>&Quit</source>
<translation>&Esci</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1443"/>
<source>&Undo</source>
<translation>Ann&ulla</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1444"/>
<source>&Redo</source>
<translation>&Ripristina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1445"/>
<source>&Item Action Mode</source>
<translation>Modalità cronologia a&zioni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1446"/>
<source>Cu&t</source>
<translation>&Taglia</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1447"/>
<location filename="../../../scribus/actionmanager.cpp" line="1449"/>
<source>&Copy</source>
<translation>&Copia</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1448"/>
<location filename="../../../scribus/actionmanager.cpp" line="1450"/>
<source>&Paste</source>
<translation>Inco&lla</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1452"/>
<source>Paste Image from Clipboard</source>
<translation>Incolla immagine dagli Appunti</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1454"/>
<source>Select &All</source>
<translation>Seleziona t&utto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1456"/>
<source>&Deselect All</source>
<translation>&Deseleziona tutto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1457"/>
<source>&Search/Replace...</source>
<translation>&Trova/Sostituisci...</translation>
</message>
<message>
<source>C&olors...</source>
<translation type="obsolete">C&olori...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1463"/>
<source>Marks...</source>
<translation>Note...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1464"/>
<source>Notes Styles...</source>
<translation>Stili note...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1465"/>
<source>&Master Pages...</source>
<translation>Pagine &mastro...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1438"/>
<source>P&references...</source>
<translation>Pr&eferenze...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1473"/>
<source>%1 pt</source>
<translation>%1 pt</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1475"/>
<source>&Other...</source>
<translation>A&ltro...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1476"/>
<source>&Left</source>
<translation>Sinist&ra</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1477"/>
<source>&Center</source>
<translation>&Centro</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1478"/>
<source>&Right</source>
<translation>&Destra</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1479"/>
<source>&Block</source>
<translation>&Giustificato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1480"/>
<source>&Forced</source>
<translation>&Forzato</translation>
</message>
<message>
<source>&%1 %</source>
<translation type="obsolete">&%1 %</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1482"/>
<source>&Normal</source>
<translation>&Normale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1483"/>
<source>&Underline</source>
<translation>&Sottolineato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1484"/>
<source>Underline &Words</source>
<translation>Sottolinea &parole</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1485"/>
<source>&Strike Through</source>
<translation>&Barrato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1486"/>
<source>&All Caps</source>
<translation>&Tutto maiuscolo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1487"/>
<source>Small &Caps</source>
<translation>Maius&coletto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1488"/>
<source>Su&perscript</source>
<translation>Ap&ice</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1489"/>
<source>Su&bscript</source>
<translation>Pe&dice</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1497"/>
<source>D&uplicate</source>
<translation>Du&plica</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1498"/>
<source>&Multiple Duplicate</source>
<translation>Duplicazione &multipla</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1499"/>
<source>&Transform</source>
<translation>&Trasforma</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1500"/>
<source>&Delete</source>
<translation>&Elimina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1501"/>
<source>&Group</source>
<translation>Ragg&ruppa</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1502"/>
<source>&Ungroup</source>
<translation>&Separa</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1504"/>
<source>Is &Locked</source>
<translation>B&loccato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1505"/>
<source>Si&ze is Locked</source>
<translation>&Dimensione bloccata</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1509"/>
<source>Lower to &Bottom</source>
<translation>Metti in fon&do</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1510"/>
<source>Raise to &Top</source>
<translation>Metti in pri&mo piano</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1511"/>
<source>&Lower</source>
<translation>A&bbassa</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1512"/>
<source>&Raise</source>
<translation>Al&za</translation>
</message>
<message>
<source>Send to S&crapbook</source>
<translation type="obsolete">Aggiungi alla &biblioteca</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1515"/>
<source>&Attributes...</source>
<translation>&Attributi...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1517"/>
<source>I&mage Visible</source>
<translation>I&mmagine visibile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1519"/>
<source>Insert Rows...</source>
<translation>Inserisci righe...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1520"/>
<source>Insert Columns...</source>
<translation>Inserisci colonne...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1521"/>
<source>Delete Rows</source>
<translation>Elimina righe</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1522"/>
<source>Delete Columns</source>
<translation>Elimina colonne</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1523"/>
<source>Merge Cells</source>
<translation>Unisci celle</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1524"/>
<source>Split Cells...</source>
<translation>Dividi celle...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1525"/>
<source>Set Row Heights...</source>
<translation>Imposta altezza riga...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1526"/>
<source>Set Column Widths...</source>
<translation>Imposta larghezza colonna...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1527"/>
<source>Distribute Rows Evenly</source>
<translation>Ripartisci uniformemente righe</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1528"/>
<source>Distribute Columns Evenly</source>
<translation>Ripartisci uniformemente colonne</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1529"/>
<source>Adjust Frame to Table</source>
<translation>Adatta cornice alla tabella</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1530"/>
<source>Adjust Table to Frame</source>
<translation>Adatta tabella alla cornice</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1531"/>
<source>Adjust Frame Height to Text</source>
<translation>Adatta altezza cornice al testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1534"/>
<source>Embed Image</source>
<translation>Incorpora immagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1539"/>
<source>Is PDF &Bookmark</source>
<translation>Segnali&bro PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1540"/>
<source>Is PDF A&nnotation</source>
<translation>A&nnotazione PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1541"/>
<source>Annotation P&roperties</source>
<translation>P&roprietà annotazione</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1542"/>
<source>Field P&roperties</source>
<translation>P&roprietà campo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1543"/>
<source>&Edit Shape...</source>
<translation>M&odifica forma...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1544"/>
<source>&Attach Text to Path</source>
<translation>Un&isci testo a tracciato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1545"/>
<source>&Detach Text from Path</source>
<translation>S&epara testo da tracciato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1546"/>
<source>&Combine Polygons</source>
<translation>&Combina poligoni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1547"/>
<source>Split &Polygons</source>
<translation>Dividi poli&goni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1548"/>
<source>&Bezier Curve</source>
<translation>Curva di Bé&zier</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1549"/>
<source>&Image Frame</source>
<translation>Cornice i&mmagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1551"/>
<source>&Polygon</source>
<translation>&Poligono</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1552"/>
<source>&Text Frame</source>
<translation>Cornice &testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1553"/>
<source>&Symbol</source>
<translation>&Simbolo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1554"/>
<source>Unweld items</source>
<translation>Elimina saldatura elementi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1555"/>
<source>Weld items</source>
<translation>Salda elementi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1556"/>
<source>Edit weld item</source>
<translation>Modifica elemento saldato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1559"/>
<source>&Frames...</source>
<translation>&Cornici...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1560"/>
<source>&Glyph...</source>
<translation>G&lifi...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1561"/>
<source>Sample Text</source>
<translation>Testo di esempio</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1563"/>
<source>Anchor Mark</source>
<translation>Nota di riferimento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1564"/>
<source>Variable Text</source>
<translation>Testo variabile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1565"/>
<source>Reference to Item</source>
<translation>Riferimento a oggetto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1566"/>
<source>Reference to Mark</source>
<translation>Riferimento a nota</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1567"/>
<source>Foot/Endnote</source>
<translation>Note a piè pagina/di chiusura</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1569"/>
<source>Edit Mark</source>
<translation>Modifica nota</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1570"/>
<source>Update Marks</source>
<translation>Aggiorna note</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1573"/>
<source>&Insert...</source>
<translation>&Inserisci...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1574"/>
<source>Im&port...</source>
<translation>Im&porta...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1575"/>
<source>&Delete...</source>
<translation>&Elimina...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1576"/>
<source>&Copy...</source>
<translation>&Copia...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1577"/>
<source>&Move...</source>
<translation>&Sposta...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1578"/>
<source>&Apply Master Page...</source>
<translation>&Applica pagina mastro...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1580"/>
<source>Manage &Guides...</source>
<translation>&Gestione linee guida...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1586"/>
<source>&50%</source>
<translation>&50%</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1587"/>
<source>&75%</source>
<translation>&75%</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1588"/>
<source>&100%</source>
<translation>&100%</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1589"/>
<source>&200%</source>
<translation>&200%</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1592"/>
<source>Show &Margins</source>
<translation>Mostra &margini</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1594"/>
<source>Show &Frames</source>
<translation>Mostra &cornici</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1596"/>
<source>Show &Images</source>
<translation>Mostra &immagini</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1597"/>
<source>Show &Grid</source>
<translation>Mostra &griglia</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1598"/>
<source>Show G&uides</source>
<translation>Mostra g&uide</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1600"/>
<source>Show &Baseline Grid</source>
<translation>Mostra griglia tipogra&fica</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1601"/>
<source>Show &Text Chain</source>
<translation>Most&ra collegamenti cornici</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1605"/>
<source>Sn&ap to Grid</source>
<translation>Aggancia a&lla griglia</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1606"/>
<source>Sna&p to Guides</source>
<translation>Agga&ncia alle guide</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1607"/>
<source>Snap to Items</source>
<translation>Aggancia a elementi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1612"/>
<source>&Properties</source>
<translation>&Proprietà</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1614"/>
<source>&Scrapbook</source>
<translation>&Biblioteca</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1615"/>
<source>&Layers</source>
<translation>&Livelli</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1617"/>
<source>&Bookmarks</source>
<translation>Segnali&bri</translation>
</message>
<message>
<source>&°</source>
<translation type="obsolete">&°</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1619"/>
<source>Action &History</source>
<translation>Cronologia a&zioni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1620"/>
<source>Preflight &Verifier</source>
<translation>&Verifica preliminare</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1624"/>
<source>&Tools</source>
<translation>&Strumenti</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1625"/>
<source>P&DF Tools</source>
<translation>Strumenti P&DF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1628"/>
<source>Select Item</source>
<translation>Seleziona elemento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1629"/>
<source>Rotate Item</source>
<translation>Ruota elemento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1630"/>
<source>Zoom in or out</source>
<translation>Aumenta o riduci zoom</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1631"/>
<source>Zoom in</source>
<translation>Aumenta zoom</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1632"/>
<source>Zoom out</source>
<translation>Riduci zoom</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1633"/>
<source>Edit Contents of Frame</source>
<translation>Modifica contenuto cornice</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1635"/>
<source>Link Text Frames</source>
<translation>Collega cornici testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1636"/>
<source>Unlink Text Frames</source>
<translation>Scollega cornici testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1639"/>
<source>&Eye Dropper</source>
<translation>S&elettore colore</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1640"/>
<source>Copy Item Properties</source>
<translation>Copia proprietà elemento</translation>
</message>
<message>
<source>&Manage Pictures</source>
<translation type="obsolete">&Manage Pictures</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1670"/>
<source>&Hyphenate Text</source>
<translation>&Testo sillabato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1672"/>
<source>&Generate Table Of Contents</source>
<translation>&Genera sommario</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1680"/>
<source>&About Scribus</source>
<translation>Informazioni su &Scribus</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1682"/>
<source>About &Qt</source>
<translation>Informazioni su &Qt</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1683"/>
<source>Toolti&ps</source>
<translation>Su&ggerimenti</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1685"/>
<source>Scribus &Manual...</source>
<translation>&Manuale di Scribus...</translation>
</message>
<message>
<source>Smart &Hyphen</source>
<translation type="obsolete">Sillaba&zione manuale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1705"/>
<source>Non Breaking &Space</source>
<translation>Spazio pro&tetto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1706"/>
<source>Page &Number</source>
<translation>Nume&ro pagina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1713"/>
<source>Copyright</source>
<translation>Copyright</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1714"/>
<source>Registered Trademark</source>
<translation>Marchio registrato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1715"/>
<source>Trademark</source>
<translation>Marchio depositato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1717"/>
<source>Bullet</source>
<translation>Punto nero</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1719"/>
<source>Em Dash</source>
<translation>Trattino lungo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1720"/>
<source>En Dash</source>
<translation>Trattino medio</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1721"/>
<source>Figure Dash</source>
<translation>Trattino numerico</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1722"/>
<source>Quotation Dash</source>
<translation>Trattino citazione</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1693"/>
<source>Toggle Palettes</source>
<translation>Mostra tavolozze</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1491"/>
<source>S&hadow</source>
<translation>Ombre&ggiato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1536"/>
<source>&Low Resolution</source>
<translation>&Bassa risoluzione</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1537"/>
<source>&Normal Resolution</source>
<translation>Risolu&zione normale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1538"/>
<source>&Full Resolution</source>
<translation>Alta riso&luzione</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1458"/>
<source>Edit Image...</source>
<translation>Modifica immagine...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1518"/>
<source>&Update Image</source>
<translation>Ag&giorna Immagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1532"/>
<source>Adjust Frame to Image</source>
<translation>Adatta cornice all'immagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1535"/>
<source>Extended Image Properties</source>
<translation>Ulteriori proprietà immagini</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1602"/>
<source>Show Control Characters</source>
<translation>Mostra caratteri di controllo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1621"/>
<source>&Align and Distribute</source>
<translation>&Allinea e distribuisci</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1634"/>
<source>Edit Text...</source>
<translation>Modifica testo...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1708"/>
<source>New Line</source>
<translation>Interruzione riga</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1709"/>
<source>Frame Break</source>
<translation>Interruzione cornice</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1710"/>
<source>Column Break</source>
<translation>Interruzione colonna</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1704"/>
<source>Non Breaking Dash</source>
<translation>Trattino protetto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1694"/>
<source>Toggle Guides</source>
<translation>Mostra guide</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1616"/>
<source>&Arrange Pages</source>
<translation>&Disposizione pagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1671"/>
<source>Dehyphenate Text</source>
<translation>Togli sillabazione</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1581"/>
<source>Manage Page Properties...</source>
<translation>Gestione proprietà pagina...</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="1440"/>
<source>Print Previe&w</source>
<translation>Anteprima di &stampa</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1466"/>
<source>&JavaScripts...</source>
<translation>&JavaScript...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1579"/>
<source>Convert to Master Page...</source>
<translation>Converti in pagina mastro...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1676"/>
<source>&Cascade</source>
<translation>S&ovrapposte</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1677"/>
<source>&Tile</source>
<translation>A&ffiancate</translation>
</message>
<message>
<source>&About Plug-ins</source>
<translation type="obsolete">&About Plug-ins</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1516"/>
<source>More Info...</source>
<translation>Ulteriori informazioni...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1506"/>
<source>&Printing Enabled</source>
<translation>Stam&pa abilitata</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1460"/>
<source>Colors and Fills...</source>
<translation>Colori e Riempimenti...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1503"/>
<source>Adjust Group</source>
<translation>Adatta raggruppamento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1507"/>
<source>&Flip Horizontally</source>
<translation>Ri&fletti</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1508"/>
<source>&Flip Vertically</source>
<translation>Ri&balta</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1513"/>
<source>Patterns</source>
<translation type="unfinished">Motivi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1514"/>
<source>Inline Items</source>
<translation type="unfinished">Elementi inline</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1603"/>
<source>Show Rulers</source>
<translation>Mostra righelli</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1613"/>
<source>&Outline</source>
<comment>Document Outline Palette</comment>
<translation>Sc&hema documento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1623"/>
<source>Inline Frames</source>
<translation>Cornici inline</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1716"/>
<source>Solidus</source>
<translation>Barra obliqua</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1718"/>
<source>Middle Dot</source>
<translation>Punto mediano</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1743"/>
<source>En Space</source>
<translation>Semi-spazio</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1744"/>
<source>Em Space</source>
<translation>Spazio lungo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1745"/>
<source>Thin Space</source>
<translation>Spazio sottile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1746"/>
<source>Thick Space</source>
<translation>Spazio spesso</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1747"/>
<source>Mid Space</source>
<translation>Spazio medio</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1748"/>
<source>Hair Space</source>
<translation>Spazio ultrasottile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1750"/>
<source>ff</source>
<translation>ff</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1751"/>
<source>fi</source>
<translation>fi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1752"/>
<source>fl</source>
<translation>fl</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1753"/>
<source>ffi</source>
<translation>ffi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1754"/>
<source>ffl</source>
<translation>ffl</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1755"/>
<source>ft</source>
<translation>ft</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1756"/>
<source>st</source>
<translation>st</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1462"/>
<source>S&tyles...</source>
<translation>S&tili...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1490"/>
<source>&Outline</source>
<comment>type effect</comment>
<translation>&Contornato</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1550"/>
<source>&Outlines</source>
<comment>Convert to oulines</comment>
<translation>C&ontorni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1451"/>
<source>Paste (&Absolute)</source>
<translation>Incolla (&Assoluto)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1453"/>
<source>C&lear</source>
<translation>Pu&lisci</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1655"/>
<source>Insert PDF Push Button</source>
<translation>Inserisci pulsante PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1657"/>
<source>Insert PDF Text Field</source>
<translation>Inserisci campo di testo PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1658"/>
<source>Insert PDF Check Box</source>
<translation>Inserisci casella di controllo PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1659"/>
<source>Insert PDF Combo Box</source>
<translation>Inserisci casella combinata PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1660"/>
<source>Insert PDF List Box</source>
<translation>Inserisci lista PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1661"/>
<source>Insert Text Annotation</source>
<translation>Inserisci annotazione PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1662"/>
<source>Insert Link Annotation</source>
<translation>Inserisci annotazione collegamento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1433"/>
<source>Save as &EPS...</source>
<translation>Salva pagina in &EPS...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1599"/>
<source>Show Text Frame Columns</source>
<translation>Mostra colonne della cornice testo</translation>
</message>
<message>
<source>&Frame...</source>
<translation type="obsolete">&Cornice...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1591"/>
<source>Preview Mode</source>
<translation>Anteprima</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1595"/>
<source>Show Layer Indicators</source>
<translation>Mostra indicatori livello</translation>
</message>
<message>
<source>Patterns...</source>
<translation type="obsolete">Motivi...</translation>
</message>
<message>
<source>Send to Patterns</source>
<translation type="obsolete">Invia ai motivi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1562"/>
<source>Sticky Tools</source>
<translatorcomment>Adesivi?</translatorcomment>
<translation>Strumenti adesivi</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1584"/>
<source>&Fit to Height</source>
<translation>&Adatta all'altezza</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1585"/>
<source>Fit to Width</source>
<translation>Adatta alla larghezza</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1593"/>
<source>Show Bleeds</source>
<translation>Mostra margini rifilatura</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1618"/>
<source>&Measurements</source>
<translation>&Misure</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1622"/>
<source>Symbols</source>
<translation>Simboli</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1637"/>
<source>Unlink Text Frame with Text Copy</source>
<translation>Scollega cornici testo con copia testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1638"/>
<source>Unlink Text Frame with Text Cut</source>
<translation>Scollega cornici testo con divisione testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1648"/>
<source>Insert Arc</source>
<translation>Inserisci arco</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1649"/>
<source>Insert Spiral</source>
<translation>Inserisci spirale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1651"/>
<source>Insert Calligraphic Line</source>
<translation>Inserisci linea calligrafica</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1656"/>
<source>Insert PDF Radio Button</source>
<translation type="unfinished">Inserici radio button PDF</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1664"/>
<source>Insert 3D Annotation</source>
<translation>Inserisci annotazione 3D</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1673"/>
<source>&Update Document</source>
<translation>&Aggiorna documento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1703"/>
<source>Soft &Hyphen</source>
<translation>Trattino &opzionale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1711"/>
<source>&Zero Width Space</source>
<translation>Spa&zio larghezza zero</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1712"/>
<source>Zero Width NB Space</source>
<translation>Spazio protetto di larghezza zero</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1724"/>
<source>Apostrophe</source>
<comment>Unicode 0x0027</comment>
<translation>Apostrofo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1725"/>
<source>Straight Double</source>
<comment>Unicode 0x0022</comment>
<translation>Virgolette semplici</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1726"/>
<source>Single Left</source>
<comment>Unicode 0x2018</comment>
<translation>Virgoletta sx</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1727"/>
<source>Single Right</source>
<comment>Unicode 0x2019</comment>
<translation>Virgoletta dx</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1728"/>
<source>Double Left</source>
<comment>Unicode 0x201C</comment>
<translation>Virgolette inglesi sx</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1729"/>
<source>Double Right</source>
<comment>Unicode 0x201D</comment>
<translation>Virgolette inglesi dx</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1730"/>
<source>Single Reversed</source>
<comment>Unicode 0x201B</comment>
<translation>Virgoletta ribaltata</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1731"/>
<source>Double Reversed</source>
<comment>Unicode 0x201F</comment>
<translation>Virgolette ribaltate</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1732"/>
<source>Single Left Guillemet</source>
<comment>Unicode 0x2039</comment>
<translation>Virgoletta caporale sx (<)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1733"/>
<source>Single Right Guillemet</source>
<comment>Unicode 0x203A</comment>
<translation>Virgoletta caporale dx (>)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1734"/>
<source>Double Left Guillemet</source>
<comment>Unicode 0x00AB</comment>
<translation>Virgolette caporali sx («)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1735"/>
<source>Double Right Guillemet</source>
<comment>Unicode 0x00BB</comment>
<translation>Virgolette caporali dx (»)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1736"/>
<source>Low Single Comma</source>
<comment>Unicode 0x201A</comment>
<translation>Virgoletta bassa (,)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1737"/>
<source>Low Double Comma</source>
<comment>Unicode 0x201E</comment>
<translation>Virgolette basse (,,)</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1738"/>
<source>CJK Single Left</source>
<comment>Unicode 0x300C</comment>
<translation>Apostrofo sx CJK</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1739"/>
<source>CJK Single Right</source>
<comment>Unicode 0x300D</comment>
<translation>Apostrofo dx CJK</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1740"/>
<source>CJK Double Left</source>
<comment>Unicode 0x300E</comment>
<translation>Virgolette sx CJK</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1741"/>
<source>CJK Double Right</source>
<comment>Unicode 0x300F</comment>
<translation>Virgolette dx CJK</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1590"/>
<source>&400%</source>
<translation>&400%</translation>
</message>
<message>
<source>Edit Latex Source...</source>
<translation type="obsolete">Edit Latex Source...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1642"/>
<source>Insert &Text Frame</source>
<translation>Inserisci cornice di &testo</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1643"/>
<source>Insert &Image Frame</source>
<translation>Inserisci cor&nice immagine</translation>
</message>
<message>
<source>Insert &Latex Frame</source>
<translation type="obsolete">Insert &Latex Frame</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1645"/>
<source>Insert T&able</source>
<translation>Inserisci t&abella</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1646"/>
<source>Insert &Shape</source>
<translation>Inserisci &forma</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1647"/>
<source>Insert &Polygon</source>
<translation>Inserisci poli&gono</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1650"/>
<source>Insert &Line</source>
<translation>Inserisci &Linea</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1652"/>
<source>Insert &Bezier Curve</source>
<translation>Inserisci curva di Bé&zier</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1653"/>
<source>Insert &Freehand Line</source>
<translation>Inserisci linea a &mano libera</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1686"/>
<source>Scribus Homepage</source>
<translation>Sito web di Scribus</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1687"/>
<source>Scribus Online Documentation</source>
<translation>Documentazione online di Scribus</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1688"/>
<source>Scribus Wiki</source>
<translation>Wiki di Scribus</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1689"/>
<source>Getting Started with Scribus</source>
<translation>Primi passi con Scribus</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1608"/>
<source>Show Context Menu</source>
<translation>Mostra menù contestuale</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1669"/>
<source>&Manage Images</source>
<translation>&Gestione immagini</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1681"/>
<source>&About Plugins</source>
<translation>Inform&azioni estensioni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1695"/>
<source>Insert Unicode Character Begin Sequence</source>
<translation>Inserisci sequenza iniziale di caratteri unicode</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1430"/>
<source>Get Vector File...</source>
<translation>Carica file vettoriale...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1455"/>
<source>Advanced Select All...</source>
<translation>Seleziona tutto avanzato...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1459"/>
<source>Edit Source...</source>
<translatorcomment>???</translatorcomment>
<translation type="unfinished">Modifica origine...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1461"/>
<source>Replace Colors...</source>
<translation>Sostituisci colori...</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1604"/>
<source>Rulers Relative to Page</source>
<translation>Righelli relativi alla pagina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1644"/>
<source>Insert &Render Frame</source>
<translation>°Inse&risci cornice rendering</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1690"/>
<source>Check for Updates</source>
<translation>Controlla aggiornamenti</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1707"/>
<source>Number of Pages</source>
<translation>Numero di pagine</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1533"/>
<source>Adjust Image to Frame</source>
<translation>Adatta immagine alla cornice</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="1882"/>
<source>File</source>
<translation>File</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1882"/>
<source>&File</source>
<translation>&File</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1884"/>
<source>Edit</source>
<translation>Modifica</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1884"/>
<source>&Edit</source>
<translation>&Modifica</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1886"/>
<source>Style</source>
<translation>Stile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1886"/>
<source>&Style</source>
<translation>&Stile</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1888"/>
<source>Item</source>
<translation>Elemento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1888"/>
<source>&Item</source>
<translation>E&lemento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1890"/>
<source>Insert</source>
<translation>Inserisci</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1890"/>
<source>I&nsert</source>
<translation>&Inserisci</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1892"/>
<source>Page</source>
<translation>Pagina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1892"/>
<source>&Page</source>
<translation>&Pagina</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1894"/>
<source>View</source>
<translation>Vista</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1894"/>
<source>&View</source>
<translation>&Vista</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1896"/>
<source>Table</source>
<translation>Tabella</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1896"/>
<source>&Table</source>
<translation>&Tabella</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1898"/>
<source>Extras</source>
<translation>Utilità</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1898"/>
<source>E&xtras</source>
<translation>&Utilità</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1900"/>
<source>Windows</source>
<translation>Finestre</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1900"/>
<source>&Windows</source>
<translation>Fi&nestre</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1902"/>
<source>Help</source>
<translation>Aiuto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1902"/>
<source>&Help</source>
<translation>&Aiuto</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="2255"/>
<source>Plugin Menu Items</source>
<translation>Elementi menù estensioni</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="2257"/>
<source>Others</source>
<translation>Altri</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="2259"/>
<source>Unicode Characters</source>
<translation>Caratteri Unicode</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1684"/>
<source>Move/Resize Value Indicator</source>
<translation>Indicatore del valore di spostamento/ridimensionamento</translation>
</message>
<message>
<location filename="../../../scribus/actionmanager.cpp" line="1420"/>
<source>New &from Template...</source>
<translation>Nuovo &da modello...</translation>
</message>
</context>
<context>
<name>AdjustCmsDialog</name>
<message>
<location filename="../../../scribus/ui/adjustcmsdialog.cpp" line="16"/>
<source>CMS Settings</source>
<translation>Impostazioni CMS</translation>
</message>
</context>
<context>
<name>AlignDistribute</name>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="14"/>
<source>DockWidget</source>
<translation>Ancora pannello</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="25"/>
<source>Align</source>
<translation>Allinea</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="54"/>
<source>&Selected Guide:</source>
<translation>Guida &selezionata:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="67"/>
<source>&Relative To:</source>
<translation>Rela&tivo a:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="86"/>
<source>&Align Sides By:</source>
<translation>&Allinea lati mediante:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="142"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="149"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="156"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="163"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="170"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="177"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="184"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="191"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="198"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="205"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="275"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="282"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="289"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="296"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="303"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="313"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="320"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="330"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="337"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="347"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="354"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="361"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="371"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="378"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="385"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="392"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="566"/>
<location filename="../../../scribus/ui/aligndistribute.ui" line="573"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="249"/>
<source>Distribute</source>
<translation>Distribuisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="439"/>
<source>&Distance:</source>
<translation>&Distanza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="503"/>
<source>Reverse Distribution</source>
<translation>Inverti direzione distribuzione</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.ui" line="545"/>
<source>Swap</source>
<translation>Scambia posizioni</translation>
</message>
</context>
<context>
<name>AlignDistributePalette</name>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="93"/>
<source>Align and Distribute</source>
<translation>Allinea e distribuisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="96"/>
<source>&Relative to:</source>
<translation>&Relativo a:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="99"/>
<source>First Selected</source>
<translation>Primo selezionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="100"/>
<source>Last Selected</source>
<translation>Ultimo selezionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="101"/>
<source>Page</source>
<translation>Pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="102"/>
<source>Margins</source>
<translation>Margini</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="104"/>
<source>Selection</source>
<translation>Selezione</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="108"/>
<source>&Align Sides By:</source>
<translation>&Allinea lati mediante:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="121"/>
<source>Align bottoms</source>
<translation>Allinea i lati inferiori</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="123"/>
<source>Align right sides</source>
<translation>Allinea i lati destri</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="127"/>
<source>Center on vertical axis</source>
<translation>Centra sull'asse verticale</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="129"/>
<source>Align left sides</source>
<translation>Allinea i lati sinistri</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="131"/>
<source>Center on horizontal axis</source>
<translation>Centra sull'asse orizzontale</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="135"/>
<source>Align tops</source>
<translation>Allinea i lati superiori</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="155"/>
<source>Distribute left sides equidistantly</source>
<translation>Rendi i lati sinistri equidistanti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="147"/>
<source>Distribute bottoms equidistantly</source>
<translation>Rendi i lati inferiori equidistanti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="149"/>
<source>Distribute centers equidistantly horizontally</source>
<translation>Rendi i centri equidistanti orizzontalmente</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="157"/>
<source>Distribute centers equidistantly vertically</source>
<translation>Rendi i centri equidistanti verticalmente</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="159"/>
<source>Distribute tops equidistantly</source>
<translation>Rendi i lati superiori equidistanti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="145"/>
<source>Distribute right sides equidistantly</source>
<translation>Rendi i lati destri equidistanti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="103"/>
<source>Guide</source>
<translation>Guida</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="111"/>
<source>Move</source>
<translation>Sposta</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="112"/>
<source>Resize</source>
<translation>Ridimensiona</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="113"/>
<source><qt>When aligning one side of an item do one of the following:<ul><li>Always move the other side too (preserve existing width and height)</li><li>Keep the other side fixed (resize the item instead of moving it) whenever possible</li></ul></qt></source>
<translation><qt>Allinea un lato di un elemento con una delle seguenti modalità:<ul><li>sposta sempre anche l'altro lato (mantieni larghezza e altezza)</li><li>tieni fisso l'altro lato (ridimensiona l'elemento invece di spostarlo) quando possibile</li></ul></qt></translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="137"/>
<source>&Selected Guide:</source>
<translation>Guida &selezionata:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="169"/>
<source>&Distance:</source>
<translation>&Distanza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="170"/>
<source>Distribute the items with the distance specified</source>
<translation>Distribuisci gli elementi con la distanza specificata</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="172"/>
<source>When distributing by a set distance, reverse the direction of the distribution of items</source>
<translation>In caso di distribuzione con distanza prefissata, inverti la direzione della distribuzione degli elementi</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="174"/>
<source>None Selected</source>
<translation>Nessuno selezionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="176"/>
<source>Swap items to the left</source>
<translation>Scambia posizioni verso sinistra</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="177"/>
<source>Swap items to the right</source>
<translation>Scambia posizioni verso destra</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="477"/>
<source>Y: %1%2</source>
<translation>Y: %1%2</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="485"/>
<source>X: %1%2</source>
<translation>X: %1%2</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="117"/>
<source>Align right sides of items to left side of anchor</source>
<translation>Allinea i lati destri degli oggetti al lato sinistro dell'ancora</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="119"/>
<source>Align left sides of items to right side of anchor</source>
<translation>Allinea i lati sinistri degli oggetti al lato destro dell'ancora</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="125"/>
<source>Align tops of items to bottom of anchor</source>
<translation>Allinea i lati superiori degli oggetti al lato inferiore dell'ancora</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="133"/>
<source>Align bottoms of items to top of anchor</source>
<translation>Allinea i lati inferiori degli oggetti al lato superiore dell'ancora</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="140"/>
<source>Make horizontal gaps between items equal</source>
<translation>Rendi uguale la distanza orizzontale tra gli oggetti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="142"/>
<source>Make horizontal gaps between items equal to the value specified</source>
<translation>Fissa la distanza orizzontale tra gli oggetti al valore specificato</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="151"/>
<source>Make vertical gaps between items equal</source>
<translation>Rendi uguale la distanza verticale tra gli oggetti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="153"/>
<source>Make vertical gaps between items equal to the value specified</source>
<translation>Fissa la distanza verticale tra gli oggetti al valore specificato</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="161"/>
<source>Make horizontal gaps between items and sides of page equal</source>
<translation>Rendi uguale la distanza orizzontale tra gli oggetti</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="167"/>
<source>Make vertical gaps between items and the top and bottom of page margins equal</source>
<translation>Rendi uguale la distanza verticale tra gli oggetti e i margini superiore e inferiore della pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="165"/>
<source>Make horizontal gaps between items and sides of page margins equal</source>
<translation>Rendi uguale la distanza orizzontale tra gli oggetti e i margini laterali della pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="163"/>
<source>Make vertical gaps between items and the top and bottom of page equal</source>
<translation>Rendi uguale la distanza verticale tra gli oggetti e i lati superiore e inferiore della pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="94"/>
<source>Align</source>
<translation>Allinea</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="95"/>
<source>Distribute</source>
<translation>Distribuisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="106"/>
<source><qt>Align relative to the:<ul><li>First selected item</li><li>Second Selected Item</li><li>The current page</li><li>The margins of the current page</li><li>A Guide</li><li>The selection</ul></qt></source>
<translation><qt>Allinea relativamente al:<ul><li>Primo oggetto selezionato</li><li>Secondo oggetto selezionato</li><li>Pagina corrente</li><li>Margini della pagina corrente</li><li>Una guida</li><li>Selezione</ul></qt></translation>
</message>
<message>
<location filename="../../../scribus/ui/aligndistribute.cpp" line="115"/>
<source>The location of the selected guide to align to</source>
<translation>La posizione della guida selezionata a cui allineare</translation>
</message>
</context>
<context>
<name>AlignSelect</name>
<message>
<location filename="../../../scribus/ui/alignselect.cpp" line="110"/>
<source>Align Text Left</source>
<translation>Testo allineato a sinistra</translation>
</message>
<message>
<location filename="../../../scribus/ui/alignselect.cpp" line="111"/>
<source>Align Text Right</source>
<translation>Testo allineato a destra</translation>
</message>
<message>
<location filename="../../../scribus/ui/alignselect.cpp" line="112"/>
<source>Align Text Center</source>
<translation>Testo centrato</translation>
</message>
<message>
<location filename="../../../scribus/ui/alignselect.cpp" line="113"/>
<source>Align Text Justified</source>
<translation>Testo giustificato</translation>
</message>
<message>
<location filename="../../../scribus/ui/alignselect.cpp" line="114"/>
<source>Align Text Forced Justified</source>
<translation>Testo giustificato forzato</translation>
</message>
</context>
<context>
<name>Annot</name>
<message>
<source>Field Properties</source>
<translation type="obsolete">Proprietà campo</translation>
</message>
<message>
<source>Type:</source>
<translation type="obsolete">Tipo:</translation>
</message>
<message>
<source>Button</source>
<translation type="obsolete">Bottone</translation>
</message>
<message>
<source>Text Field</source>
<translation type="obsolete">Campo di testo</translation>
</message>
<message>
<source>Check Box</source>
<translation type="obsolete">Casella di controllo</translation>
</message>
<message>
<source>Combo Box</source>
<translation type="obsolete">Casella combinata</translation>
</message>
<message>
<source>List Box</source>
<translation type="obsolete">Lista</translation>
</message>
<message>
<source>Properties</source>
<translation type="obsolete">Proprietà</translation>
</message>
<message>
<source>Name:</source>
<translation type="obsolete">Nome:</translation>
</message>
<message>
<source>Text</source>
<translation type="obsolete">Testo</translation>
</message>
<message>
<source>Border</source>
<translation type="obsolete">Bordo</translation>
</message>
<message>
<source>Color:</source>
<translation type="obsolete">Colore:</translation>
</message>
<message>
<source>None</source>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>Width:</source>
<translation type="obsolete">Larghezza:</translation>
</message>
<message>
<source>Thin</source>
<translation type="obsolete">Sottile</translation>
</message>
<message>
<source>Normal</source>
<translation type="obsolete">Normale</translation>
</message>
<message>
<source>Wide</source>
<translation type="obsolete">Spesso</translation>
</message>
<message>
<source>Style:</source>
<translation type="obsolete">Stile:</translation>
</message>
<message>
<source>Solid</source>
<translation type="obsolete">Continuo</translation>
</message>
<message>
<source>Dashed</source>
<translation type="obsolete">A trattini</translation>
</message>
<message>
<source>Underline</source>
<translation type="obsolete">Sottolineato</translation>
</message>
<message>
<source>Beveled</source>
<translation type="obsolete">Smussato</translation>
</message>
<message>
<source>Inset</source>
<translation type="obsolete">Incavato</translation>
</message>
<message>
<source>Other</source>
<translation type="obsolete">Altro</translation>
</message>
<message>
<source>Read Only</source>
<translation type="obsolete">Solo lettura</translation>
</message>
<message>
<source>Required</source>
<translation type="obsolete">Necessario</translation>
</message>
<message>
<source>Visibility:</source>
<translation type="obsolete">Visibilità:</translation>
</message>
<message>
<source>Visible</source>
<translation type="obsolete">Visibile</translation>
</message>
<message>
<source>Hidden</source>
<translation type="obsolete">Nascosto</translation>
</message>
<message>
<source>No Print</source>
<translation type="obsolete">Senza stampa</translation>
</message>
<message>
<source>No View</source>
<translation type="obsolete">Non mostrare</translation>
</message>
<message>
<source>Appearance</source>
<translation type="obsolete">Aspetto</translation>
</message>
<message>
<source>Text for Button Down</source>
<translation type="obsolete">Testo per bottone premuto</translation>
</message>
<message>
<source>Text for Roll Over</source>
<translation type="obsolete">Testo per scorrimento</translation>
</message>
<message>
<source>Icons</source>
<translation type="obsolete">Icone</translation>
</message>
<message>
<source>Use Icons</source>
<translation type="obsolete">Usa icone</translation>
</message>
<message>
<source>Remove</source>
<translation type="obsolete">Elimina</translation>
</message>
<message>
<source>Pressed</source>
<translation type="obsolete">Premuto</translation>
</message>
<message>
<source>Roll Over</source>
<translation type="obsolete">Scorrimento</translation>
</message>
<message>
<source>Icon Placement...</source>
<translation type="obsolete">Disposizione icone...</translation>
</message>
<message>
<source>Highlight</source>
<translation type="obsolete">Evidenziato</translation>
</message>
<message>
<source>Invert</source>
<translation type="obsolete">Inverti</translation>
</message>
<message>
<source>Outlined</source>
<translation type="obsolete">Contornato</translation>
</message>
<message>
<source>Push</source>
<translation type="obsolete">Premi</translation>
</message>
<message>
<source>Multi-Line</source>
<translation type="obsolete">Multilinea</translation>
</message>
<message>
<source>Password</source>
<translation type="obsolete">Parola d'ordine</translation>
</message>
<message>
<source>Limit of</source>
<translation type="obsolete">Limite di</translation>
</message>
<message>
<source>Characters</source>
<translation type="obsolete">Caratteri</translation>
</message>
<message>
<source>Do Not Scroll</source>
<translation type="obsolete">Non scorrere</translation>
</message>
<message>
<source>Do Not Spell Check</source>
<translation type="obsolete">Non verificare ortografia</translation>
</message>
<message>
<source>Check Style:</source>
<translation type="obsolete">Controlla stile:</translation>
</message>
<message>
<source>Check</source>
<translation type="obsolete">Controlla</translation>
</message>
<message>
<source>Cross</source>
<translation type="obsolete">Croce</translation>
</message>
<message>
<source>Diamond</source>
<translation type="obsolete">Diamante</translation>
</message>
<message>
<source>Circle</source>
<translation type="obsolete">Cerchio</translation>
</message>
<message>
<source>Star</source>
<translation type="obsolete">Stella</translation>
</message>
<message>
<source>Square</source>
<translation type="obsolete">Quadrato</translation>
</message>
<message>
<source>Default is Checked</source>
<translation type="obsolete">È selezionato di default</translation>
</message>
<message>
<source>Editable</source>
<translation type="obsolete">Modificabile</translation>
</message>
<message>
<source>Options</source>
<translation type="obsolete">Opzioni</translation>
</message>
<message>
<source>Go To</source>
<translation type="obsolete">Vai a</translation>
</message>
<message>
<source>Submit Form</source>
<translation type="obsolete">Invia modulo</translation>
</message>
<message>
<source>Reset Form</source>
<translation type="obsolete">Azzera modulo</translation>
</message>
<message>
<source>Import Data</source>
<translation type="obsolete">Importa dati</translation>
</message>
<message>
<source>Event:</source>
<translation type="obsolete">Evento:</translation>
</message>
<message>
<source>Mouse Up</source>
<translation type="obsolete">Bottone mouse rilasciato</translation>
</message>
<message>
<source>Mouse Down</source>
<translation type="obsolete">Bottone mouse premuto</translation>
</message>
<message>
<source>Mouse Enter</source>
<translation type="obsolete">Cursore dentro</translation>
</message>
<message>
<source>Mouse Exit</source>
<translation type="obsolete">Cursore fuori</translation>
</message>
<message>
<source>On Focus</source>
<translation type="obsolete">Al centro</translation>
</message>
<message>
<source>On Blur</source>
<translation type="obsolete">Intorno</translation>
</message>
<message>
<source>Script:</source>
<translation type="obsolete">Script:</translation>
</message>
<message>
<source>Edit...</source>
<translation type="obsolete">Modifica...</translation>
</message>
<message>
<source>Submit to URL:</source>
<translation type="obsolete">URL:</translation>
</message>
<message>
<source>Submit Data as HTML</source>
<translation type="obsolete">Submit Data as HTML</translation>
</message>
<message>
<source>Import Data from:</source>
<translation type="obsolete">Importa dati da:</translation>
</message>
<message>
<source>Destination</source>
<translation type="obsolete">Destinazione</translation>
</message>
<message>
<source>To File:</source>
<translation type="obsolete">Al file:</translation>
</message>
<message>
<source>Change...</source>
<translation type="obsolete">Cambia...</translation>
</message>
<message>
<source>Page:</source>
<translation type="obsolete">Pagina:</translation>
</message>
<message>
<source>X-Pos:</source>
<translation type="obsolete">Pos X:</translation>
</message>
<message>
<source> pt</source>
<translation type="obsolete"> pt</translation>
</message>
<message>
<source>Y-Pos:</source>
<translation type="obsolete">Pos Y:</translation>
</message>
<message>
<source>Action</source>
<translation type="obsolete">Azione</translation>
</message>
<message>
<source>Field is formatted as:</source>
<translation type="obsolete">Campo formattato come:</translation>
</message>
<message>
<source>Plain</source>
<translation type="obsolete">Testo</translation>
</message>
<message>
<source>Number</source>
<translation type="obsolete">Numero</translation>
</message>
<message>
<source>Percentage</source>
<translation type="obsolete">Percentuale</translation>
</message>
<message>
<source>Date</source>
<translation type="obsolete">Data</translation>
</message>
<message>
<source>Time</source>
<translation type="obsolete">Ora</translation>
</message>
<message>
<source>Custom</source>
<translation type="obsolete">Pesonalizzato</translation>
</message>
<message>
<source>Number Format</source>
<translation type="obsolete">Formato numero</translation>
</message>
<message>
<source>Decimals:</source>
<translation type="obsolete">Decimali:</translation>
</message>
<message>
<source>Use Currency Symbol</source>
<translation type="obsolete">Usa simbolo valuta</translation>
</message>
<message>
<source>Prepend Currency Symbol</source>
<translation type="obsolete">Simbolo valuta</translation>
</message>
<message>
<source>Formatting</source>
<translation type="obsolete">Formattazione</translation>
</message>
<message>
<source>Percent Format</source>
<translation type="obsolete">Formato percentuale</translation>
</message>
<message>
<source>Date Format</source>
<translation type="obsolete">Formato data</translation>
</message>
<message>
<source>Time Format</source>
<translation type="obsolete">Formato ora</translation>
</message>
<message>
<source>Custom Scripts</source>
<translation type="obsolete">Script personalizzati</translation>
</message>
<message>
<source>Format:</source>
<translation type="obsolete">Format:</translation>
</message>
<message>
<source>Keystroke:</source>
<translation type="obsolete">Tasti da usare:</translation>
</message>
<message>
<source>Format</source>
<translation type="obsolete">Formato</translation>
</message>
<message>
<source>Value is not validated</source>
<translation type="obsolete">Valore non valido</translation>
</message>
<message>
<source>Value must be greater than or equal to:</source>
<translation type="obsolete">Il valore deve essere maggiore o uguale a:</translation>
</message>
<message>
<source>and less or equal to:</source>
<translation type="obsolete">e minore o uguale a:</translation>
</message>
<message>
<source>Custom validate script:</source>
<translation type="obsolete">Script di convalida personalizzato:</translation>
</message>
<message>
<source>Validate</source>
<translation type="obsolete">Convalida</translation>
</message>
<message>
<source>Value is not calculated</source>
<translation type="obsolete">Valore non calcolato</translation>
</message>
<message>
<source>Value is the</source>
<translation type="obsolete">Il valore è</translation>
</message>
<message>
<source>sum</source>
<translation type="obsolete">la somma</translation>
</message>
<message>
<source>product</source>
<translation type="obsolete">il prodotto</translation>
</message>
<message>
<source>average</source>
<translation type="obsolete">la media</translation>
</message>
<message>
<source>minimum</source>
<translation type="obsolete">il minimo</translation>
</message>
<message>
<source>maximum</source>
<translation type="obsolete">il massimo</translation>
</message>
<message>
<source>of the following fields:</source>
<translation type="obsolete">dei seguenti campi:</translation>
</message>
<message>
<source>Pick...</source>
<translation type="obsolete">Scegli...</translation>
</message>
<message>
<source>Custom calculation script:</source>
<translation type="obsolete">Script di calcolo personalizzato:</translation>
</message>
<message>
<source>Calculate</source>
<translation type="obsolete">Calcula</translation>
</message>
<message>
<source>OK</source>
<translation type="obsolete">OK</translation>
</message>
<message>
<source>Cancel</source>
<translation type="obsolete">Annulla</translation>
</message>
<message>
<source>Enter a comma separated list of fields here</source>
<translation type="obsolete">Inserisci qui una lista di campi separati da virgola</translation>
</message>
<message>
<source>You need at least the Icon for Normal to use Icons for Buttons</source>
<translation type="obsolete">È necessaria almeno l'icona normale per usare un icona come bottone</translation>
</message>
<message>
<source>Open</source>
<translation type="obsolete">Apri</translation>
</message>
<message>
<source>Example:</source>
<translation type="obsolete">Esempio:</translation>
</message>
<message>
<source>Selection Change</source>
<translation type="obsolete">Modifica selezione</translation>
</message>
<message>
<source>Font for use with PDF 1.3:</source>
<translation type="obsolete">Carattere da usare con PDF-1.3:</translation>
</message>
<message>
<source>Flag is ignored for PDF 1.3</source>
<translation type="obsolete">Ignorato per PDF-1.3</translation>
</message>
<message>
<source>PDF Files (*.pdf);;All Files (*)</source>
<translation type="obsolete">File PDF (*.pdf);;Tutti i file (*)</translation>
</message>
<message>
<source>JavaScript</source>
<translation type="obsolete">JavaScript</translation>
</message>
<message>
<source>None</source>
<comment>highlight</comment>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>None</source>
<comment>action</comment>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>Tooltip:</source>
<translation type="obsolete">Suggerimento:</translation>
</message>
<message>
<source>Do Not Export Value</source>
<translation type="obsolete">Non esportare valore</translation>
</message>
<message>
<source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source>
<translation type="obsolete">Immagini (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;Tutti i file (*)</translation>
</message>
<message>
<source>Images (*.tif *.png *.jpg *.xpm);;%1;;All Files (*)</source>
<translation type="obsolete">Immagini (*.tif *.png *.jpg *.xpm);;%1;;Yutti i file (*)</translation>
</message>
<message>
<source>Export absolute Filename</source>
<translation type="obsolete">Esporta il nome assoluto del file</translation>
</message>
<message>
<source>Submit format:</source>
<translation type="obsolete">Invia formato:</translation>
</message>
<message>
<source>FDF</source>
<translation type="obsolete">FDF</translation>
</message>
<message>
<source>HTML</source>
<translation type="obsolete">HTML</translation>
</message>
<message>
<source>XFDF</source>
<translation type="obsolete">XFDF</translation>
</message>
<message>
<source>PDF</source>
<translation type="obsolete">PDF</translation>
</message>
</context>
<context>
<name>Annota</name>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="47"/>
<source>Annotation Properties</source>
<translation>Proprietà annotazioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="77"/>
<source>Text</source>
<translation>Testo</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="78"/>
<source>Link</source>
<translation>Collegamento</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="79"/>
<source>External Link</source>
<translation>Collegamento esterno</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="80"/>
<source>External Web-Link</source>
<translation>Collegamento Web esterno </translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="117"/>
<source>Options</source>
<translation>Opzioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="122"/>
<source>Icon:</source>
<translation type="unfinished">Icona:</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="124"/>
<source>Note</source>
<translation type="unfinished">Nota</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="125"/>
<source>Comment</source>
<translation type="unfinished">Commento</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="126"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="127"/>
<source>Help</source>
<translation type="unfinished">Aiuto</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="128"/>
<source>NewParagraph</source>
<translation type="unfinished">Nuovo paragrafo</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="129"/>
<source>Paragraph</source>
<translation>Paragrafo</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="130"/>
<source>Insert</source>
<translation type="unfinished">Inserisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="131"/>
<source>Cross</source>
<translation type="unfinished">Croce</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="132"/>
<source>Circle</source>
<translation type="unfinished">Cerchio</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="137"/>
<source>Annotation is Open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="143"/>
<source>Destination</source>
<translation>Destinazione</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="196"/>
<location filename="../../../scribus/ui/annota.cpp" line="206"/>
<source> pt</source>
<translation> pt</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="440"/>
<source>Open</source>
<translation>Apri</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="82"/>
<source>&Type:</source>
<translation>&Tipo:</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="154"/>
<source>C&hange...</source>
<translation>C&ambia...</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="174"/>
<source>&Page:</source>
<translation>&Pagina:</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="199"/>
<source>&X-Pos</source>
<translation>Pos &X</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="208"/>
<source>&Y-Pos:</source>
<translation>Pos &Y:</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="440"/>
<source>%1;;All Files (*)</source>
<translation>%1;;Tutti i File (*)</translation>
</message>
<message>
<location filename="../../../scribus/ui/annota.cpp" line="156"/>
<source>Export absolute Filename</source>
<translation>Esporta il nome assoluto del file</translation>
</message>
</context>
<context>
<name>ApplyMasterPageDialog</name>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="269"/>
<source>Apply Master Page</source>
<translation>Applica pagina mastro</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="270"/>
<source>&Master Page:</source>
<translation>Pagina &mastro:</translation>
</message>
<message>
<source>Apply To</source>
<translation type="obsolete">Apply To</translation>
</message>
<message>
<source>Current &page</source>
<translation type="obsolete">Current &page</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="273"/>
<source>Alt+P</source>
<translation>Alt+P</translation>
</message>
<message>
<source>&Even pages</source>
<translation type="obsolete">&Even pages</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="275"/>
<source>Alt+E</source>
<translation>Alt+E</translation>
</message>
<message>
<source>O&dd pages</source>
<translation type="obsolete">O&dd pages</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="277"/>
<source>Alt+D</source>
<translation>Alt+D</translation>
</message>
<message>
<source>&All pages</source>
<translation type="obsolete">&All pages</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="279"/>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<source>&Within range</source>
<translation type="obsolete">&Within range</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="281"/>
<source>Alt+W</source>
<translation>Alt+W</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="283"/>
<source>to</source>
<translation>a</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="285"/>
<source>Alt+O</source>
<translation>Alt+O</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="287"/>
<source>Alt+C</source>
<translation>Alt+C</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="282"/>
<source>Apply the selected master page to even, odd or all pages within the following range</source>
<translation>Applica la pagina mastro selezionata alle pagine pari, dispari o a tutte le pagine dell'intervallo seguente</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="52"/>
<source>Possible Hyphenation</source>
<translation>Possibile sillabazione</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="271"/>
<source>Apply to</source>
<translation>Applica a</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="272"/>
<source>Current &Page</source>
<translation>&Pagina corrente</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="274"/>
<source>&Even Pages</source>
<translation>Pagin&e pari</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="276"/>
<source>O&dd Pages</source>
<translation>Pagine &dispari</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="278"/>
<source>&All Pages</source>
<translation>Tutte le p&agine</translation>
</message>
<message>
<location filename="../../../scribus/ui/applytemplatedialog.cpp" line="280"/>
<source>&Within Range</source>
<translation>Nell'inter&vallo</translation>
</message>
</context>
<context>
<name>ArcVectorBase</name>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="23"/>
<source>Edit Arc</source>
<translation>Modifica arco</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="31"/>
<source>Start Angle:</source>
<translation>Angolo iniziale:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="51"/>
<source>End Angle:</source>
<translation>Angolo finale:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="71"/>
<source>Height:</source>
<translation>Altezza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="88"/>
<source>Width:</source>
<translation>Larghezza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcvectorbase.ui" line="122"/>
<source>End Edit</source>
<translation>Fine modifica</translation>
</message>
</context>
<context>
<name>ArcWidgetBase</name>
<message>
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="26"/>
<source>Form</source>
<translation>Arco</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="36"/>
<source>Start Angle:</source>
<translation>Angolo iniziale:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="56"/>
<source>End Angle:</source>
<translation>Angolo finale:</translation>
</message>
<message>
<location filename="../../../scribus/ui/arcwidgetbase.ui" line="117"/>
<source>Sample Polygon</source>
<translation>Poligono d'esempio</translation>
</message>
</context>
<context>
<name>AspellPlugin</name>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="74"/>
<source>Spell-checking support</source>
<translation>Supporto controllo ortografico</translation>
</message>
<message>
<source>Adds support for spell-checking via aspell. Languages can be chosen from among the installed aspell dictionaries, and spell-checking can be done on the fly, or on selected text.</source>
<translation type="obsolete">Aggiungi supporto per la sillabazione tramite Aspell. Le lingue possono essere scelte tra quelle dei dizionari aspell installati, e il controllo ortografico può essere effettuato al volo o sul testo selezionato.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="80"/>
<source>0.1</source>
<translation>0.1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="38"/>
<source>Spell Checker</source>
<translation>Controllo ortografico</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="76"/>
<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>Aggiunge supporto per il controllo ortografico tramite Aspell. Le lingue possono essere scelte tra quelle dei dizionari Aspell installati, e il controllo ortografico può essere effettuato al volo o sul testo selezionato.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellplugin.cpp" line="104"/>
<source>Aspell Plugin Error</source>
<translation>Errore dell'estensione Aspell</translation>
</message>
</context>
<context>
<name>AspellPluginBase</name>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="14"/>
<source>Spell Check</source>
<translation>Controllo ortografico</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="119"/>
<source>Replacement:</source>
<translation>Sostituzione:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="195"/>
<source>The currently active dictionary. Scribus uses Aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source>
<translation>Il dizionario attualmente attivo. Scribus utilizza i dizionari Aspell.<br />Se desiderate altri dizionari, o dizionari più aggiornati, dovreste installarli tramite il sistema di installazione o il gestore di pacchetti del vostro sistema.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="279"/>
<source>&Add Word</source>
<translation>&Aggiungi termine</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="307"/>
<source>&Change</source>
<translation>&Cambia</translation>
</message>
<message>
<source>&Exit</source>
<translation type="obsolete">&Exit</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="46"/>
<source>Not in Dictionary:</source>
<translation>Non nel dizionario:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="71"/>
<source>Word that was not found in the active dictionary</source>
<translation>Termine non trovato nel dizionario attivo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="126"/>
<source>Replacement text for the current word that was not found in the dictionary</source>
<translation>Testo sostitutivo per il termine corrente non trovato nel dizionario</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="182"/>
<source>Active Dictionary: </source>
<translation>Dizionario attivo: </translation>
</message>
<message>
<source>The currently active dictionary. Scribus uses aspell for dictionary support.<br />If you require updated or more dictionaries, you should install them via your system's installation system or package manager.</source>
<translation type="obsolete">Il dizionario attivo corrente. Scribus utilizza aspell come supporto per il dizionario.</br>Nel caso si necessiti di aggiornamenti o di ulteriori dizionari, installarli tramite il vostro sistema o il vostro package manager.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="226"/>
<source>Ignore the current text not found in the active dictionary</source>
<translation>Ignora il testo corrente non trovato nel dizionario attivo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="229"/>
<source>&Ignore</source>
<translation>&Ignora</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="248"/>
<source>Ignore all occurrences of the current text not found in the active dictionary</source>
<translation>Ignora tutte le occorrenze del testo attuale non trovato nel dizionario attivo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="251"/>
<source>I&gnore All</source>
<translation>I&gnora tutti</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="276"/>
<source>Add the current word to the your personal spelling dictionary for future use</source>
<translation>Aggiungi il termine corrente al dizionario ortografico personalizzato per un futuro utilizzo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="304"/>
<source>Change the current word that was not found to that shown in the replacement entry field</source>
<translation>Cambia il termine corrente, non trovato, con quello mostrato nel campo di sostituzione</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="332"/>
<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>Cambia tutte le occorrenze del termine attuale, non trovato, con quello mostrato nel campo di sostituzione</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="335"/>
<source>Change A&ll</source>
<translation>C&ambia tutti</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginbase.ui" line="373"/>
<source>Close</source>
<translation>Chiudi</translation>
</message>
</context>
<context>
<name>AspellPluginImpl</name>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/>
<source>Loaded </source>
<translation>Caricato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/>
<source>default </source>
<translation>predefinito</translation>
</message>
<message>
<source> aspell dictionary.</source>
<translation type="obsolete"> dizionario aspell.</translation>
</message>
<message>
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in aspell speller configuration.</source>
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Errore nella configurazione aspell speller.</translation>
</message>
<message>
<source>aspellplugin (AspellPluginImpl::AspellPluginImpl): Error in creating aspell speller.</source>
<translation type="obsolete">aspellplugin (AspellPluginImpl::AspellPluginImpl): Errore nella creazione di aspell speller.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="391"/>
<source>AspellPluginImpl::on_fskipAllBtn_clicked(): Unable to skip all instances of "</source>
<translation>AspellPluginImpl::on_fskipAllBtn_clicked(): Impossibile saltare tutte le istanza di "</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="393"/>
<source> by adding it to the session list.</source>
<translation> aggiungendolo alla lista della sessione.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="414"/>
<source>AspellPluginImpl::on_faddWordBtn_clicked(): Unable to add word to personal list.</source>
<translation>AspellPluginImpl::on_faddWordBtn_clicked(): Impossibile aggiuntere il termine alla lista personale.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="267"/>
<source>Spelling check complete</source>
<translation>Controllo ortografico completo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="48"/>
<source> Aspell dictionary.</source>
<translation> Dizionario Aspell.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="268"/>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="460"/>
<source>Spell Checker</source>
<translation>Controllo ortografico</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="81"/>
<source>No available Aspell dictionaries found. Install some, please.</source>
<translation>Non è stato trovato nessun dizionario Aspell. Si prega di installarne uno.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="106"/>
<source>Spell Checker Plugin Failed to Initialise.
Configuration invalid</source>
<translation>Estensione per il controllo ortografico: inizializzazione non riuscita.
Configurazione non valida</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="113"/>
<source>Spell Checker Plugin Failed to Initialise.</source>
<translation>Estensione per il controllo ortografico: inizializzazione non riuscita.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="115"/>
<source>No Aspell dictionaries could be found.</source>
<translation>Non è stato trovato alcun dizionario Aspell.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/spellcheck/aspellpluginimpl.cpp" line="461"/>
<source>Do you want start from the beginning of the selection with new language selected?</source>
<translation>Si vuole cominciare dall'inizio della selezione con la nuova lingua selezionata?</translation>
</message>
</context>
<context>
<name>AutoformButtonGroup</name>
<message>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="36"/>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1281"/>
<source>Arrows</source>
<translation>Frecce</translation>
</message>
<message>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="44"/>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1282"/>
<source>Flow Chart</source>
<translation>Diagramma di flusso</translation>
</message>
<message>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="53"/>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1283"/>
<source>Jigsaw</source>
<translation>Mosaico</translation>
</message>
<message>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="66"/>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1284"/>
<source>Specials</source>
<translation>Speciali</translation>
</message>
<message>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="21"/>
<location filename="../../../scribus/ui/autoformbuttongroup.cpp" line="1280"/>
<source>Default Shapes</source>
<translation>Forme predefinite</translation>
</message>
</context>
<context>
<name>Barcode</name>
<message>
<source>&Barcode Generator...</source>
<translation type="obsolete">&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>&Barcode...</source>
<translation>Codice a &Barre...</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcode.cpp" line="39"/>
<source>Scribus frontend for Pure PostScript Barcode Writer</source>
<translation>Interfaccia Scribus per elaborare codice a barre in puro Postscript</translation>
</message>
</context>
<context>
<name>BarcodeGenerator</name>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="343"/>
<source>Error opening file: %1</source>
<translation>Errore nell'apertura del file: %1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="41"/>
<source>12 or 13 digits</source>
<translation>12 o 13 cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="43"/>
<source>8 digits</source>
<translation>8 cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="45"/>
<source>11 or 12 digits</source>
<translation>11 o 12 cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="47"/>
<source>7 or 8 digits</source>
<translation>7 o 8 cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="49"/>
<source>5 digits</source>
<translation>5 cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="51"/>
<source>2 digits</source>
<translation>2 cifre</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>Numero variabile di caratteri, cifre e simboli -. *$/+%.</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>Numero variabile di caratteri ASCII e simboli per una funzione speciale, che comincia con un carattere iniziale appropriato per il set di caratteri. UCC/EAN-128s deve avere obbligatoriamente un simbolo FNC 1 che segue immediatamente il carattere iniziale.</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>Numero variabile di cifre e uno dei simboli -$:/.+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>Numero variabile di cifre. Un ITF-14 è composto di 14 caratteri e non ha una cifra di controllo</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>Numero variabile di cifre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="89"/>
<source>Variable number of digits and capital letters</source>
<translation>Numero variabile di cifre e lettere maiuscole</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="98"/>
<source>Variable number of hexadecimal characters</source>
<translation>Numero variabile di caratteri esadecimali</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="102"/>
<source>Variable number of characters, digits and any symbols.</source>
<translation type="unfinished">Numero variabile di caratteri, cifre e simboli.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="109"/>
<source>Barcode</source>
<translation>Codice a barre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="377"/>
<source>Barcode incomplete</source>
<translation>Codice incompleto</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 -> 978-1-56592-479. The final check-digit will be calculated automatically.)</source>
<translation>12 o 13 cifre con trattini. Il vecchio formato ISBN-10 accetta 9 o 10 cifre con trattini, ma questo standard è stato deprecato per l'uso pubblico dal 1° gennaio 2007. (Nota: Per convertire un vecchio ISBN-10 in un nuovo ISBN-13, aggiungere la tripletta 978- all'inizio delle 9 cifre, es. 1-56592-479-7 -> 978-1-56592-479. La cifra finale di controllo sarà calcolata automaticamente.)</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.cpp" line="167"/>
<source>Select Type</source>
<translation>Seleziona tipo</translation>
</message>
<message>
<source>Select Barcode Type</source>
<translation type="obsolete">Seleziona il tipo di codice a barre</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="135"/>
<source>&Type:</source>
<translation>&Tipo:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="128"/>
<source>Select one of the available barcode type here</source>
<translation>Seleziona uno dei codici a barre disponibili</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="108"/>
<source>The numeric representation of the code itself. See the help message below</source>
<translation>La rappresentazione numerica del codice. Vedere l'aiuto qui sotto</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="98"/>
<source>Reset the barcode samples</source>
<translation>Impostazioni predefinite dei modelli di codici a barre</translation>
</message>
<message>
<source>&Include text in barcode</source>
<translation type="obsolete">&Include text in barcode</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="76"/>
<source>Alt+I</source>
<translation>Alt+I</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="70"/>
<source>If checked, there will be numbers in the barcode too</source>
<translation>Se marcato, il codice a barre conterrà anche dei numeri</translation>
</message>
<message>
<source>&Guard whitespace</source>
<translation type="obsolete">&Guard whitespace</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="63"/>
<source>Alt+G</source>
<translation>Alt+G</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="57"/>
<source>Draw arrows to be sure of space next the code</source>
<translation>Disegna frecce per lasciare spazio vicino al codice</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="151"/>
<source>Colors</source>
<translation>Colori</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="173"/>
<source>&Background</source>
<translation>S&fondo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="176"/>
<source>Alt+B</source>
<translation>Alt+F</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="170"/>
<source>Background color - under the code lines</source>
<translation>Colore di sfondo - sotto le barre del codice</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="205"/>
<source>&Lines</source>
<translation>&Linee</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="208"/>
<source>Alt+L</source>
<translation>Alt+L</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="202"/>
<source>Color of the lines in barcode</source>
<translation>Colore delle barre nel codice</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="237"/>
<source>&Text</source>
<translation>&Testo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="240"/>
<source>Alt+T</source>
<translation>Alt+T</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="234"/>
<source>Color of the text and numbers</source>
<translation>Colore del testo e dei numeri</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="269"/>
<source>Hints and help is shown here</source>
<translation>Suggerimenti ed aiuto</translation>
</message>
<message>
<source>Preview of the result. 72dpi sample.</source>
<translation type="obsolete">Anteprima del codice a 72dpi.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="115"/>
<source>Co&de:</source>
<translation>C&odice:</translation>
</message>
<message>
<source>I&nclude checksum</source>
<translation type="obsolete">I&nclude checksum</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="50"/>
<source>Alt+N</source>
<translation>Alt+N</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="44"/>
<source>Generate and include a checksum in barcode</source>
<translation>Genera e includi un codice di controllo nel codice a barre</translation>
</message>
<message>
<source>Incl&ude checksum digit</source>
<translation type="obsolete">Incl&ude checksum digit</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="37"/>
<source>Alt+U</source>
<translation>Alt+U</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="31"/>
<source>Include the checksum digit in the barcode text</source>
<translation>Includi la cifra di controllo nel testo del codice a barre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="16"/>
<source>Insert Barcode</source>
<translation>Inserisci codice a barre</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="25"/>
<source>Format</source>
<translation>Formato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="34"/>
<source>Incl&ude Checksum Digit</source>
<translation>Incl&udi cifra controllo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="47"/>
<source>I&nclude Checksum</source>
<translation>I&ncludi codice di controllo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="60"/>
<source>&Guard Whitespace</source>
<translation>&Conserva gli spazi bianchi</translation>
</message>
<message>
<location filename="../../../scribus/plugins/barcodegenerator/barcodegenerator.ui" line="73"/>
<source>&Include Text in Barcode</source>
<translation>&Includi un testo nel codice a barre</translation>
</message>
</context>
<context>
<name>Biblio</name>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1750"/>
<source>Scrapbook</source>
<translation>Biblioteca</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1000"/>
<source>Delete</source>
<translation>Elimina</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1499"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1507"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1592"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1671"/>
<source>Object</source>
<translation>Oggetto</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/>
<source>New Entry</source>
<translation>Nuova voce</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="579"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1756"/>
<source>Hide Directories</source>
<translation>Nascondi cartelle</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="589"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1759"/>
<source>Open Directories in a new tab</source>
<translation>Apri cartelle in una nuova scheda</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="998"/>
<source>Rename</source>
<translation>Rinomina</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1065"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1383"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1511"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1674"/>
<source>&Name:</source>
<translation>&Nome:</translation>
</message>
<message>
<source>Name "%1" is not unique.
Please choose another.</source>
<translation type="obsolete">Il nome "%1" non è univoco.
Si prega di sceglierne un altro.</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="761"/>
<source>Choose a Scrapbook Directory</source>
<translation>Scegli una cartella per la Biblioteca</translation>
</message>
<message>
<source>Choose a Directory</source>
<translation type="obsolete">Scegli una cartella</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="806"/>
<source>Choose a scrapbook file to import</source>
<translation>Scegli un file biblioteca da importare</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1751"/>
<source>Create a new scrapbook page</source>
<translation>Crea una nuova pagina di biblioteca</translation>
</message>
<message>
<source>Load an existing scrapbook</source>
<translation type="obsolete">Carica una biblioteca esistente</translation>
</message>
<message>
<source>Save the selected scrapbook</source>
<translation type="obsolete">Salva la biblioteca selezionata</translation>
</message>
<message>
<source>Import an scrapbook file from Scribus <=1.3.2</source>
<translation type="obsolete">Importa un file biblioteca da Scribus <=1.3.2</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1754"/>
<source>Close the selected scrapbook</source>
<translation>Chiudi la biblioteca selezionata</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1005"/>
<source>Copy To:</source>
<translation>Copia in:</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1006"/>
<source>Move To:</source>
<translation>Sposta in:</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="605"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="606"/>
<source>Main</source>
<translation>Principale</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="608"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="609"/>
<source>Copied Items</source>
<translation>Elementi copiati</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1254"/>
<source>New Name</source>
<translation>Nuovo nome</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="808"/>
<source>Scrapbook (*.scs *.SCS)</source>
<translation>Biblioteca (*.scs *.SCS)</translation>
</message>
<message>
<source>Hide Directorys</source>
<translation type="obsolete">Nascondi cartelle</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="582"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1757"/>
<source>Hide Images</source>
<translation>Nascondi immagini</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="585"/>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1758"/>
<source>Hide Vector files</source>
<translation>Nascondi file vettoriali</translation>
</message>
<message>
<source>Open Directorys in a new tab</source>
<translation type="obsolete">Apri cartelle in una nuova scheda</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="994"/>
<source>Paste to Page</source>
<translation>Incolla nella pagina</translation>
</message>
<message>
<source>Save as...</source>
<translation type="obsolete">Salva come...</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1044"/>
<source>Close</source>
<translation>Chiudi</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1047"/>
<source>Delete Contents</source>
<translation>Elimina contenuto</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1209"/>
<source>Do you really want to delete all entries?</source>
<translation>Vuoi veramente eliminare tutte le voci?</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1752"/>
<source>Go up one Directory</source>
<translation>Vai alla cartella superiore</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1753"/>
<source>Import a scrapbook file from Scribus <=1.3.2</source>
<translation>Importa un file biblioteca da Scribus <=1.3.2</translation>
</message>
<message>
<location filename="../../../scribus/ui/scrapbookpalette.cpp" line="1755"/>
<source>Configure the scrapbook</source>
<translation>Configura la biblioteca</translation>
</message>
</context>
<context>
<name>BookPalette</name>
<message>
<location filename="../../../scribus/ui/bookmarkpalette.cpp" line="48"/>
<source>Bookmarks</source>
<translation>Segnalibri</translation>
</message>
</context>
<context>
<name>ButtonIcon</name>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="29"/>
<source>Icon Placement</source>
<translation>Disposizione icone</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="38"/>
<source>Layout:</source>
<translation>Aspetto:</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/>
<source>Caption only</source>
<translation>Solo intestazione</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/>
<source>Icon only</source>
<translation>Solo icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/>
<source>Caption below Icon</source>
<translation>Intestazione sotto icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="41"/>
<source>Caption above Icon</source>
<translation>Intestazione sopra icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/>
<source>Caption right to Icon</source>
<translation>Intestazione a destra dell'icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/>
<source>Caption left to Icon</source>
<translation>Intestazione a sinistra dell'icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="42"/>
<source>Caption overlays Icon</source>
<translation>Intestazione attraverso l'icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="50"/>
<source>Scale:</source>
<translation>Scala:</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/>
<source>Always</source>
<translation>Sempre</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/>
<source>When Icon is too big</source>
<translation>Quando l'icona è troppo grande</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="56"/>
<source>Never</source>
<translation>Mai</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="63"/>
<source>Scale How:</source>
<translation>Riscala come:</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="66"/>
<source>Proportional</source>
<translation>Proporzionale</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="67"/>
<source>Non Proportional</source>
<translation>Non Proporzionale</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="90"/>
<source>Icon</source>
<translation>Icona</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="117"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="121"/>
<source>Cancel</source>
<translation>Annulla</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="124"/>
<source>Reset</source>
<translation>Azzera</translation>
</message>
<message>
<location filename="../../../scribus/ui/buttonicon.cpp" line="55"/>
<source>When Icon is too small</source>
<translation>Quando l'icona è troppo piccola</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/ui/cmsprefs.cpp" line="26"/>
<source>Monitor profiles can only be changed when no documents are currently opened.</source>
<translation>I profili del monitor possono essere cambiati solo quando non vi sono documenti aperti.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/>
<source>Perceptual</source>
<translation>Percettivo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefs.cpp" line="78"/>
<source>Relative Colorimetric</source>
<translation>Colorimetrico relativo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/>
<source>Saturation</source>
<translation>Saturazione</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefs.cpp" line="79"/>
<source>Absolute Colorimetric</source>
<translation>Colorimetrico assoluto</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 'soft proofing' of how your document colors will print,
based on the chosen printer profile.</source>
<translation type="obsolete">Enable 'soft proofing' 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>&Activate Color Management</source>
<translation type="obsolete">&Activate Colour Management</translation>
</message>
<message>
<source>&Monitor:</source>
<translation type="obsolete">&Monitor:</translation>
</message>
<message>
<source>P&rinter:</source>
<translation type="obsolete">P&rinter:</translation>
</message>
<message>
<source>Sim&ulate Printer on the Screen</source>
<translation type="obsolete">Sim&ulate Printer on the Screen</translation>
</message>
<message>
<source>Mark Colors out of &Gamut</source>
<translation type="obsolete">Mark Colours out of &Gamut</translation>
</message>
<message>
<source>Use &Blackpoint Compensation</source>
<translation type="obsolete">Use &Blackpoint Compensation</translation>
</message>
<message>
<source>&RGB Pictures:</source>
<translation type="obsolete">&RGB Pictures:</translation>
</message>
<message>
<source>&CMYK Pictures:</source>
<translation type="obsolete">&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>&RGB Solid Colors:</source>
<translation type="obsolete">&RGB Solid Colours:</translation>
</message>
<message>
<source>&CMYK Solid Colors:</source>
<translation type="obsolete">&CMYK Solid Colours:</translation>
</message>
<message>
<source>Pictures:</source>
<translation type="obsolete">Pictures:</translation>
</message>
<message>
<source>Sol&id Colors:</source>
<translation type="obsolete">Sol&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/ui/cmsprefsbase.ui" line="20"/>
<source>Form</source>
<translation>Gestione dei colori</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="32"/>
<source>&Activate Color Management</source>
<translation>Atti&va la gestione dei colori</translation>
</message>
<message>
<source>System Profiles</source>
<translation type="obsolete">Profili del sistema</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="54"/>
<source>&RGB Images:</source>
<translation>I&mmagini RGB:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="70"/>
<source>Default color profile for imported RGB images</source>
<translation>Profilo di colore predefinito per immagini RGB importate</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="77"/>
<source>&CMYK Images:</source>
<translation>Immagini CM&YK:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="93"/>
<source>Default color profile for imported CMYK images</source>
<translation>Profilo di colore predefinito per immagini CMYK importate</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="100"/>
<source>&RGB Solid Colors:</source>
<translation>Tinte unite R&GB:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="116"/>
<source>Default color profile for solid RGB colors on the page</source>
<translation>Profilo di colore predefinito per tinte unite RGB nella pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="123"/>
<source>&CMYK Solid Colors:</source>
<translation>Tinte unite &CMYK:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="139"/>
<source>Default color profile for solid CMYK colors on the page</source>
<translation>Profilo di colore predefinito per tinte unite CMYK nella pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="245"/>
<source>Document Options</source>
<translation>Opzioni documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="278"/>
<source>Simulate printer on Screen</source>
<translation>Simula stampante su schermo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="313"/>
<source>Monitor Profile</source>
<translation>Profilo dello schermo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="325"/>
<source>&Monitor:</source>
<translation>&Schermo:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="341"/>
<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>Profilo di colore generato dall'utente o ricevuto dal produttore.
Questo profilo dovrebbe essere specifico per lo schermo in uso e non un profilo generico (es. sRGB).</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="146"/>
<source>P&rinter:</source>
<translation>Stam&pante:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="42"/>
<source>Document Profiles</source>
<translation>Profili del documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="162"/>
<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>Profilo di colore per la stampante fornito dal produttore.
Questo profilo dovrebbe essere specifico per la stampante in uso e non generico (es. 'sRGB').</translation>
</message>
<message>
<source>Rendering Intents</source>
<translation type="obsolete">Intenti rendering</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="188"/>
<source>Images:</source>
<translation>Immagini:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="204"/>
<source>Default rendering intent for images. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
<translation>Intento rendering predefinito per le immagini. Se non avete un motivo per cambiarlo,
dovreste usare il colorimetrico relativo o il percettivo.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="212"/>
<source>Sol&id Colors:</source>
<translation>Tin&te unite:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="228"/>
<source>Default rendering intent for solid colors. Unless you know why to change it,
Relative Colorimetric or Perceptual should be chosen.</source>
<translation>Intento rendering predefinito per le tinte unite. Se non avete un motivo per cambiarlo,
dovreste usare il colorimetrico relativo o il percettivo.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="274"/>
<source>Enable 'soft proofing' of how your document colors will print,
based on the chosen printer profile.</source>
<translation>Abilita la prova su schermo che mostra come i colori del documento verranno
stampati, basata sul profilo di stampante scelto.</translation>
</message>
<message>
<source>Sim&ulate Printer on the Screen</source>
<translation type="obsolete">Sim&ulazione di stampa su schermo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="285"/>
<source>Simulate a full color managed environment :
all colors, rgb or cmyk, are converted to printer color space.</source>
<translation>Simula un ambiente con gestione del colore completa:
tutti i colori, rgb o cmyk, sono convertiti nello spazio colori della stampante.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="289"/>
<source>Convert all colors to printer space</source>
<translation>Converti tutti i colori in spazio colori della stampante</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="296"/>
<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>Metodo di visualizzazione dei colori sullo schermo che potrebbero non essere stampati correttamente.
Necessita di profili precisi e serve solo come un avviso.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="300"/>
<source>Mark Colors out of &Gamut</source>
<translation>Segna colori fuori &gamma</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="263"/>
<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>La Compensazione del Punto Nero (Black Point Compensation) è un metodo di miglioramento del contrasto nelle foto.
Si raccomanda di abilitarlo se si hanno foto nel documento.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="176"/>
<source>Document Rendering Intents</source>
<translation>Intenti rendering per il documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmsprefsbase.ui" line="267"/>
<source>Use &Blackpoint Compensation</source>
<translation>Usa &Compensazione Punto Nero</translation>
</message>
</context>
<context>
<name>CMYKChoose</name>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="90"/>
<source>Edit Color</source>
<translation>Modifica colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="114"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="632"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="842"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="849"/>
<source>CMYK</source>
<translation>CMYK</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="115"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="384"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="854"/>
<source>RGB</source>
<translation>RGB</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="116"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="707"/>
<source>Web Safe RGB</source>
<translation>RGB per Web</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="133"/>
<source>New</source>
<translation>Nuovo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="150"/>
<source>Old</source>
<translation>Vecchio</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="191"/>
<source>Scribus Swatches</source>
<translation>Raccolte di Scribus</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="195"/>
<source>User Swatches</source>
<translation>Raccolte utente</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="235"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="657"/>
<source>C:</source>
<translation>C:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="262"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="658"/>
<source>M:</source>
<translation>M:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="289"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="659"/>
<source>Y:</source>
<translation>Y:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="316"/>
<source>K:</source>
<translation>K:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="413"/>
<source>Dynamic Color Bars</source>
<translation>Barre di colore dinamiche</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="411"/>
<source>Static Color Bars</source>
<translation>Barre di colore statiche</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="696"/>
<source>R:</source>
<translation>R:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="697"/>
<source>G:</source>
<translation>V:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="698"/>
<source>B:</source>
<translation>B:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="257"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="284"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="311"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="338"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="654"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="655"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="656"/>
<source> %</source>
<translation> %</translation>
</message>
<message>
<source>HSV-Colormap</source>
<translation type="obsolete">HSV-Colourmap</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="99"/>
<source>&Name:</source>
<translation>&Nome:</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="109"/>
<source>Color &Model</source>
<translation>&Modello di colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="123"/>
<source>Is Spot Color</source>
<translation>Colore a tinta piatta</translation>
</message>
<message>
<source>Is Registration Color</source>
<translation type="obsolete">Is Registration Colour</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="945"/>
<source>You cannot create a color named "%1".
It is a reserved name for transparent color</source>
<translation>Non è possibile creare un colore chiamato "%1".
È un nome riservato per un colore trasparente</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/ui/cmykfw.cpp" line="954"/>
<source>The name of the color already exists,
please choose another one.</source>
<translation>Il nome scelto per questo colore esiste già.
Inserire un nome diverso.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="359"/>
<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>Con questa opzione il colore sarà considerato a tinta piatta, e quindi richiederà un'apposita lastra o separazione. Le tinte piatte sono usate soprattutto quando un logo o un altro colore necessita di una rappresentazione esatta o non può essere riprodotto con inchiostri CMYK. Esempi di inchiostri di questo tipo sono quelli metallici o fluorescenti.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="727"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="728"/>
<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>Se la gestione del colore è attiva, la presenza di un indicatore triangolare di avviso indica che il colore potrebbe trovarsi al di fuori della gamma del profilo stampante corrente. Ciò significa che il colore potrebbe essere stampato in modo diverso da come appare a video. Altre indicazioni sugli avvisi di "fuori gamma" si trovano nella guida in linea, nella sezione sulla gestione del colore.</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="938"/>
<source>You cannot create a color without a name
Please give it a name</source>
<translation>Non è possibile creare un colore senza nome.
Si prega di fornire un nome</translation>
</message>
<message>
<location filename="../../../scribus/ui/cmykfw.cpp" line="188"/>
<location filename="../../../scribus/ui/cmykfw.cpp" line="199"/>
<source>HSV Color Map</source>
<translation>Mappa di colori HSV</translation>
</message>
</context>
<context>
<name>CWDialog</name>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="320"/>
<source>Merging colors</source>
<translation>Colori da fondere</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/>
<source>Error: </source>
<translation>Errore: </translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="326"/>
<source>Color %1 exists already!</source>
<translation>Il colore %1 già esiste!</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="331"/>
<source>Color %1 appended.</source>
<translation>Colore %1 aggiunto.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="335"/>
<source>Now opening the color manager.</source>
<translation>Apertura della gestione colori.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="338"/>
<source>Color Merging</source>
<translation>Fusione colori</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.cpp" line="487"/>
<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>Impossibile trovare il colore richiesto. È stato scelto probabilmente il nero, il grigio o il bianco. È impossibile elaborare questo colore.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="15"/>
<source>Color Wheel</source>
<translation>Mappa cromatica</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>Clicca sulla mappa per ottenere il colore di base. Il suo modello di colore dipende dalla scheda scelta.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="52"/>
<source>Result Colors</source>
<translation>Colori risultanti</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>Colori dello schema di colore scelto.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="116"/>
<source>Color Scheme Method</source>
<translation>Metodo dello schema di colori</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="142"/>
<source>Angle:</source>
<translation>Angolo:</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>Differenza tra il valore selezionato e quelli calcolati. Consultare la documentazione per maggiori informazioni.</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>Scegliere uno dei metodi per la creazione di uno schema di colore. Consultare la documentazione per maggiori informazioni.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="201"/>
<source>Merge created colors into the document colors</source>
<translation>Fondi i colori creati nei colori del documento</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="204"/>
<source>&Merge</source>
<translation>&Fondi</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="207"/>
<source>Alt+M</source>
<translation>Alt+F</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="214"/>
<source>Replace created colors in the document colors</source>
<translation>Sostituisci i colori creati nei colori del documento</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="217"/>
<source>&Replace</source>
<translation>So&stituisci</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="220"/>
<source>Alt+R</source>
<translation>Alt+S</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="227"/>
<source>Leave colors untouched</source>
<translation>Non modificare i colori</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="230"/>
<source>&Cancel</source>
<translation>An&nulla</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="233"/>
<source>Alt+C</source>
<translation>Alt+N</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="242"/>
<source>Preview:</source>
<translation>Anteprima:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="266"/>
<source>Sample color scheme.</source>
<translation>Esempio di schema di colore.</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>Simula difetti comuni di vista. Scegliere il tipo di difetto.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="292"/>
<source>Vision Defect Type:</source>
<translation>Difetto visivo:</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>V:</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>Ton:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="784"/>
<source>S:</source>
<translation>Sat:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="811"/>
<source>V:</source>
<translation>Lum:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/cwdialog.ui" line="918"/>
<source>Document</source>
<translation>Documento</translation>
</message>
</context>
<context>
<name>Canvas</name>
<message>
<location filename="../../../scribus/canvas.cpp" line="2435"/>
<location filename="../../../scribus/canvas.cpp" line="2463"/>
<source>X: %1
Y: %2</source>
<translation>X: %1
Y: %2</translation>
</message>
<message>
<location filename="../../../scribus/canvas.cpp" line="2448"/>
<source>X: %1</source>
<translation>X: %1</translation>
</message>
<message>
<location filename="../../../scribus/canvas.cpp" line="2455"/>
<source>Y: %1</source>
<translation>Y: %1</translation>
</message>
<message>
<location filename="../../../scribus/canvas.cpp" line="2471"/>
<source>Length: %1
Angle: %2</source>
<translation>Lunghezza: %1
Angolo: %2</translation>
</message>
<message>
<location filename="../../../scribus/canvas.cpp" line="2473"/>
<source>Width: %1
Height: %2</source>
<translation>Larghezza: %1
Altezza: %2</translation>
</message>
<message>
<location filename="../../../scribus/canvas.cpp" line="2485"/>
<location filename="../../../scribus/canvas.cpp" line="2492"/>
<source>Angle: %1</source>
<translation>Angolo: %1</translation>
</message>
</context>
<context>
<name>CanvasMode_EyeDropper</name>
<message>
<location filename="../../../scribus/canvasmode_eyedropper.cpp" line="174"/>
<source>The selected color does not exist in the document's color set. Please enter a name for this new color.</source>
<translation>Il colore scelto non esiste nella raccolta di questo documento. Inserisci un nome per questo nuovo colore.</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_eyedropper.cpp" line="177"/>
<source>Color Not Found</source>
<translation>Colore non trovato</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_eyedropper.cpp" line="181"/>
<source>The name you have selected already exists. Please enter a different name for this new color.</source>
<translation>Il nome scelto esiste già. Inserire un nome diverso per questo nuovo colore.</translation>
</message>
</context>
<context>
<name>CanvasMode_FrameLinks</name>
<message>
<location filename="../../../scribus/canvasmode_framelinks.cpp" line="194"/>
<source>Linking Text Frames</source>
<translation>Collegamento cornici di testo</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_framelinks.cpp" line="198"/>
<source>Before</source>
<translation>Prima</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_framelinks.cpp" line="199"/>
<source>After</source>
<translation>Dopo</translation>
</message>
</context>
<context>
<name>CanvasMode_Normal</name>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="389"/>
<source>Go to Page %1</source>
<translation type="unfinished">Vai alla pagina %1</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="391"/>
<source>Go to URL %1</source>
<translation type="unfinished">Vai all'URL %1</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="393"/>
<source>Go to Page %1 in File %2</source>
<translation type="unfinished">Vai alla pagina %1 nel file %2</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="434"/>
<source>Overflow Characters: %1</source>
<translation>Caratteri in eccesso: %1</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1536"/>
<source>Page %1 does not exist!</source>
<translation type="unfinished">Pagina %1 non esiste!</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1542"/>
<source>Link Target is Web URL.
URL: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1543"/>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1548"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1547"/>
<source>Link Target is external File.
File: %1
Page: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1814"/>
<source>All Supported Formats</source>
<translation>Tutti i formati supportati</translation>
</message>
<message>
<location filename="../../../scribus/canvasmode_normal.cpp" line="1842"/>
<source>Open</source>
<translation>Apri</translation>
</message>
</context>
<context>
<name>CellStyleComboBox</name>
<message>
<location filename="../../../scribus/ui/spalette.cpp" line="145"/>
<location filename="../../../scribus/ui/spalette.cpp" line="158"/>
<location filename="../../../scribus/ui/spalette.cpp" line="169"/>
<source>No Style</source>
<translation>Nessuno stile</translation>
</message>
</context>
<context>
<name>CgmPlug</name>
<message>
<location filename="../../../scribus/plugins/import/cgm/importcgm.cpp" line="191"/>
<source>Importing: %1</source>
<translation>Importazione: %1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/cgm/importcgm.cpp" line="194"/>
<source>Analyzing File:</source>
<translation>Analisi file:</translation>
</message>
<message>
<source>Group%1</source>
<translation type="obsolete">Gruppo%1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/cgm/importcgm.cpp" line="441"/>
<source>Generating Items</source>
<translation>Generazione elementi</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>&Insert</source>
<translation type="obsolete">&Insert</translation>
</message>
<message>
<source>C&lear</source>
<translation type="obsolete">C&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/ui/charselect.cpp" line="28"/>
<source>Scribus Char Palette (*.ucp);;All Files (*)</source>
<translation>Tavolozza caratteri Scribus (*.ucp);;Tutti i file (*)</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/ui/charselect.cpp" line="226"/>
<source>Choose a filename to open</source>
<translation>Scegli il nome del file da aprire</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.cpp" line="260"/>
<location filename="../../../scribus/ui/charselect.cpp" line="302"/>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.cpp" line="261"/>
<source>Error reading file %1 - file is corrupted propably.</source>
<translation>Errore nella lettura del %1 - il file probabilmente è difettoso.</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/ui/charselect.cpp" line="303"/>
<source>Cannot write file %1</source>
<translation>Impossibile salvare il 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/ui/charselect.ui" line="13"/>
<source>Character Palette</source>
<translation>Tavolozza caratteri</translation>
</message>
<message>
<source>&Search</source>
<translation type="obsolete">&Search</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.cpp" line="311"/>
<source>Empty the Palette?</source>
<translation>Vuota la tavolozza?</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.cpp" line="312"/>
<source>You will remove all characters from this palette. Are you sure?</source>
<translation>Verranno eliminati tutti i caratteri da questa tavolozza. Sei sicuro?</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.ui" line="24"/>
<source>Hide/Show Enhanced Palette</source>
<translatorcomment>??</translatorcomment>
<translation>Nascondi/Mostra tavolozza estesa</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselect.cpp" line="275"/>
<source>Save Quick Character Palette</source>
<translation>Salvataggio veloce tavolozza caratteri</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/ui/charselectenhanced.cpp" line="208"/>
<source>Full Character Set</source>
<translation>Insieme caratteri completo</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="213"/>
<source>Basic Latin</source>
<translation>Latino base</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="219"/>
<source>Latin-1 Supplement</source>
<translation>Latino-1 Supplementare</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="225"/>
<source>Latin Extended-A</source>
<translation>Latino esteso-A</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="231"/>
<source>Latin Extended-B</source>
<translation>Latino esteso-B</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="237"/>
<source>General Punctuation</source>
<translation>Punteggiatura generale</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="243"/>
<source>Super- and Subscripts</source>
<translation>Apici e pedici</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="249"/>
<source>Currency Symbols</source>
<translation>Simboli valuta</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="255"/>
<source>Letterlike Symbols</source>
<translation>Simboli alfabetici</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="261"/>
<source>Number Forms</source>
<translation>Formati numerici</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="267"/>
<source>Arrows</source>
<translation>Frecce</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="273"/>
<source>Mathematical Operators</source>
<translation>Operatori matematici</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="279"/>
<source>Box Drawing</source>
<translation>Disegno caselle</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="285"/>
<source>Block Elements</source>
<translation>Blocchi</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="291"/>
<source>Geometric Shapes</source>
<translation>Forme geometriche</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="297"/>
<source>Miscellaneous Symbols</source>
<translation>Simboli vari</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="303"/>
<source>Dingbats</source>
<translation>Dingbats</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="309"/>
<source>Small Form Variants</source>
<translation>Piccole varianti di forma</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="315"/>
<source>Ligatures</source>
<translation>Legature</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="321"/>
<source>Specials</source>
<translation>Speciali</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="327"/>
<source>Greek</source>
<translation>Greco</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="333"/>
<source>Greek Extended</source>
<translation>Greco esteso</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="339"/>
<source>Cyrillic</source>
<translation>Cirillico</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="345"/>
<source>Cyrillic Supplement</source>
<translation>Cirillico supplementare</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="351"/>
<source>Arabic</source>
<translation>Arabo</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="357"/>
<source>Arabic Extended A</source>
<translation>Arabo esteso A</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="363"/>
<source>Arabic Extended B</source>
<translation>Arabo esteso B</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.cpp" line="369"/>
<source>Hebrew</source>
<translation>Ebraico</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="13"/>
<source>Enhanced Character Palette</source>
<translation>Tavolozza caratteri estesa</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="19"/>
<source>&Font:</source>
<translation>&Carattere:</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="45"/>
<source>C&haracter Class:</source>
<translation>Cl&asse di caratteri:</translation>
</message>
<message>
<location filename="../../../scribus/ui/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>Se si mantiene premuto il bottone destro del mouse è possibile vedere una miniatura.
Il tasto Inserisci inserisce un carattere (speciale) nell'area di selezione in basso, e il tasto Pulisci rimuove l'ultimo inserito</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="96"/>
<source>Insert &Code:</source>
<translation>Inserisci c&odice:</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/ui/charselectenhanced.ui" line="131"/>
<source>Glyphs to Insert</source>
<translation>Glifi da inserire</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="171"/>
<source>Insert the characters at the cursor in the text</source>
<translation>Inserisce i caratteri nel testo alla posizione del cursore</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="174"/>
<source>&Insert</source>
<translation>&Inserisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="184"/>
<source>Delete the current selection(s).</source>
<translation>Elimina la/le selezione/i corrente/i.</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="187"/>
<source>C&lear</source>
<translation>Pu&lisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/charselectenhanced.ui" line="106"/>
<source>Type in a four digit Unicode value directly here</source>
<translation>Digitare qui un valore Unicode a quattro cifre</translation>
</message>
</context>
<context>
<name>CharStyleComboBox</name>
<message>
<location filename="../../../scribus/ui/spalette.cpp" line="90"/>
<location filename="../../../scribus/ui/spalette.cpp" line="103"/>
<location filename="../../../scribus/ui/spalette.cpp" line="114"/>
<source>No Style</source>
<translation>Nessuno stile</translation>
</message>
</context>
<context>
<name>CharTableView</name>
<message>
<location filename="../../../scribus/chartableview.cpp" line="22"/>
<source>Delete</source>
<translation>Elimina</translation>
</message>
</context>
<context>
<name>CheckDocument</name>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="670"/>
<source>Glyphs missing</source>
<translation>Glifi mancanti</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="671"/>
<source>Text overflow</source>
<translation>Cornice con testo troppo lungo</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="672"/>
<source>Object is not on a Page</source>
<translation>L'oggetto non è su una pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="673"/>
<source>Missing Image</source>
<translation>Immagine mancante</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="677"/>
<source>Object has transparency</source>
<translation>L'oggetto possiede una trasparenza</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="678"/>
<source>Object is a PDF Annotation or Field</source>
<translation>L'oggetto è un annotazione o un campo PDF</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="679"/>
<source>Object is a placed PDF</source>
<translation>L'oggetto è un PDF posizionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="682"/>
<source>Image dimension is smaller than its frame</source>
<translation>L'immagine ha dimensioni minori della sua cornice</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="330"/>
<source>Document</source>
<translation>Documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="332"/>
<source>No Problems found</source>
<translation>Nessun problema rilevato</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="558"/>
<source>Page </source>
<translation>Pagina </translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="622"/>
<source>Free Objects</source>
<translation>Oggetti liberi</translation>
</message>
<message>
<source>Problems found</source>
<translation type="obsolete">Problems found</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="655"/>
<source>Preflight Verifier</source>
<translation>Verifica preliminare</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="657"/>
<source>Items</source>
<translation>Elementi</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="657"/>
<source>Problems</source>
<translation>Problemi</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="662"/>
<source>Current Profile:</source>
<translation>Profilo corrente:</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="632"/>
<location filename="../../../scribus/ui/checkDocument.cpp" line="663"/>
<source>&Ignore Errors</source>
<translation>&Ignora Errori</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="664"/>
<source>Check again</source>
<translation>Controlla ancora</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/ui/checkDocument.cpp" line="680"/>
<source>Image is GIF</source>
<translation>Immagine GIF</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="333"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="374"/>
<source>Transparency used</source>
<translation>Trasparenza utilizzata</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="379"/>
<source>Blendmode used</source>
<translation>Metodo di fusione utilizzato</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="392"/>
<source>Layer "%1"</source>
<translation>Livello "%1"</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="681"/>
<source>Annotation uses a non TrueType font</source>
<translation>L'annotazione utilizza un font non TrueType</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="666"/>
<source>Preflight profile to base the report generation on. Options can be set in Document Setup or Preferences</source>
<translation>Profilo della verifica su cui basare la generazione del rapporto. È possibile configurare le Opzioni in Impostazioni documento o in Prefernze</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="667"/>
<source>Ignore found errors and continue to export or print. Be sure to understand the errors you are ignoring before continuing.</source>
<translation>Ignora gli errori trovati e continua l'esportazione o la stampa. Assicurarsi di aver capito gli errori che si stanno ignorando prima di continuare.</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="668"/>
<source>Rerun the document scan to check corrections you may have made</source>
<translation>Riesegue il controllo documento per verificare le correzioni eventualmente fatte</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="674"/>
<source>Empty Image Frame</source>
<translation>Svuota cornice immagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="355"/>
<source>Layers</source>
<translation>Livelli</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="348"/>
<source>After Marks update document was changed</source>
<translation type="unfinished">Dopo l'aggiornamento delle note il documento è stato cambiato</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="384"/>
<source>Print/Visible Mismatch</source>
<translation>Stampabile/visibile non corrispondente</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="397"/>
<location filename="../../../scribus/ui/checkDocument.cpp" line="485"/>
<source>Issue(s): %1</source>
<translation>Problema/i: %1</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="408"/>
<source>Master Pages</source>
<translation>Pagine mastro</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="658"/>
<source>Layer</source>
<translation>Livello</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="675"/>
<source>Image resolution below %1 DPI,
currently %2 x %3 DPI</source>
<translation>Risoluzione immagine inferiore a %1 DPI,
attualmente %2 x %3 DPI</translation>
</message>
<message>
<location filename="../../../scribus/ui/checkDocument.cpp" line="676"/>
<source>Image resolution above %1 DPI,
currently %2 x %3 DPI</source>
<translation>Risoluzione immagine superiore a %1 DPI,
attualmente %2 x %3 DPI</translation>
</message>
</context>
<context>
<name>ClockWidget</name>
<message>
<location filename="../../../scribus/ui/clockwidget.cpp" line="77"/>
<source>A</source>
<translation>A</translation>
</message>
</context>
<context>
<name>CollectForOutput</name>
<message>
<location filename="../../../scribus/collect4output.cpp" line="71"/>
<source>Choose a Directory</source>
<translation>Scegli una cartella</translation>
</message>
<message>
<location filename="../../../scribus/collect4output.cpp" line="95"/>
<source>Cannot create directory:
%1</source>
<translation>Impossibile creare la cartella:
%1</translation>
</message>
<message>
<location filename="../../../scribus/collect4output.cpp" line="110"/>
<source>Collecting...</source>
<translation>Raccolta...</translation>
</message>
<message>
<location filename="../../../scribus/collect4output.cpp" line="114"/>
<source>Cannot collect all files for output for file:
%1</source>
<translation>Impossibile raccogliere tutti i file per l'output sul file:
%1</translation>
</message>
<message>
<location filename="../../../scribus/collect4output.cpp" line="129"/>
<source>Cannot collect the file:
%1</source>
<translation>Impossibile aggiungere il file:
%1</translation>
</message>
</context>
<context>
<name>CollectForOutput_UI</name>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="39"/>
<source>Collecting Items:</source>
<translation>Raccolta elementi:</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="42"/>
<source>Collecting Patterns:</source>
<translation>Raccolta motivi:</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="48"/>
<source>Collecting Fonts:</source>
<translation>Raccolta caratteri:</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="54"/>
<source>Collecting Profiles:</source>
<translation>Raccolta profili:</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="87"/>
<source>Collecting...</source>
<translation>Raccolta...</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="91"/>
<source>Cannot collect all files for output for file:
%1</source>
<translation>Impossibile raccogliere tutti i file per l'output sul file:
%1</translation>
</message>
<message>
<location filename="../../../scribus/ui/collectforoutput_ui.cpp" line="114"/>
<source>Cannot collect the file:
%1</source>
<translation>Impossibile aggiungere il file:
%1</translation>
</message>
</context>
<context>
<name>ColorListBox</name>
<message>
<location filename="../../../scribus/ui/colorlistbox.cpp" line="250"/>
<source>Sort by Name</source>
<translation>Ordina per nome</translation>
</message>
<message>
<location filename="../../../scribus/ui/colorlistbox.cpp" line="251"/>
<source>Sort by Color</source>
<translation>Ordina per colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/colorlistbox.cpp" line="252"/>
<source>Sort by Type</source>
<translation>Ordina per tipo</translation>
</message>
</context>
<context>
<name>ColorManager</name>
<message>
<source>Colors</source>
<translation type="obsolete">Colori</translation>
</message>
<message>
<source>&Import</source>
<translation type="obsolete">&Importa</translation>
</message>
<message>
<source>&New</source>
<translation type="obsolete">&Nuovo</translation>
</message>
<message>
<source>&Edit</source>
<translation type="obsolete">&Modifica</translation>
</message>
<message>
<source>D&uplicate</source>
<translation type="obsolete">D&uplica</translation>
</message>
<message>
<source>&Delete</source>
<translation type="obsolete">&Elimina</translation>
</message>
<message>
<source>&Remove Unused</source>
<translation type="obsolete">&Elimina inutilizzati</translation>
</message>
<message>
<source>Color Sets</source>
<translation type="obsolete">Raccolta colori</translation>
</message>
<message>
<source>Current Color Set:</source>
<translation type="obsolete">Raccolta colori corrente:</translation>
</message>
<message>
<source>&Save Color Set</source>
<translation type="obsolete">&Salva raccolta colori</translation>
</message>
<message>
<source>Choose a color set to load</source>
<translation type="obsolete">Scegli raccolta colori da caricare</translation>
</message>
<message>
<source>Save the current color set</source>
<translation type="obsolete">Salva attuale raccolta colore</translation>
</message>
<message>
<source>Remove unused colors from current document's color set</source>
<translation type="obsolete">Elimina colori inutilizzati dall'attuale raccolta dei colori</translation>
</message>
<message>
<source>Import colors to the current set from an existing document</source>
<translation type="obsolete">Importa colori all'attuale raccolta da un documento esistente</translation>
</message>
<message>
<source>Create a new color within the current set</source>
<translation type="obsolete">Crea un nuovo colore dall'attuale raccolta</translation>
</message>
<message>
<source>Edit the currently selected color</source>
<translation type="obsolete">Modifica il colore attualmente selezionato</translation>
</message>
<message>
<source>Make a copy of the currently selected color</source>
<translation type="obsolete">Fai una copia del colore attualmente selezionato</translation>
</message>
<message>
<source>Delete the currently selected color</source>
<translation type="obsolete">Elimina il colore attualmente selezionato</translation>
</message>
<message>
<source>Make the current colorset the default color set</source>
<translation type="obsolete">Rende l'attuale raccolta colori predefinita</translation>
</message>
<message>
<source>&Name:</source>
<translation type="obsolete">&Nome:</translation>
</message>
<message>
<source>Choose a Name</source>
<translation type="obsolete">Scegli un nome</translation>
</message>
<message>
<source>Copy of %1</source>
<translation type="obsolete">Copia di %1</translation>
</message>
<message>
<source>New Color</source>
<translation type="obsolete">Nuovo colore</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>
<source>Information</source>
<translation type="obsolete">Informazioni</translation>
</message>
<message>
<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 -&gt; Import.
Not all files have DSC conformant comments where the color descriptions are located.
This prevents importing colors from some files.
See the Edit Colors section of the documentation for more details.</source>
<translation type="obsolete">Nel file %1 non ci sono colori importabili.
Se si tratta di un file basato su PostScript, provare ad importarlo con File -&gt; Importa.
Non tutti i file hanno commenti compatibili DSC, nei quali sono contenute le descrizioni dei colori.
Ciò impedisce l'importazione da alcuni file.
Vedere la sezione Modifica colori della documentazione per ulteriori dettagli.</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>
<source>If color management is enabled, a triangle warning indicator is a warning that the color maybe outside of the color gamut of the current printer profile selected. What this means is the color may not print exactly as indicated on screen. Spot colors are indicated by a red circle. More hints about gamut warnings are in the online help under Color Management. Registration colors will have a registration mark next to the color. Use Registration only for printers marks and crop marks.</source>
<translation type="obsolete">Se è abilitata la gestione colori, un indicatore triangolare funge da avviso che il colore potrebbe essere fuori gamma del corrente profilo stampante selezionato. Ciò significa che il color potrebe non essere stampato come mostrato sullo schermo. I colori a tinta piatta sono indicati da un cerchio rosso. Ulteriori informazioni sugli avvisi relativi alla gamma si trovano nell'Aiuto in linea, sotto Gestione colori. I colori di registrazione avranno un marchio di registrazione vicino al colore. Utilizzare la Registrazione solo per marchi di stampante o per indicatori di taglio.</translation>
</message>
<message>
<source>All Supported Formats (%1);;Documents (%2);;Other Files (%3);;All Files (*)</source>
<translation type="obsolete">Tutti i formati supportati (%1);;Documenti (%2);;Altri file (%3);;Tutti i file (*)</translation>
</message>
<message>
<source>Import Colors</source>
<translation type="obsolete">Importa colori</translation>
</message>
</context>
<context>
<name>ColorWheel</name>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="139"/>
<source>Monochromatic</source>
<translation>Monocromatico</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="140"/>
<source>Analogous</source>
<translation>Analogo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="141"/>
<source>Complementary</source>
<translation>Complementare</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="142"/>
<source>Split Complementary</source>
<translation>Complementare separato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="143"/>
<source>Triadic</source>
<translation>Triadico</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="144"/>
<source>Tetradic (Double Complementary)</source>
<translation>Tetradico (complementare doppio)</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheelwidget.cpp" line="44"/>
<source>Base Color</source>
<translation>Colore base</translation>
</message>
<message>
<source>Monochromatic Light</source>
<translation type="obsolete">Monocromatico chiaro</translation>
</message>
<message>
<source>Monochromatic Dark</source>
<translation type="obsolete">Monocromatico scuro</translation>
</message>
<message>
<source>1st. Analogous</source>
<translation type="obsolete">1° analogo</translation>
</message>
<message>
<source>2nd. Analogous</source>
<translation type="obsolete">2° analogo</translation>
</message>
<message>
<source>1st. Split</source>
<translation type="obsolete">1° separato</translation>
</message>
<message>
<source>2nd. Split</source>
<translation type="obsolete">2° separato</translation>
</message>
<message>
<source>3rd. Split</source>
<translation type="obsolete">3° separato</translation>
</message>
<message>
<source>4th. Split</source>
<translation type="obsolete">4° separato</translation>
</message>
<message>
<source>1st. Triadic</source>
<translation type="obsolete">1° triadico</translation>
</message>
<message>
<source>2nd. Triadic</source>
<translation type="obsolete">2° triadico</translation>
</message>
<message>
<source>1st. Tetradic (base opposite)</source>
<translation type="obsolete">1° tetradico (diametralmente opposto)</translation>
</message>
<message>
<source>2nd. Tetradic (angle)</source>
<translation type="obsolete">2° tetradico (angolo)</translation>
</message>
<message>
<source>3rd. Tetradic (angle opposite)</source>
<translation type="obsolete">3° tetradico (angolo opposto)</translation>
</message>
</context>
<context>
<name>ColorWheelPlugin</name>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="48"/>
<source>&Color Wheel...</source>
<translation>Cerchio &cromatico...</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="65"/>
<source>Color setting helper</source>
<translation>Assistente per l'impostazione colori</translation>
</message>
<message>
<location filename="../../../scribus/plugins/colorwheel/colorwheel.cpp" line="66"/>
<source>Color selector with color theory included.</source>
<translation>Selettore del colore con teoria dei colori inclusa.</translation>
</message>
</context>
<context>
<name>ColumnResize</name>
<message>
<location filename="../../../scribus/canvasgesture_columnresize.cpp" line="92"/>
<source>Width</source>
<translation>Larghezza</translation>
</message>
</context>
<context>
<name>CommonStrings</name>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="272"/>
<source>&Apply</source>
<translation>&Applica</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="275"/>
<source>&Cancel</source>
<translation>Ann&ulla</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="282"/>
<source>&OK</source>
<translation>&OK</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="285"/>
<source>&Save</source>
<translation>&Salva</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="288"/>
<source>Warning</source>
<translation>Avviso</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="279"/>
<source>None</source>
<comment>color name</comment>
<translation>Nessuno</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="302"/>
<source>PDF 3D Annotation</source>
<translation>Annotazione PDF 3D</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="303"/>
<source>Symbol</source>
<translation>Simbolo</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="304"/>
<source>Group</source>
<translation>Gruppo</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="305"/>
<source>Regular Polygon</source>
<translation>Poligono regolare</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="306"/>
<source>Arc</source>
<translation>Arco</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="307"/>
<source>Spiral</source>
<translation>Spirale</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="308"/>
<source>Table</source>
<translation>Tabella</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="311"/>
<source>PDF Radio Button</source>
<translation type="unfinished">Radio Button PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="318"/>
<source>Button</source>
<translation type="unfinished">Bottone</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="319"/>
<source>RadioButton</source>
<translation type="unfinished">Radio Button</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="320"/>
<source>Textfield</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="321"/>
<source>Checkbox</source>
<translation type="unfinished">Casella</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="322"/>
<source>Combobox</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="323"/>
<source>Listbox</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="324"/>
<source>TextAnnot</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="325"/>
<source>Link</source>
<translation type="unfinished">Collegamento</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="329"/>
<source>Custom</source>
<comment>CommonStrings, custom page size</comment>
<translation>Personalizzato</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="335"/>
<source>Single Page</source>
<translation>Pagina singola</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="336"/>
<source>Double Sided</source>
<translatorcomment>Fronte retro</translatorcomment>
<translation>Doppia facciata</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="337"/>
<source>3-Fold</source>
<translation>Pieghevoli 3 falde</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="338"/>
<source>4-Fold</source>
<translation>Pieghevoli 4 falde</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="374"/>
<source>Default Table Style</source>
<translation>Stile tabella predefinito</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="375"/>
<source>Default Cell Style</source>
<translation>Stile di cella predefinito</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="378"/>
<source>Monday</source>
<translation>Lunedì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="379"/>
<source>Tuesday</source>
<translation>Martedì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="380"/>
<source>Wednesday</source>
<translation>Mercoledì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="381"/>
<source>Thursday</source>
<translation>Giovedì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="382"/>
<source>Friday</source>
<translation>Venerdì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="383"/>
<source>Saturday</source>
<translation>Sabato</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="384"/>
<source>Sunday</source>
<translation>Domenica</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="385"/>
<source>January</source>
<translation>Gennaio</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="386"/>
<source>February</source>
<translation>Febbraio</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="387"/>
<source>March</source>
<translation>Marzo</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="388"/>
<source>April</source>
<translation>Aprile</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="389"/>
<source>May</source>
<translation>Maggio</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="390"/>
<source>June</source>
<translation>Giugno</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="391"/>
<source>July</source>
<translation>Luglio</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="392"/>
<source>August</source>
<translation>Agosto</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="393"/>
<source>September</source>
<translation>Settembre</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="394"/>
<source>October</source>
<translation>Ottobre</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="395"/>
<source>November</source>
<translation>Novembre</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="396"/>
<source>December</source>
<translation>Dicembre</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="462"/>
<source>Alt</source>
<translation>Alt</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="463"/>
<source>Shift</source>
<translation>Maiusc</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="466"/>
<source>Cmd</source>
<translation>Cmd</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="467"/>
<location filename="../../../scribus/commonstrings.cpp" line="470"/>
<location filename="../../../scribus/commonstrings.cpp" line="474"/>
<source>Ctrl</source>
<translation>Ctrl</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="471"/>
<source>Windows</source>
<translation>Finestre</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="475"/>
<source>Meta</source>
<translation>Meta</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="290"/>
<source>Yes</source>
<translation>Sì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="291"/>
<source>No</source>
<translation>No</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="292"/>
<source>&Yes</source>
<translation>&Sì</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="293"/>
<source>&No</source>
<translation>&No</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="345"/>
<source>Left Page</source>
<comment>Left page location</comment>
<translation>Pagina sinistra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="346"/>
<source>Middle</source>
<comment>Middle page location</comment>
<translation>Centro</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="347"/>
<source>Middle Left</source>
<comment>Middle Left page location</comment>
<translation>Centro sinistra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="348"/>
<source>Middle Right</source>
<comment>Middle Right page location</comment>
<translation>Centro destra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="349"/>
<source>Right Page</source>
<comment>Right page location</comment>
<translation>Pagina destra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="352"/>
<source>Normal</source>
<comment>Default single master page</comment>
<translation>Normale</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="354"/>
<source>Normal Left</source>
<comment>Default left master page</comment>
<translation>Normale sinistra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="356"/>
<source>Normal Middle</source>
<comment>Default middle master page</comment>
<translation>Normale centro</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="358"/>
<source>Normal Right</source>
<comment>Default right master page</comment>
<translation>Normale destra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="402"/>
<source>Monochrome</source>
<comment>Colorspace</comment>
<translation>Monocromatico</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="405"/>
<source>Normal Vision</source>
<comment>Color Blindness - Normal Vision</comment>
<translation>Visione normale</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="406"/>
<source>Protanopia (Red)</source>
<comment>Color Blindness - Red Color Blind</comment>
<translation>Cecità al rosso</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="407"/>
<source>Deuteranopia (Green)</source>
<comment>Color Blindness - Greed Color Blind</comment>
<translation>Cecità al verde</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="408"/>
<source>Tritanopia (Blue)</source>
<comment>Color Blindness - Blue Color Blind</comment>
<translation>Cecità al blu</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="409"/>
<source>Full Color Blindness</source>
<comment>Color Blindness - Full Color Blindness</comment>
<translation>Daltonismo</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="411"/>
<source>Custom: </source>
<comment>Custom Tab Fill Option</comment>
<translation>Personalizzato: </translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="360"/>
<source>Solid Line</source>
<translation>Linea continua</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="361"/>
<source>Dashed Line</source>
<translation>A trattini</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="362"/>
<source>Dotted Line</source>
<translation>A puntini</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="363"/>
<source>Dash Dot Line</source>
<translation>Trattino punto linea</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="364"/>
<source>Dash Dot Dot Line</source>
<translation>Trattino punto punto</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="413"/>
<source>None</source>
<comment>Optical Margin Setting</comment>
<translation>Nessuno</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="414"/>
<source>Left Protruding</source>
<comment>Optical Margin Setting</comment>
<translation>Sporgente a sinistra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="415"/>
<source>Right Protruding</source>
<comment>Optical Margin Setting</comment>
<translation>Sporgente a destra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="416"/>
<source>Left Hanging Punctuation</source>
<comment>Optical Margin Setting</comment>
<translation>Punteggiatura con rientro negativo a sinistra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="417"/>
<source>Right Hanging Punctuation</source>
<comment>Optical Margin Setting</comment>
<translation>Punteggiatura con rientro negativo a destra</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="418"/>
<source>Default</source>
<comment>Optical Margin Setting</comment>
<translation>Predefinito</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="421"/>
<source>Min. Word Tracking</source>
<translation>Spaziatura min. tra parole</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="422"/>
<source>Max. Word Tracking</source>
<translation>Spaziatura max. tra parole</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="425"/>
<source>Min. Glyph Extension</source>
<translation>Estensione minima tra glifi</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="426"/>
<source>Max. Glyph Extension</source>
<translation>Estensione massima tra glifi</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="278"/>
<source>None</source>
<translation>Nessuno</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="398"/>
<source>RGB</source>
<comment>Colorspace</comment>
<translation>RGB</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="399"/>
<source>CMYK</source>
<comment>Colorspace</comment>
<translation>CMYK</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="400"/>
<source>Grayscale</source>
<comment>Colorspace</comment>
<translation>Scala di grigi</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="401"/>
<source>Duotone</source>
<comment>Colorspace</comment>
<translation>Bicromia</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="403"/>
<source>Unknown</source>
<comment>Colorspace (Unknown)</comment>
<translation>Sconosciuto</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="430"/>
<source>PostScript</source>
<translation>PostScript</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="295"/>
<source>Text Frame</source>
<translation>Cornice testo</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="296"/>
<source>Image Frame</source>
<translation>Cornice immagine</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="297"/>
<source>Line</source>
<translation>Linea</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="298"/>
<source>Polygon</source>
<translation>Poligono</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="299"/>
<source>Polyline</source>
<translation>Multilinea</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="300"/>
<source>Text on a Path</source>
<translation>Testo su tracciato</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="309"/>
<source>Multiple</source>
<comment>Multiple frame types</comment>
<translatorcomment>Cornice?</translatorcomment>
<translation>Multipla</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="310"/>
<source>PDF Push Button</source>
<translation>Bottone PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="312"/>
<source>PDF Text Field</source>
<translation>Campo di testo PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="313"/>
<source>PDF Check Box</source>
<translation>Casella di controllo PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="314"/>
<source>PDF Combo Box</source>
<translation>Casella combinata PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="315"/>
<source>PDF List Box</source>
<translation>Lista PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="316"/>
<source>PDF Text Annotation</source>
<translation>Annotazione di testo PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="317"/>
<source>PDF Link Annotation</source>
<translation>Annotazione collegamento PDF</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="439"/>
<source>PostScript Level 1</source>
<translation>PostScript Livello 1</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="441"/>
<source>PostScript Level 2</source>
<translation>PostScript Livello 2</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="443"/>
<source>PostScript Level 3</source>
<translation>PostScript Livello 3</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="445"/>
<source>Windows GDI</source>
<translation>Windows GDI</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="301"/>
<source>Render Frame</source>
<translation>Cornice rendering</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="371"/>
<source>Default Paragraph Style</source>
<translation>Stile paragrafo predefinito</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="372"/>
<source>Default Character Style</source>
<translation>Stile carattere predefinito</translation>
</message>
<message>
<location filename="../../../scribus/commonstrings.cpp" line="373"/>
<source>Default Line Style</source>
<translation>Stile linea predefinito</translation>
</message>
</context>
<context>
<name>ContextMenu</name>
<message>
<location filename="../../../scribus/ui/contextmenu.cpp" line="277"/>
<source>Preview Settings</source>
<translation>Configurazione anteprima</translation>
</message>
<message>
<location filename="../../../scribus/ui/contextmenu.cpp" line="515"/>
<source>Paste File...</source>
<translation>Incolla file...</translation>
</message>
<message>
<location filename="../../../scribus/ui/contextmenu.cpp" line="549"/>
<source>Delete Page</source>
<translation>Elimina pagina</translation>
</message>
<message>
<source>Paste Image from Clipboard</source>
<translation type="obsolete">Incolla immagine dagli Appunti</translation>
</message>
</context>
<context>
<name>CopyPageToMasterPageBase</name>
<message>
<location filename="../../../scribus/ui/copypagetomasterpage.ui" line="16"/>
<source>Convert Page to Master Page</source>
<translation>Converti pagina in pagina mastro</translation>
</message>
<message>
<location filename="../../../scribus/ui/copypagetomasterpage.ui" line="24"/>
<source>Name:</source>
<translation>Nome:</translation>
</message>
<message>
<location filename="../../../scribus/ui/copypagetomasterpage.ui" line="39"/>
<source>Copy Applied Master Page Items</source>
<translation>Copia elementi pagina mastro applicata</translation>
</message>
</context>
<context>
<name>CopyPageToMasterPageDialog</name>
<message>
<location filename="../../../scribus/ui/copypagetomasterpagedialog.cpp" line="29"/>
<source>New Master Page %1</source>
<translation>Nuova Pagina mastro %1</translation>
</message>
</context>
<context>
<name>Cpalette</name>
<message>
<source>Normal</source>
<translation type="obsolete">Normale</translation>
</message>
<message>
<source>Horizontal Gradient</source>
<translation type="obsolete">Sfumatura orizzontale</translation>
</message>
<message>
<source>Vertical Gradient</source>
<translation type="obsolete">Sfumatura verticale</translation>
</message>
<message>
<source>Diagonal Gradient</source>
<translation type="obsolete">Sfumatura diagonale</translation>
</message>
<message>
<source>Cross Diagonal Gradient</source>
<translation type="obsolete">Sfumatura diagonale incrociata</translation>
</message>
<message>
<source>Radial Gradient</source>
<translation type="obsolete">Sfumatura radiale</translation>
</message>
<message>
<source>Opacity:</source>
<translation type="obsolete">Opacità:</translation>
</message>
<message>
<source> %</source>
<translation type="obsolete"> %</translation>
</message>
<message>
<source>Shade:</source>
<translation type="obsolete">Tonalità:</translation>
</message>
<message>
<source>Edit Line Color Properties</source>
<translation type="obsolete">Modifica proprietà colore linea</translation>
</message>
<message>
<source>Edit Fill Color Properties</source>
<translation type="obsolete">Modifica proprietà colore di fondo</translation>
</message>
<message>
<source>Saturation of color</source>
<translation type="obsolete">Saturazione del colore</translation>
</message>
<message>
<source>Normal or gradient fill method</source>
<translation type="obsolete">Metodo di riempimento normale o sfumato</translation>
</message>
<message>
<source>Set the transparency for the color selected</source>
<translation type="obsolete">Imposta trasparenza per il colore selezionato</translation>
</message>
<message>
<source>Free linear Gradient</source>
<translation type="obsolete">Sfumatura lineare libera</translation>
</message>
<message>
<source>Free radial Gradient</source>
<translation type="obsolete">Sfumatura radiale libera</translation>
</message>
<message>
<source>X1:</source>
<translation type="obsolete">X1:</translation>
</message>
<message>
<source>Y1:</source>
<translation type="obsolete">Y1:</translation>
</message>
<message>
<source> pt</source>
<translation type="obsolete"> pt</translation>
</message>
<message>
<source>X2:</source>
<translation type="obsolete">X2:</translation>
</message>
<message>
<source>Y2:</source>
<translation type="obsolete">Y2:</translation>
</message>
<message>
<source>Move Vector</source>
<translation type="obsolete">Sposta vettore</translation>
</message>
<message>
<source>Move the start of the gradient vector with the left mouse button pressed and move the end of the gradient vector with the right mouse button pressed</source>
<translation type="obsolete">Sposta l'inizio della sfumatura con il bottone sinistro premuto, e sposta la fine della sfumatura con il bottone destro premuto</translation>
</message>
<message>
<source>Transparency Settings</source>
<translation type="obsolete">Impostazioni trasparenza</translation>
</message>
<message>
<source>Blend Mode:</source>
<translation type="obsolete">Modo fusione:</translation>
</message>
<message>
<source>Darken</source>
<translation type="obsolete">Scuro</translation>
</message>
<message>
<source>Lighten</source>
<translation type="obsolete">Chiaro</translation>
</message>
<message>
<source>Multiply</source>
<translation type="obsolete">Moltiplica</translation>
</message>
<message>
<source>Screen</source>
<translatorcomment>???</translatorcomment>
<translation type="obsolete">Reticolo</translation>
</message>
<message>
<source>Overlay</source>
<translation type="obsolete">Sovrapponi</translation>
</message>
<message>
<source>Hard Light</source>
<translation type="obsolete">Luce forte</translation>
</message>
<message>
<source>Soft Light</source>
<translation type="obsolete">Luce debole</translation>
</message>
<message>
<source>Difference</source>
<translation type="obsolete">Differenza</translation>
</message>
<message>
<source>Color Dodge</source>
<translation type="obsolete">Sovraesponi colore</translation>
</message>
<message>
<source>Color Burn</source>
<translation type="obsolete">Sottoesponi colore</translation>
</message>
<message>
<source>Hue</source>
<translation type="obsolete">Tonalità</translation>
</message>
<message>
<source>Saturation</source>
<translation type="obsolete">Saturazione</translation>
</message>
<message>
<source>Color</source>
<translation type="obsolete">Colore</translation>
</message>
<message>
<source>Luminosity</source>
<translation type="obsolete">Luminosità</translation>
</message>
<message>
<source>Offsets</source>
<translation type="obsolete">Spostamenti</translation>
</message>
<message>
<source>X:</source>
<translation type="obsolete">X:</translation>
</message>
<message>
<source>Y:</source>
<translation type="obsolete">Y:</translation>
</message>
<message>
<source>Scaling</source>
<translation type="obsolete">Scala</translation>
</message>
<message>
<source>Rotation</source>
<translation type="obsolete">Rotazione</translation>
</message>
<message>
<source>Angle</source>
<translation type="obsolete">Angolo</translation>
</message>
<message>
<location filename="../../../scribus/ui/cpalette.cpp" line="396"/>
<location filename="../../../scribus/ui/cpalette.cpp" line="398"/>
<source>Pattern</source>
<translation>Motivo</translation>
</message>
<message>
<source>Exclusion</source>
<translation type="obsolete">Esclusione</translation>
</message>
<message>
<source>X-Scale:</source>
<translation type="obsolete">Scala X:</translation>
</message>
<message>
<source>Y-Scale:</source>
<translation type="obsolete">Scala Y:</translation>
</message>
<message>
<source>Display only used Colors</source>
<translation type="obsolete">Mostra solo colori utilizzati</translation>
</message>
<message>
<source>Display all colors from the document color list, or only the already used colors</source>
<translation type="obsolete">Mostra tutti i colori della lista di questo documento o solo quelli già usati</translation>
</message>
<message>
<location filename="../../../scribus/ui/cpalette.cpp" line="79"/>
<location filename="../../../scribus/ui/cpalette.cpp" line="92"/>
<source>Solid</source>
<translation>Tinta unita</translation>
</message>
<message>
<location filename="../../../scribus/ui/cpalette.cpp" line="80"/>
<location filename="../../../scribus/ui/cpalette.cpp" line="93"/>
<source>Gradient</source>
<translation>Sfumatura</translation>
</message>
<message>
<location filename="../../../scribus/ui/cpalette.cpp" line="636"/>
<location filename="../../../scribus/ui/cpalette.cpp" line="639"/>
<source>Custom</source>
<translation>Personalizzato</translation>
</message>
<message>
<location filename="../../../scribus/ui/cpalette.cpp" line="1225"/>
<source>Create Mesh</source>
<translation>Crea griglia</translation>
</message>
</context>
<context>
<name>CreateMode</name>
<message>
<location filename="../../../scribus/canvasmode_create.cpp" line="839"/>
<source>3DAnnot</source>
<translation type="unfinished">Annotazione 3D</translation>
</message>
</context>
<context>
<name>CreateRange</name>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="14"/>
<source>Create Range</source>
<translation>Crea intervallo</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="34"/>
<source>Number of Pages in Document:</source>
<translation>Numero di pagine nel documento:</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="44"/>
<source>Doc Page Range</source>
<translation>Intervallo pagine documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="92"/>
<source>Basic Range Selection</source>
<translation>Selezione intervallo base</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="104"/>
<source>Range of Pages</source>
<translation>Intervallo di pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="116"/>
<source>De&lete</source>
<translation>E&limina</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="119"/>
<source>Alt+L</source>
<translation>Alt+L</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="142"/>
<source>Move &Down</source>
<translation>Sposta &giù</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="145"/>
<source>Alt+D</source>
<translation>Alt+G</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="152"/>
<source>Move &Up</source>
<translation>Sposta s&u</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="155"/>
<source>Alt+U</source>
<translation>Alt+U</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="174"/>
<source>Add a Range of Pages</source>
<translation>Aggiungi un intervallo di pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="186"/>
<source>Consecutive Pages</source>
<translation>Pagine consecutive</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="196"/>
<source>Even Pages</source>
<translation>Pagine pari</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="203"/>
<source>From:</source>
<translation>Da:</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="235"/>
<source>To:</source>
<translation>A:</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="269"/>
<source>&Add To Range</source>
<translation>&Aggiungi all'intervallo</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="272"/>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="297"/>
<source>Odd Pages</source>
<translation>Pagine dispari</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="307"/>
<source>Comma Separated List</source>
<translation>Lista separata da virgole</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="318"/>
<source>Advanced Reordering</source>
<translation>Riordinamento avanzato</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="362"/>
<source>Page Order</source>
<translation>Ordine pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="372"/>
<source>Sample Page Order:</source>
<translation>Esempio di ordine pagine:</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="401"/>
<source>Page Group Size:</source>
<translation>Dimensione gruppo pagine:</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="439"/>
<source>&OK</source>
<translation>&OK</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="442"/>
<source>Alt+O</source>
<translation>Alt+O</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="449"/>
<source>&Cancel</source>
<translation>A&nnulla</translation>
</message>
<message>
<location filename="../../../scribus/ui/createrange.ui" line="452"/>
<source>Alt+C</source>
<translation>Alt+N</translation>
</message>
</context>
<context>
<name>CsvDialog</name>
<message>
<location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="27"/>
<source>CSV Importer Options</source>
<translation>Opzioni importazione file CSV</translation>
</message>
<message>
<location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="37"/>
<source>Field delimiter:</source>
<translation>Delimitatore di campo:</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>Delimitatore di valore:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="68"/>
<source>First row is a header</source>
<translation>La prima riga è un'intestazione</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>Annulla</translation>
</message>
<message>
<location filename="../../../scribus/plugins/gettext/csvim/csvdia.cpp" line="59"/>
<source>None</source>
<comment>delimiter</comment>
<translation>Nessuno</translation>
</message>
</context>
<context>
<name>CupsOptions</name>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="53"/>
<source>Printer Options</source>
<translation>Opzioni stampante</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="64"/>
<source>Option</source>
<translation>Opzioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="65"/>
<source>Value</source>
<translation>Valore</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="140"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="150"/>
<source>Page Set</source>
<translation>Serie di pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="147"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="154"/>
<source>All Pages</source>
<translation>Tutte le pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="148"/>
<source>Even Pages only</source>
<translation>Solo pagine pari</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="149"/>
<source>Odd Pages only</source>
<translation>Solo pagine dispari</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="157"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="167"/>
<source>Mirror</source>
<translation>Rifletti</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="174"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="184"/>
<source>Orientation</source>
<translation>Orientamento</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="181"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="188"/>
<source>Portrait</source>
<translation>Verticale</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="182"/>
<source>Landscape</source>
<translation>Orizzontale</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="191"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="204"/>
<source>N-Up Printing</source>
<translation>Pagine per foglio</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="198"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="208"/>
<source>Page per Sheet</source>
<translation>Pagina per foglio</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="199"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="200"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="201"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="202"/>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="203"/>
<source>Pages per Sheet</source>
<translation>Pagine per foglio</translation>
</message>
<message>
<location filename="../../../scribus/ui/cupsoptions.cpp" line="231"/>
<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 > 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>Questo pannello mostra varie opzioni CUPS per la stampa. Gli esatti parametri disponibili dipenderanno dal driver della stampante in uso. Si può verificare il supporto CUPS scegliendo Aiuto>Informazioni. Cerca gli elementi: C-C-T. Questi equivalgono al supporto per C=CUPS C=littlecms T=TIFF.\n</translation>
</message>
</context>
<context>
<name>CurveWidget</name>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="406"/>
<source>Open</source>
<translation>Apri</translation>
</message>
<message>
<source>Curve Files (*.scu);;All Files (*)</source>
<translation type="obsolete">File curve (*.scu);;Tutti i file (*)</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="406"/>
<location filename="../../../scribus/ui/curvewidget.cpp" line="444"/>
<source>Curve Files "*.scu" (*.scu *.SCU);;All Files (*)</source>
<translation>File curve "*.scu" (*.scu *.SCU);;Tutti i file (*)</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="444"/>
<source>Save as</source>
<translation>Salva come</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="478"/>
<source>Cannot write the file:
%1</source>
<translation>Impossibile salvare il file:
%1</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="504"/>
<source>Inverts the curve</source>
<translation>Inverte la curva</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="505"/>
<source>Resets the curve</source>
<translation>Ripristina la curva</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="506"/>
<source>Switches between linear and cubic interpolation of the curve</source>
<translation>Passa l'interpolazione della curva da cubica a lineare</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="507"/>
<source>Loads a curve</source>
<translation>Carica una curva</translation>
</message>
<message>
<location filename="../../../scribus/ui/curvewidget.cpp" line="508"/>
<source>Saves this curve</source>
<translation>Salva questa curva</translation>
</message>
</context>
<context>
<name>CustomFDialog</name>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="408"/>
<source>Encoding:</source>
<translation>Codifica:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="348"/>
<location filename="../../../scribus/ui/customfdialog.cpp" line="378"/>
<source>&Compress File</source>
<translation>&Comprimi file</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="357"/>
<source>&Include Fonts</source>
<translation>&Includi font</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="325"/>
<source>Show Preview</source>
<translation>Mostra anteprima</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="359"/>
<source>&Include Color Profiles</source>
<translation>&Includi profili colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="326"/>
<source>Show a preview and information for the selected file</source>
<translation>Mostra l'anteprima e le informazioni del file selezionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="395"/>
<source>Compress the Scribus document on save</source>
<translation>Comprimi il documento Scribus durante il salvataggio</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="397"/>
<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>Includi i font durante la raccolta dei file per il documento. Assicurarsi di conoscere e aver capito le informazioni sulla licenza per tutti i font raccolti ed eventualmente distribuiti.</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="399"/>
<source>Include color profiles when collecting files for the document</source>
<translation>Includi i profili colori durante la raccolta dei file per il documento</translation>
</message>
</context>
<context>
<name>CvgPlug</name>
<message>
<location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="144"/>
<source>Importing: %1</source>
<translation>Importazione: %1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="147"/>
<source>Analyzing File:</source>
<translation>Analisi file:</translation>
</message>
<message>
<source>Group%1</source>
<translation type="obsolete">Gruppo%1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/cvg/importcvg.cpp" line="345"/>
<source>Generating Items</source>
<translation>Generazione elementi</translation>
</message>
</context>
<context>
<name>DashEditor</name>
<message>
<location filename="../../../scribus/ui/dasheditor.cpp" line="372"/>
<source>Value:</source>
<translation>Valore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/dasheditor.cpp" line="373"/>
<source>Offset:</source>
<translation>Spostamento:</translation>
</message>
</context>
<context>
<name>DeferredTask</name>
<message>
<location filename="../../../scribus/deferredtask.cpp" line="82"/>
<source>Cancelled by user</source>
<translation>Annullato dall'utente</translation>
</message>
</context>
<context>
<name>DelColor</name>
<message>
<location filename="../../../scribus/ui/dcolor.cpp" line="28"/>
<source>Delete Color</source>
<translation>Elimina colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/dcolor.cpp" line="36"/>
<source>Delete Color:</source>
<translation>Elimina colore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/dcolor.cpp" line="45"/>
<source>Replace With:</source>
<translation>Sostituisci con:</translation>
</message>
</context>
<context>
<name>DelPages</name>
<message>
<location filename="../../../scribus/ui/delpages.cpp" line="17"/>
<source>Delete Pages</source>
<translation>Elimina pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/delpages.cpp" line="37"/>
<source>to:</source>
<translation>a:</translation>
</message>
<message>
<location filename="../../../scribus/ui/delpages.cpp" line="26"/>
<source>Delete From:</source>
<translation>Elimina da:</translation>
</message>
</context>
<context>
<name>DialogsAPI</name>
<message>
<location filename="../../../scribus/plugins/scripter/api_dialogs.cpp" line="33"/>
<source>Alert - Scribus</source>
<translation>Allarme - Scribus</translation>
</message>
</context>
<context>
<name>DocIm</name>
<message>
<location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="180"/>
<source>Importing failed</source>
<translation>Importazione fallita</translation>
</message>
<message>
<location filename="../../../scribus/plugins/gettext/docim/docim.cpp" line="181"/>
<source>Importing Word document failed
%1</source>
<translation>Importazione documento Word fallita
%1</translation>
</message>
</context>
<context>
<name>DocInfos</name>
<message>
<location filename="../../../scribus/docinfo.cpp" line="30"/>
<source>Document Information</source>
<translation>Informazioni documento</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="39"/>
<source>&Title:</source>
<translation>&Titolo:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="46"/>
<source>&Author:</source>
<translation>&Autore:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="53"/>
<source>&Subject:</source>
<translation>A&rgomento:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="61"/>
<source>&Keywords:</source>
<translation>Parole &chiave:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="69"/>
<source>Descri&ption:</source>
<translation>Descri&zione:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="82"/>
<source>P&ublisher:</source>
<translation>&Editore:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="89"/>
<source>&Contributors:</source>
<translation>&Collaboratori:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="97"/>
<source>Dat&e:</source>
<translation>Da&ta:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="104"/>
<source>T&ype:</source>
<translation>Ti&po:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="111"/>
<source>F&ormat:</source>
<translation>F&ormat:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="118"/>
<source>Identi&fier:</source>
<translation>Identi&ficatore:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="125"/>
<source>&Source:</source>
<translation>Fo&nte:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="132"/>
<source>&Language:</source>
<translation>&Lingua:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="139"/>
<source>&Relation:</source>
<translation>Rela&zione:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="146"/>
<source>Co&verage:</source>
<translation>Copert&ura:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="153"/>
<source>Ri&ghts:</source>
<translation>Di&ritti:</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="161"/>
<source>Further &Information</source>
<translation>Ulteriori &informazioni</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="171"/>
<source>A person or organisation responsible for making the document available</source>
<translation>Una persona o un'organizzazione responsabile della diffusione del documento</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="172"/>
<source>A person or organisation responsible for making contributions to the content of the document</source>
<translation>Una persona o un'organizzazione che ha contribuito al contenuto del documento</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="173"/>
<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>Una data associata ad un evento nel ciclo di vita del documento in formato AAAA-MM-GG, come previsto da ISO 8601</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="174"/>
<source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source>
<translation>La natura o il genere del contenuto del documento, ad es. categorie, funzioni, generi, ecc</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="176"/>
<source>An unambiguous reference to the document within a given context such as ISBN or URI</source>
<translation>Un riferimento univoco al documento entro un contesto dato, come l'ISBN o l'URI</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="177"/>
<source>A reference to a document from which the present document is derived, eg. ISBN or URI</source>
<translation>Un riferimento ad un documento dal quale il presente documento è derivato, ad es. un ISBN o URI</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="179"/>
<source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source>
<translation>Un riferimento ad un documento connesso, possibilmente usando un identificatore formale come un ISBN o un URI</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="180"/>
<source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source>
<translation>L'ampiezza o l'ambito del contenuto del documento, comprendente ad esempio la locazione geografica, l'estensione temporale e giurisdizionale</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="181"/>
<source>Information about rights held in and over the document, eg. copyright, patent or trademark</source>
<translation>Informazioni sui diritti detenuti sul documento, es. copyright, brevetto o marchio</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="160"/>
<source>Documen&t</source>
<translation>Documen&to</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="167"/>
<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>La persona o l'organizzazione principalmente responsabile del contenuto del documento. Questo campo può essere incorporato nel documento di Scribus come informazione, ed anche come metadato di un file PDF</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="168"/>
<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>Nome dato al documento. Questo campo può essere incorporato nel documento di Scribus come informazione, ed anche come metadato di un file PDF</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="169"/>
<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>Resoconto del contenuto del documento. Questo campo è riservato ad una breve descrizione o a un riassunto del documento. Viene incorporato nel file PDF all'esportazione</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="170"/>
<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>L'argomento del contenuto del documento. Questo campo è per le parole chiave del documento che si intendono includere in un file PDF, per agevolare le ricerche e l'indicizzazione dei file PDF</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="175"/>
<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>La manifestazione fisica o digitale del documento. Sarebbe opportuno inserire le dimensioni e il tipo dei supporti. Vedere RFC2045, RFC2046 per i tipi MIME</translation>
</message>
<message>
<location filename="../../../scribus/docinfo.cpp" line="178"/>
<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>La lingua nella quale è scritto il contenuto del documento, di solito un codice lingua ISO-639 facoltativamente con l'aggiunta di suffisso, come un trattino e un codice ISO-3166 di Stato, es.: en-GB, fr-CH</translation>
</message>
</context>
<context>
<name>DocSections</name>
<message>
<source>Add a page numbering section to the document. The new section will be added after the currently selected section.</source>
<translation type="obsolete">Aggiungi una sezione di pagine numerate al documento. La nuova sezione sarà aggiunta dopo la quella attualmente selezionata.</translation>
</message>
<message>
<source>Delete the currently selected section.</source>
<translation type="obsolete">Elimina questa selezione.</translation>
</message>
<message>
<source>1, 2, 3, ...</source>
<translation type="obsolete">1, 2, 3, ...</translation>
</message>
<message>
<source>i, ii, iii, ...</source>
<translation type="obsolete">i, ii, iii, ...</translation>
</message>
<message>
<source>I, II, III, ...</source>
<translation type="obsolete">I, II, III, ...</translation>
</message>
<message>
<source>a, b, c, ...</source>
<translation type="obsolete">a, b, c, ...</translation>
</message>
<message>
<source>A, B, C, ...</source>
<translation type="obsolete">A, B, C, ...</translation>
</message>
<message>
<source><b>Name:</b> Optional name for section eg. Index<br/><b>Shown:</b> Select to show the page numbers in this section if there is one or more text frames setup to do so.<br/><b>From:</b> The page index for this section to start at.<br/><b>To:</b> The page index for this section to stop at.<br/><b>Style:</b> Select the page number style to be used.<br/><b>Start:</b> The index within the Style's range to star at. Eg. If Start=2 and Style=a,b,c, ..., the numbers will begin at b. For the first section in the document this replaces the older First Page Number in the new file window.</source>
<translation type="obsolete"><b>Nome:</b> Nome opzionale per la sezione per es. Indice<br/><b>visibile:</b> Selezionare per mostrare i numeri delle pagine in questa sezione se uno o o più cornici di testo sono stati configurati per fare questo.<br/><b>Da:</b> Prima pagina di questa sezione.<br/><b>A:</b> Ultima pagina di questa sezione.<br/><b>Stile:</b> Selezionare lo stile per il numero di pagina.<br/><b>Inizio:</b> Indice dell'inizio della numerazione. Per es. se Inizio=2 e Stile=a,b,c, ..., i numeri inizieranno da b. Per la prima sezione nel documento questo sostituisce l'obsoleto Primo Numero di Pagina nella finestra di dialogo Nuovo File.</translation>
</message>
<message>
<source>Page Number Out Of Bounds</source>
<translation type="obsolete">Pagina fuori limite</translation>
</message>
<message>
<source>The value you have entered is outside the range of page numbers in the current document (%1-%2).</source>
<translation type="obsolete">Il valore inserito è più grande del numero di pagine del documento attuale (%1-%2).</translation>
</message>
<message>
<source>Document Sections</source>
<translation type="obsolete">Sezioni documento</translation>
</message>
<message>
<source>&Add</source>
<translation type="obsolete">&Aggiungi</translation>
</message>
<message>
<source>Alt+A</source>
<translation type="obsolete">Alt+A</translation>
</message>
<message>
<source>&Delete</source>
<translation type="obsolete">E&limina</translation>
</message>
<message>
<source>Alt+D</source>
<translation type="obsolete">Alt+L</translation>
</message>
<message>
<source>Name</source>
<translation type="obsolete">Nome</translation>
</message>
<message>
<source>Shown</source>
<translation type="obsolete">Mostrato</translation>
</message>
<message>
<source>From</source>
<translation type="obsolete">Da</translation>
</message>
<message>
<source>To</source>
<translation type="obsolete">A</translation>
</message>
<message>
<source>Style</source>
<translation type="obsolete">Style</translation>
</message>
<message>
<source>Start</source>
<translation type="obsolete">Inizio</translation>
</message>
</context>
<context>
<name>DocumentItemAttributes</name>
<message>
<source>Relates To</source>
<translation type="obsolete">Relativo a </translation>
</message>
<message>
<source>Is Parent Of</source>
<translation type="obsolete">È genitore di</translation>
</message>
<message>
<source>Is Child Of</source>
<translation type="obsolete">È figlio di</translation>
</message>
<message>
<source>Text Frames</source>
<translation type="obsolete">Cornici di testo</translation>
</message>
<message>
<source>Image Frames</source>
<translation type="obsolete">Cornici d'immagine</translation>
</message>
<message>
<source>Boolean</source>
<translation type="obsolete">Booleano</translation>
</message>
<message>
<source>Integer</source>
<translation type="obsolete">Intero</translation>
</message>
<message>
<source>String</source>
<translation type="obsolete">Stringa di caratteri</translation>
</message>
<message>
<source>Real Number</source>
<translation type="obsolete">Numero reale</translation>
</message>
<message>
<source>None</source>
<comment>relationship</comment>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>None</source>
<comment>auto add</comment>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>None</source>
<comment>types</comment>
<translation type="obsolete">Nessuno</translation>
</message>
<message>
<source>Document Item Attributes</source>
<translation type="obsolete">Attributi elementi documento</translation>
</message>
<message>
<source>&Add</source>
<translation type="obsolete">&Aggiungi</translation>
</message>
<message>
<source>Alt+A</source>
<translation type="obsolete">Alt+A</translation>
</message>
<message>
<source>&Copy</source>
<translation type="obsolete">&Copia</translation>
</message>
<message>
<source>Alt+C</source>
<translation type="obsolete">Alt+C</translation>
</message>
<message>
<source>&Delete</source>
<translation type="obsolete">E&limina</translation>
</message>
<message>
<source>Alt+D</source>
<translation type="obsolete">Alt+L</translation>
</message>
<message>
<source>C&lear</source>
<translation type="obsolete">Pu&lisci</translation>
</message>
<message>
<source>Alt+L</source>
<translation type="obsolete">Alt+L</translation>
</message>
<message>
<source>Name</source>
<translation type="obsolete">Nome</translation>
</message>
<message>
<source>Type</source>
<translation type="obsolete">Tipo</translation>
</message>
<message>
<source>Value</source>
<translation type="obsolete">Valore</translation>
</message>
<message>
<source>Parameter</source>
<translation type="obsolete">Parametro</translation>
</message>
<message>
<source>Relationship</source>
<translation type="obsolete">Relazione</translation>
</message>
<message>
<source>Relationship To</source>
<translation type="obsolete">In rapporto a</translation>
</message>
<message>
<source>Auto Add To</source>
<translation type="obsolete">Aggiungi automaticamente a</translation>
</message>
</context>
<context>
<name>DrwPlug</name>
<message>
<location filename="../../../scribus/plugins/import/drw/importdrw.cpp" line="1230"/>
<source>Group%1</source>
<translation>Gruppo%1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/drw/importdrw.cpp" line="160"/>
<source>Importing: %1</source>
<translation>Importazione: %1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/drw/importdrw.cpp" line="163"/>
<source>Analyzing File:</source>
<translation>Analisi file:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/drw/importdrw.cpp" line="372"/>
<source>Generating Items</source>
<translation>Generazione elementi</translation>
</message>
</context>
<context>
<name>EPSPlug</name>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="423"/>
<source>Importing File:
%1
failed!</source>
<translation>Importazione file:
%1
fallita!</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="424"/>
<source>Fatal Error</source>
<translation>Errore irreversibile</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="763"/>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="429"/>
<source>Generating Items</source>
<translation>Generazione elementi</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="82"/>
<source>Analyzing PostScript:</source>
<translation>Analisi PostScript:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="762"/>
<source>Converting of %1 images failed!</source>
<translation>Conversione di %1 immagini fallita!</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="636"/>
<source>Group%1</source>
<translation>Gruppo%1</translation>
</message>
<message>
<location filename="../../../scribus/plugins/import/ps/importps.cpp" line="79"/>
<source>Importing: %1</source>
<translation>Importazione: %1</translation>
</message>
</context>
<context>
<name>EditToolBar</name>
<message>
<location filename="../../../scribus/ui/edittoolbar.cpp" line="29"/>
<source>Edit</source>
<translation>Modifica</translation>
</message>
</context>
<context>
<name>Editor</name>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="34"/>
<source>Editor</source>
<translation>Editor</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="40"/>
<source>&New</source>
<translation>&Nuovo</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="43"/>
<source>&Open...</source>
<translation>A&pri...</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="45"/>
<source>Save &As...</source>
<translation>Salva c&ome...</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="47"/>
<source>&Save and Exit</source>
<translation>&Salva ed esci</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="49"/>
<source>&Exit without Saving</source>
<translation>Ab&bandona</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="51"/>
<source>&Undo</source>
<translation>Ann&ulla</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="54"/>
<source>&Redo</source>
<translation>&Ripristina</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="56"/>
<source>Cu&t</source>
<translation>&Taglia</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="59"/>
<source>&Copy</source>
<translation>&Copia</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="62"/>
<source>&Paste</source>
<translation>Inco&lla</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="65"/>
<source>C&lear</source>
<translation>Pu&lisci</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="67"/>
<source>&Get Field Names</source>
<translation>Ac&quisisci nomi campi</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="69"/>
<source>&File</source>
<translation>&File</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="76"/>
<source>&Edit</source>
<translation>Mo&difica</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="100"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="104"/>
<source>Cancel</source>
<translation>Annulla</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="132"/>
<location filename="../../../scribus/ui/editor.cpp" line="148"/>
<source>JavaScripts (*.js);;All Files (*)</source>
<translation>JavaScript (*.js);;Tutti i file (*)</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="41"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="52"/>
<source>Ctrl+Z</source>
<translation>Ctrl+Z</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="57"/>
<source>Ctrl+X</source>
<translation>Ctrl+X</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="60"/>
<source>Ctrl+C</source>
<translation>Ctrl+C</translation>
</message>
<message>
<location filename="../../../scribus/ui/editor.cpp" line="63"/>
<source>Ctrl-V</source>
<translation>Ctrl-V</translation>
</message>
</context>
<context>
<name>EffectsDialog</name>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="45"/>
<source>Image Effects</source>
<translation>Effetti immagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="87"/>
<source>Options:</source>
<translation>Opzioni:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="104"/>
<source>Color:</source>
<translation>Colore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="115"/>
<source>Shade:</source>
<translation>Tonalità:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="131"/>
<source>Brightness:</source>
<translation>Luminosità:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="153"/>
<source>Contrast:</source>
<translation>Contrasto:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="175"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="204"/>
<source>Radius:</source>
<translation>Raggio:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="186"/>
<source>Value:</source>
<translation>Valore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="222"/>
<source>Posterize:</source>
<translation>Posterizza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="461"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="478"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="506"/>
<source>Available Effects</source>
<translation>Effetti disponibili</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="465"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="547"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="796"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="858"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1313"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1435"/>
<source>Blur</source>
<translation>Sfocatura</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="466"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="532"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="781"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="852"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1264"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1413"/>
<source>Brightness</source>
<translation>Luminosità</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="467"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="523"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="776"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="862"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="917"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1004"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1404"/>
<source>Colorize</source>
<translation>Colorizza</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="471"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="537"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="786"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="854"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1280"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1419"/>
<source>Contrast</source>
<translation>Contrasto</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="472"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="518"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="771"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="850"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1000"/>
<source>Grayscale</source>
<translation>Scala di grigi</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="474"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="513"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="766"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="848"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1002"/>
<source>Invert</source>
<translation>Inverti</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="475"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="557"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="804"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="860"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1325"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1448"/>
<source>Posterize</source>
<translation>Posterizza</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="476"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="542"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="791"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="856"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1296"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1425"/>
<source>Sharpen</source>
<translation>Accentua contorni</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="488"/>
<source>>></source>
<translation>>></translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="492"/>
<source><<</source>
<translation><<</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="503"/>
<source>Effects in use</source>
<translation>Effetti in uso</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="622"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="626"/>
<source>Cancel</source>
<translation>Annulla</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="241"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="291"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="357"/>
<source>Color 1:</source>
<translation>Colore 1:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="262"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="311"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="377"/>
<source>Color 2:</source>
<translation>Colore 2:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="331"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="397"/>
<source>Color 3:</source>
<translation>Colore 3:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="417"/>
<source>Color 4:</source>
<translation>Colore 4:</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="468"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="562"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="809"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="873"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="917"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1021"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1454"/>
<source>Duotone</source>
<translation>Bicromia</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="469"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="571"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="814"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="884"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="917"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1079"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1490"/>
<source>Tritone</source>
<translatorcomment>???</translatorcomment>
<translation>Tricromatico</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="470"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="580"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="819"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="895"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="917"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1160"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1541"/>
<source>Quadtone</source>
<translation>Quadricromatico</translation>
</message>
<message>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="473"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="589"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="824"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="906"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1341"/>
<location filename="../../../scribus/ui/effectsdialog.cpp" line="1607"/>
<source>Curves</source>
<translation>Curve</translation>
</message>
</context>
<context>
<name>ExceptHookDialog</name>
<message>
<location filename="../../../scribus/plugins/scripter/python/excepthook.ui" line="13"/>
<source>Script error</source>
<translation>Errore script</translation>
</message>
<message>
<location filename="../../../scribus/plugins/scripter/python/excepthook.ui" line="24"/>
<source>An exception occured while running the script.</source>
<translation>Si è verificato un errore durante l'esecuzione dello script.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/scripter/python/excepthook.ui" line="31"/>
<source>&Close</source>
<translation>&Chiudi</translation>
</message>
<message>
<location filename="../../../scribus/plugins/scripter/python/excepthook.ui" line="44"/>
<source>Exception</source>
<translation>Errore</translation>
</message>
<message>
<location filename="../../../scribus/plugins/scripter/python/excepthook.ui" line="51"/>
<source>&Details >></source>
<translation>&Dettagli >></translation>
</message>
</context>
<context>
<name>ExportBitmap</name>
<message>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="203"/>
<source>File exists. Overwrite?</source>
<translation>Il file esiste. Sovrascriverlo?</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="204"/>
<source>exists already. Overwrite?</source>
<translation>già esiste. Sovrascriverlo?</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="190"/>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="217"/>
<source>Save as Image</source>
<translation>Salva come immagine</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="190"/>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="191"/>
<source>Insufficient memory for this image size.</source>
<translation>Memoria insufficiente per le dimensioni di questa immagine.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="217"/>
<location filename="../../../scribus/plugins/pixmapexport/export.cpp" line="218"/>
<source>Error writing the output file(s).</source>
<translation>Errore di salvataggio del file di output.</translation>
</message>
</context>
<context>
<name>ExportForm</name>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="224"/>
<source>&All pages</source>
<translation>Tutte le p&agine</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="127"/>
<source>Change the output directory</source>
<translation>Cambia la cartella di destinazione</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 'documentname-pagenumber.filetype'</source>
<translation>La cartella di destinazione - Dove verranno conservate le immagini.
Il nome del file di esposrtazione sarà 'nomedocumento-numeropagina.tipofile'</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="120"/>
<source>Export only the current page</source>
<translation>Esporta solo la pagina corrente</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="125"/>
<source>Available export formats</source>
<translation>Formati di esportazione disponibili</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="80"/>
<source>Choose a Export Directory</source>
<translation>Scegli una cartella per l'esportazione</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="166"/>
<source>C&hange...</source>
<translation>&Cambia...</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="153"/>
<source>&Export to Directory:</source>
<translation>&Esporta nella cartella:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="54"/>
<source>Image &Type:</source>
<translation>Tipo imma&gine:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="64"/>
<source>&Quality:</source>
<translation>&Qualità:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="13"/>
<source>Export as Image(s)</source>
<translation>Esporta come immagine/i</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="25"/>
<source>Options</source>
<translation>Opzioni</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="74"/>
<source>&Resolution:</source>
<translation>&Risoluzione:</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>Intervallo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="197"/>
<source>&Current page</source>
<translation>&Pagina corrente</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="217"/>
<source>&Range</source>
<translation>&Intervallo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="117"/>
<source>Export a range of pages</source>
<translation>Esporta un intervallo di pagine</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>Inserisci una lista di simboli separata da virgole
in cui un simbolo può essere * per tutte le pagine,
1-5 per un intervallo di pagine
o un numero di una singola pagina.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="119"/>
<source>Export all pages</source>
<translation>Esporta tutte le pagine</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>Risoluzione delle immagini
Usa 72 dpi per immagini da visualizzare su schermo</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>&Size:</source>
<translation>Dimen&sione:</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>Dimensione delle immagini. 100% per manterla invariata, 200% per ingrandire due volte ecc.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="44"/>
<source>Image size in Pixels</source>
<translation>Dimensione immagine in pixel</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/exportform.ui" line="37"/>
<source>TextLabel</source>
<translation>Etichetta di testo</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 'Automatic'</source>
<translation>Il rapporto di compressione delle immagini - 100% nessuna compressione, 0% compressione massima. In caso di dubbio scegliere 'Automatico'</translation>
</message>
<message>
<location filename="../../../scribus/plugins/pixmapexport/dialog.cpp" line="124"/>
<source>Automatic</source>
<translation>Automatico</translation>
</message>
</context>
<context>
<name>ExtImageProps</name>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="39"/>
<source>Extended Image Properties</source>
<translation>Ulteriori proprietà immagini</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="50"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="68"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="102"/>
<source>Normal</source>
<translation>Normale</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="51"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="69"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="103"/>
<source>Darken</source>
<translation>Scuro</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="52"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="70"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="104"/>
<source>Lighten</source>
<translation>Chiaro</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="53"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="71"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="105"/>
<source>Hue</source>
<translation>Tonalità</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="54"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="72"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="106"/>
<source>Saturation</source>
<translation>Saturazione</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="55"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="73"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="107"/>
<source>Color</source>
<translation>Colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="56"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="74"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="108"/>
<source>Luminosity</source>
<translation>Luminosità</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="57"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="75"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="109"/>
<source>Multiply</source>
<translation>Moltiplica</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="58"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="76"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="110"/>
<source>Screen</source>
<translatorcomment>???</translatorcomment>
<translation>Reticolo</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="59"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="77"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="111"/>
<source>Dissolve</source>
<translation>Dissolvi</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="60"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="78"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="112"/>
<source>Overlay</source>
<translation>Sovrapponi</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="61"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="79"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="113"/>
<source>Hard Light</source>
<translation>Luce forte</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="62"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="80"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="114"/>
<source>Soft Light</source>
<translation>Luce debole</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="63"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="81"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="115"/>
<source>Difference</source>
<translation>Differenza</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="65"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="83"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="117"/>
<source>Color Dodge</source>
<translation>Sovraesponi colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="66"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="84"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="118"/>
<source>Color Burn</source>
<translation>Sottoesponi colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="98"/>
<source>Blend Mode:</source>
<translation>Modo fusione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="121"/>
<source>Opacity:</source>
<translation>Opacità:</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="128"/>
<source> %</source>
<translation> %</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="134"/>
<source>Name</source>
<translation>Nome</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="225"/>
<source>Layers</source>
<translation>Livelli</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="278"/>
<source>Don't use any Path</source>
<translation>Non usare alcun tracciato</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="280"/>
<source>Paths</source>
<translation>Tracciati</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="64"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="82"/>
<location filename="../../../scribus/ui/extimageprops.cpp" line="116"/>
<source>Exclusion</source>
<translation>Esclusione</translation>
</message>
<message>
<location filename="../../../scribus/ui/extimageprops.cpp" line="287"/>
<source>Live Preview</source>
<translation>Anteprima immediata</translation>
</message>
</context>
<context>
<name>FDialogPreview</name>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="187"/>
<location filename="../../../scribus/ui/customfdialog.cpp" line="214"/>
<location filename="../../../scribus/ui/customfdialog.cpp" line="254"/>
<source>Size:</source>
<translation>Dimensione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="267"/>
<source>Title:</source>
<translation>Titolo:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="270"/>
<source>No Title</source>
<translation>Nessun Titolo</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="272"/>
<source>Author:</source>
<translation>Autore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="192"/>
<location filename="../../../scribus/ui/customfdialog.cpp" line="275"/>
<location filename="../../../scribus/ui/customfdialog.cpp" line="280"/>
<source>Unknown</source>
<translation>Sconosciuto</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="282"/>
<source>Scribus Document</source>
<translation>Documento Scribus</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="189"/>
<source>Resolution:</source>
<translation>Risoluzione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="189"/>
<source>DPI</source>
<translation>DPI</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="195"/>
<source>Colorspace:</source>
<translation>Spazio colore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/customfdialog.cpp" line="277"/>
<source>File Format:</source>
<translation>Formato file:</translation>
</message>
</context>
<context>
<name>FileLoader</name>
<message>
<location filename="../../../scribus/fileloader.cpp" line="441"/>
<source>Some fonts used by this document have been substituted:</source>
<translation>Alcuni caratteri usati da questo documento sono stati sostituiti:</translation>
</message>
<message>
<location filename="../../../scribus/fileloader.cpp" line="445"/>
<source> was replaced by: </source>
<translation> è stato sostituito da:</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>FlattenPathPlugin</name>
<message>
<location filename="../../../scribus/plugins/tools/flattenpath/flattenpath.cpp" line="76"/>
<source>Flatten Path</source>
<translation>Appiattisci tracciato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/flattenpath/flattenpath.cpp" line="80"/>
<source>Path Tools</source>
<translation>Strumenti tracciato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/flattenpath/flattenpath.cpp" line="101"/>
<source>Flattens a Path</source>
<translation>Appiattisce un tracciato</translation>
</message>
<message>
<location filename="../../../scribus/plugins/tools/flattenpath/flattenpath.cpp" line="102"/>
<source>Converts a Bezier Path to a Path made of line segments.</source>
<translation>Converte una curva di Bézier in un tracciato composto di segmenti rettilinei.</translation>
</message>
</context>
<context>
<name>FontComboH</name>
<message>
<source>Face:</source>
<translatorcomment>???</translatorcomment>
<translation type="obsolete">Famiglia font:</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontcombo.cpp" line="147"/>
<source>Family:</source>
<translation>Famiglia:</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontcombo.cpp" line="148"/>
<source>Style:</source>
<translation>Stile:</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontcombo.cpp" line="150"/>
<source>Font Family of Selected Text or Text Frame</source>
<translation>Famiglia font del testo o cornice di testo selezionata</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontcombo.cpp" line="151"/>
<source>Font Style of Selected Text or Text Frame</source>
<translation>Stile font del testo o cornice di testo selezionata</translation>
</message>
</context>
<context>
<name>FontListModel</name>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="70"/>
<source>Font Name</source>
<translation>Nome font</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="72"/>
<source>Use Font</source>
<translation>Usa font</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="74"/>
<source>Family</source>
<translation>Famiglia</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="76"/>
<source>Style</source>
<translation>Style</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="78"/>
<source>Variant</source>
<translation>Variante</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="80"/>
<source>Type</source>
<translation>Tipo</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="82"/>
<source>Format</source>
<translation>Formato</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="84"/>
<source>Embed in PostScript</source>
<translation>Incorpora nel PostScript</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="86"/>
<source>Subset</source>
<translation>Sottoinsieme</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="88"/>
<source>Access</source>
<translation>Accesso</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="90"/>
<source>Used in Doc</source>
<translation>Utilizzato nel documento</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="92"/>
<source>Path to Font File</source>
<translation>Percorso del file dei font</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="151"/>
<source>Unknown</source>
<comment>font type</comment>
<translation>Sconosciuto</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="164"/>
<source>Unknown</source>
<comment>font format</comment>
<translation>Sconosciuto</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="171"/>
<source>User</source>
<comment>font preview</comment>
<translation>Utente</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="172"/>
<source>System</source>
<comment>font preview</comment>
<translation>Sistema</translation>
</message>
<message>
<location filename="../../../scribus/fontlistmodel.cpp" line="197"/>
<source>Click to change the value</source>
<translation>Clic qui per cambiare il valore</translation>
</message>
</context>
<context>
<name>FontPrefs</name>
<message>
<source>Available Fonts</source>
<translation type="obsolete">Caratteri disponiili</translation>
</message>
<message>
<source>Font Substitutions</source>
<translation type="obsolete">Sostituzione font</translation>
</message>
<message>
<source>Additional Paths</source>
<translation type="obsolete">Percorsi aggiuntivi</translation>
</message>
<message>
<source>Font Name</source>
<translation type="obsolete">Nome font</translation>
</message>
<message>
<source>Replacement</source>
<translation type="obsolete">Sostituzione</translation>
</message>
<message>
<source>Choose a Directory</source>
<translation type="obsolete">Scegli una cartella</translation>
</message>
<message>
<source>&Available Fonts</source>
<translation type="obsolete">C&aratteri disponiili</translation>
</message>
<message>
<source>Font &Substitutions</source>
<translation type="obsolete">&Sostituzione font</translation>
</message>
<message>
<source>Additional &Paths</source>
<translation type="obsolete">&Percorsi aggiuntivi</translation>
</message>
<message>
<source>&Delete</source>
<translation type="obsolete">E&limina</translation>
</message>
<message>
<source>C&hange...</source>
<translation type="obsolete">C&ambia...</translation>
</message>
<message>
<source>A&dd...</source>
<translation type="obsolete">&Aggiungi...</translation>
</message>
<message>
<source>&Remove</source>
<translation type="obsolete">E&limina</translation>
</message>
<message>
<source>Font search paths can only be set in File > Preferences, and only when there is no document currently open. Close any open documents, then use File > Preferences > Fonts to change the font search path.</source>
<translation type="obsolete">Il percorso di ricerca font può essere impostato in Preferenze, ma solo quando non ci sono documenti aperti. Chiudere tutti i documenti ed usare Modifica -> Preferenze per cambiare il percorso di ricerca.</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>FontPrefsTab</name>
<message>
<source>Available Fonts</source>
<translation type="obsolete">Caratteri disponiili</translation>
</message>
<message>
<source>Font Substitutions</source>
<translation type="obsolete">Sostituzione font</translation>
</message>
<message>
<source>Additional Paths</source>
<translation type="obsolete">Percorsi aggiuntivi</translation>
</message>
<message>
<source>&Available Fonts</source>
<translation type="obsolete">C&aratteri disponiili</translation>
</message>
<message>
<source>Replacement</source>
<translation type="obsolete">Sostituzione</translation>
</message>
<message>
<source>Font &Substitutions</source>
<translation type="obsolete">&Sostituzione font</translation>
</message>
<message>
<source>A&dd...</source>
<translation type="obsolete">&Aggiungi...</translation>
</message>
<message>
<source>&Remove</source>
<translation type="obsolete">E&limina</translation>
</message>
<message>
<source>Font search paths can only be set in File > Preferences, and only when there is no document currently open. Close any open documents, then use File > Preferences > Fonts to change the font search path.</source>
<translation type="obsolete">Il percorso di ricerca font può essere impostato in Preferenze, ma solo quando non ci sono documenti aperti. Chiudere tutti i documenti ed usare Modifica -> Preferenze per cambiare il percorso di ricerca.</translation>
</message>
<message>
<source>Additional &Paths</source>
<translation type="obsolete">&Percorsi aggiuntivi</translation>
</message>
<message>
<source>Choose a Directory</source>
<translation type="obsolete">Scegli una cartella</translation>
</message>
</context>
<context>
<name>FontPreview</name>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="110"/>
<source>Leave preview</source>
<comment>font preview</comment>
<translation>Chiudi anteprima</translation>
</message>
<message>
<source>Start searching</source>
<translation type="obsolete">Start searching</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.cpp" line="112"/>
<source>Size of the selected font</source>
<translation>Dimensione del font selezionato</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>Ma la volpe col suo balzo ha raggiunto il quieto Fido</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>Anteprima font</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="19"/>
<source>&Quick Search:</source>
<translation>Ri&cerca veloce:</translation>
</message>
<message>
<source>&Search</source>
<translation type="obsolete">&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>&Font Size:</source>
<translation>Dimensione &font:</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="103"/>
<source>Text</source>
<translation>Testo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="113"/>
<source>Sample text to display</source>
<translation>Testo di esempio da visualizzare</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="123"/>
<source>Se&t</source>
<translation>Impos&ta</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>Ripristina testo iniziale</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="167"/>
<source>&Close</source>
<translation>&Chiudi</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="111"/>
<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>Scrivendo qui il testo si può effettuare una ricerca veloce tra i nomi dei font. La ricerca non tiene conto delle maiuscole. Il testo inserito è trattato come una sottostringa di caratteri.</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="136"/>
<source>&Default</source>
<translation>Pre&definito</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="35"/>
<source>Show Extended Font Information</source>
<translation>Mostra ulteriori informazioni del font</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreview.ui" line="120"/>
<source>Set the preview text</source>
<translation>Configura testo anteprima</translation>
</message>
</context>
<context>
<name>FontPreviewPlugin</name>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="49"/>
<source>&Font Preview...</source>
<translation>Anteprima &font...</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="66"/>
<source>Font Preview dialog</source>
<translation>Finestra anteprima font</translation>
</message>
<message>
<location filename="../../../scribus/plugins/fontpreview/fontpreviewplugin.cpp" line="67"/>
<source>Sorting, searching and browsing available fonts.</source>
<translation>Ordinamento, ricerca e scelta dei font disponibili.</translation>
</message>
</context>
<context>
<name>FontReplaceDialog</name>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="30"/>
<source>Font Substitution</source>
<translation>Sostituzione font</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="45"/>
<source>Original Font</source>
<translation>Font originale</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="46"/>
<source>Substitution Font</source>
<translation>Font sostitutivo</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="78"/>
<source>Make these substitutions permanent</source>
<translation>Rendi permanenti le sostituzioni</translation>
</message>
<message>
<location filename="../../../scribus/ui/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>Questo documento contiene alcuni font che non sono installati nel sistema, seleziona dei sostituti. Se scegli Annulla, il documento non sarà aperto.</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="89"/>
<source>Cancels these font substitutions and stops loading the document.</source>
<translation>Annulla le sostituzioni e cessa di caricare il documento.</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="90"/>
<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 > Preferences > Fonts.</source>
<translation>L'attivazione di questo fa utilizzare a Scribus questi font sostitutivi per quelli mancanti permanentemente in ogni nuovo documento. È possibile modificare questa impostazione in Modifica > Preferenze > Fonts.</translation>
</message>
<message>
<location filename="../../../scribus/ui/fontreplacedialog.cpp" line="91"/>
<source>If you select OK, then save, these substitutions are made permanent in the document.</source>
<translation>Se si sceglie OK, e Salva, queste sostituzioni diverranno permanenti nel documento.</translation>
</message>
</context>
<context>
<name>FontSelect</name>
<message>
<location filename="../../../scribus/plugins/gettext/xtgim/fontselectdialog.cpp" line="35"/>
<source>Select Alternate Font</source>
<translation>Scegliere un font alternativo</translation>
</message>
<message>
<location filename="../../../scribus/plugins/gettext/xtgim/fontselectdialog.cpp" line="44"/>
<source>Font</source>
<translation>Font</translation>
</message>
</context>
<context>
<name>GradientEditor</name>
<message>
<location filename="../../../scribus/ui/gradienteditor.cpp" line="174"/>
<source>Position:</source>
<translation>Posizione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.cpp" line="175"/>
<source> %</source>
<translation> %</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.cpp" line="183"/>
<source>Add, change or remove color stops here</source>
<translation>Qui è possibile aggiungere, modificare o rimuovere i limiti dei colori</translation>
</message>
</context>
<context>
<name>GradientEditorBase</name>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="14"/>
<source>Frame</source>
<translation>Cornice</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="63"/>
<source>Position:</source>
<translation>Posizione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="70"/>
<location filename="../../../scribus/ui/gradienteditor.ui" line="97"/>
<location filename="../../../scribus/ui/gradienteditor.ui" line="120"/>
<source> %</source>
<translation> %</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="80"/>
<source>Color:</source>
<translation>Colore:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="90"/>
<source>Opacity:</source>
<translation>Opacità:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradienteditor.ui" line="113"/>
<source>Shade:</source>
<translation>Tonalità:</translation>
</message>
</context>
<context>
<name>GradientPreview</name>
<message>
<location filename="../../../scribus/ui/gradientpreview.cpp" line="224"/>
<source>Add Stop</source>
<translation>Aggiungi limite colore</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientpreview.cpp" line="226"/>
<source>Remove Stop</source>
<translation>Rimuovi limite colore</translation>
</message>
</context>
<context>
<name>GradientVectorBase</name>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="23"/>
<source>Gradient Vector</source>
<translation>Vettore della sfumatura</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="39"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="131"/>
<source>Start:</source>
<translation>Inizio:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="56"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="90"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="148"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="182"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="216"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="291"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="325"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="359"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="393"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="431"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="465"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="499"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="533"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="567"/>
<source>/</source>
<translation>/</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="73"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="165"/>
<source>End:</source>
<translation>Fine:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="107"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="233"/>
<source>Skew:</source>
<translation>Distorsione:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="199"/>
<source>Focal:</source>
<translation>Fuoco:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="250"/>
<source>Scale:</source>
<translation>Scala:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="274"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="414"/>
<source>1. Point:</source>
<translation>Punto 1:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="308"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="448"/>
<source>2. Point:</source>
<translation>Punto 2:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="342"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="482"/>
<source>3. Point:</source>
<translation>Punto 3:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="376"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="516"/>
<source>4. Point:</source>
<translation>Punto 4:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="550"/>
<source>5. Point:</source>
<translation>Punto 5:</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="598"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="772"/>
<source>Edit Grid Points</source>
<translation>Modifica punti griglia</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="620"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="794"/>
<source>Edit Control Points</source>
<translation>Modifica punti di controllo</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="645"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="819"/>
<source>Reset selected Control Point</source>
<translation>Azzera punto di controllo selezionato</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="670"/>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="844"/>
<source>Reset all Control Points</source>
<translation>Azzera tutti i punti di controllo</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="707"/>
<source>New Mesh...</source>
<translation>Nuova griglia...</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="714"/>
<source>Reset Mesh</source>
<translation>Azzera griglia</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="721"/>
<source>Mesh -> Shape</source>
<translation>Griglia -> Forma</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="877"/>
<source>Snap to other Mesh Points</source>
<translation>Aggancia agli altri punti della griglia</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="889"/>
<source>Add Patch</source>
<translation>Aggiungi inserto</translation>
</message>
<message>
<location filename="../../../scribus/ui/gradientvectorbase.ui" line="902"/>
<source>Remove Patch</source>
<translation>Elimina inserto</translation>
</message>
</context>
<context>
<name>GradientVectorDialog</name>
<message>
<source>Gradient Vector</source>
<translatorcomment>???</translatorcomment>
<translation type="obsolete">Sfumatura</translation>
</message>
</context>
<context>
<name>GuideManager</name>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="32"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="229"/>
<source>&Single</source>
<translation>&Singole</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="40"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="147"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="232"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="240"/>
<source>Horizontals</source>
<translation>Orizzontali</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="56"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="234"/>
<source>&Add</source>
<translation>&Aggiungi</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="59"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="214"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="301"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="360"/>
<source>Alt+A</source>
<translation>Alt+A</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="66"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="235"/>
<source>D&elete</source>
<translation>&Elimina</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="69"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="224"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="311"/>
<source>Alt+E</source>
<translation>Alt+E</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="79"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="237"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="233"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="241"/>
<source>Verticals</source>
<translation>Verticali</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="95"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="236"/>
<source>A&dd</source>
<translation>A&ggiungi</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="98"/>
<source>Alt+D</source>
<translation>Alt+G</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="105"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="237"/>
<source>De&lete</source>
<translation>E&limina</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="108"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="123"/>
<source>Alt+L</source>
<translation>Alt+L</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="120"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="238"/>
<source>&Lock Guides</source>
<translation>B&locca guide</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="130"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="324"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="239"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="254"/>
<source>Appl&y to All Pages</source>
<translation>Appl&ica a tutte le pagine</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="133"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="327"/>
<source>Alt+Y</source>
<translation>Alt+I</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="141"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="230"/>
<source>&Column/Row</source>
<translation>&Colonna/Riga</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="153"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="242"/>
<source>&Number:</source>
<translation>&Numero:</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="179"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="244"/>
<source>U&se Gap:</source>
<translation>U&tilizza Distanza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="182"/>
<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/ui/guidemanager.ui" line="198"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="285"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="248"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="251"/>
<source>&Page</source>
<translation>&Pagina</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="201"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="288"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="347"/>
<source>Alt+P</source>
<translation>Alt+P</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="211"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="298"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="249"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="252"/>
<source>M&argins</source>
<translation>M&argini</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="221"/>
<location filename="../../../scribus/ui/guidemanager.ui" line="308"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="250"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="253"/>
<source>S&election</source>
<translation>Sel&ezione</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="243"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="243"/>
<source>Nu&mber:</source>
<translation>Nu&mero:</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="266"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="245"/>
<source>Use &Gap:</source>
<translatorcomment>???</translatorcomment>
<translation>Utilizza &Distanza:</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="269"/>
<source>Alt+G</source>
<translation>Alt+D</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="335"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="231"/>
<source>&Misc</source>
<translation>Al&tri comandi</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="341"/>
<source>Delete all guides from the current page</source>
<translation>Elimina tutte le guide dalla pagina corrente</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="344"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="255"/>
<source>Delete Guides from Current &Page</source>
<translation>Elimina guide dalla &pagina corrente</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="354"/>
<source>Delete all guides from the current document</source>
<translation>Elimina tutte le guide da questo documento</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="357"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="256"/>
<source>Delete Guides from &All Pages</source>
<translation>Elimina guide da tutte le p&agine</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.ui" line="16"/>
<location filename="../../../scribus/ui/guidemanager.cpp" line="228"/>
<source>Guide Manager</source>
<translation>Gestione guide</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.cpp" line="258"/>
<source>Add a new horizontal guide</source>
<translation>Aggiungi nuova guida orizzontale</translation>
</message>
<message>
<location filename="../../../scribus/ui/guidemanager.cpp" line="259"/>
<source>Delete the selected horizontal guide</source>
<translation>Elimina la guida orizzontale selezionata</translation>
</message>
<message> <